Claude Platform Docs

Workspace zu Federation-Regel hinzufügen

$ ant beta:organization:federation:rules:workspaces add
POST/v1/organizations/federation_rules/{federation_rule_id}/workspaces

Erfordert ein OAuth-Access-Token mit dem Scope org:admin, aus ant auth login --scope org:admin oder einer Workload-Identity-Federation-Regel; Admin-API-Keys werden nicht akzeptiert. Siehe WIF mit der Admin API verwalten.

Aktiviert eine Federation-Regel für einen Workspace.

Idempotent; erneutes Aktivieren gibt die bestehende Aktivierung zurück. Die Regel und der Workspace müssen beide zu deiner Organisation gehören. Die Mitgliedschaft des Ziel-Service-Accounts der Regel in diesem Workspace wird bei der Aktivierung nicht geprüft: Der Token-Austausch in diesen Workspace wird abgelehnt, sofern das Ziel kein Mitglied ist (es ist implizit Mitglied des Standard-Workspace). Archivierte Regeln werden mit 400 abgelehnt. OAuth-Aufrufer dürfen nur Regeln verwalten, deren oauth_scope workspace:developer oder workspace:inference ist; andere Scopes erfordern eine Console-Sitzung.

Parameters
--federation-rule-id: string

Path param: ID of the federation rule.

--workspace-id: string

Body param: Tagged ID of the workspace to enable this rule for.

--beta: optional array of AnthropicBeta

Header param: Optional header to specify the beta version(s) you want to use.

Returns
beta_federation_rule_workspace: object{ created_at, created_by_actor_id, federation_rule_id, 3 more }
created_at: string

When this workspace was enabled for the rule.

formatdate-time
created_by_actor_id: string

Tagged ID (user_... or svac_...) of the actor that enabled this workspace for the rule, if known.

federation_rule_id: string

Tagged ID of the federation rule.

type: "federation_rule_workspace"
workspace_id: string

Tagged ID of the workspace this rule is enabled for.

workspace_name: string

Workspace display name. Populated when listing; null in the enable response.

Workspace zu Federation-Regel hinzufügen
ant beta:organization:federation:rules:workspaces add \
  --api-key my-anthropic-api-key \
  --federation-rule-id federation_rule_id \
  --workspace-id workspace_id
Returns Examples
Response 200
{
  "created_at": "2024-10-30T23:58:27.427722Z",
  "created_by_actor_id": "created_by_actor_id",
  "federation_rule_id": "federation_rule_id",
  "type": "federation_rule_workspace",
  "workspace_id": "workspace_id",
  "workspace_name": "workspace_name"
}