Skip to main content

Interface: GatewayWorkspaceUpdateRequest

Defined in: src/ai-gateway/workspaces-client.ts:54

Request body for AIGatewayWorkspacesClient.update. Partial — send only what changes.

The API enumerates the fields it accepts in its own rejection message: name, description, icon, defaults, rate_limits. usage_limits is accepted by upstream Portkey but missing from that message, so it is offered here and may be ignored server-side.

Properties

name?

optional name?: string;

Defined in: src/ai-gateway/workspaces-client.ts:55


description?

optional description?: string;

Defined in: src/ai-gateway/workspaces-client.ts:56


icon?

optional icon?: string;

Defined in: src/ai-gateway/workspaces-client.ts:57


defaults?

optional defaults?: Record<string, unknown>;

Defined in: src/ai-gateway/workspaces-client.ts:58


usage_limits?

optional usage_limits?: Record<string, unknown>[];

Defined in: src/ai-gateway/workspaces-client.ts:59


rate_limits?

optional rate_limits?: Record<string, unknown>[];

Defined in: src/ai-gateway/workspaces-client.ts:60