Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

gcp changed

manage-claude/wif-providers/gcp

Nearest release: v2.1.261, published 5 hours before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+4added
Lines−1removed
From line 308 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits4to this page, all time

The whole hunk

from line 308, old and new numbered
/
lines
from line 308
308308 ```
309309 
310310 ```csharp C#
311 using Anthropic.Credentials;
312 // ...
313 
311314 var credentials = new WorkloadIdentityCredentials(new WorkloadIdentityOptions
312315 {
313316 FederationRuleId = Environment.GetEnvironmentVariable("ANTHROPIC_FEDERATION_RULE_ID")!,
from line 319
316319 WorkspaceId = Environment.GetEnvironmentVariable("ANTHROPIC_WORKSPACE_ID"),
317320 IdentityTokenProvider = new MetadataTokenProvider(),
318321 });
319 using var client = new AnthropicOidcClient(credentials);
322 using var client = new AnthropicClient(new ClientOptions { Credentials = credentials });
320323 
321324 var message = await client.Messages.Create(new()
322325 {