-
Notifications
You must be signed in to change notification settings - Fork 855
Expand file tree
/
Copy pathissuers.py
More file actions
855 lines (715 loc) · 36 KB
/
Copy pathissuers.py
File metadata and controls
855 lines (715 loc) · 36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
from __future__ import annotations
from typing import List, Optional
import httpx2
from ....._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
from ....._utils import is_given, path_template, maybe_transform, strip_not_given, async_maybe_transform
from ....._compat import cached_property
from ....._resource import SyncAPIResource, AsyncAPIResource
from ....._response import (
to_raw_response_wrapper,
to_streamed_response_wrapper,
async_to_raw_response_wrapper,
async_to_streamed_response_wrapper,
)
from .....pagination import SyncPageCursor, AsyncPageCursor
from ....._base_client import AsyncPaginator, make_request_options
from .....types.anthropic_beta_param import AnthropicBetaParam
from .....types.beta.organization.federation import issuer_list_params, issuer_create_params, issuer_update_params
from .....types.beta.organization.federation.beta_federation_issuer import BetaFederationIssuer
__all__ = ["Issuers", "AsyncIssuers"]
class Issuers(SyncAPIResource):
@cached_property
def with_raw_response(self) -> IssuersWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/anthropics/anthropic-sdk-python#accessing-raw-response-data-eg-headers
"""
return IssuersWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> IssuersWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/anthropics/anthropic-sdk-python#with_streaming_response
"""
return IssuersWithStreamingResponse(self)
def create(
self,
*,
issuer_url: str,
name: str,
check_jti: Optional[bool] | Omit = omit,
jwks: issuer_create_params.JWKS | Omit = omit,
max_jwt_lifetime_seconds: Optional[int] | Omit = omit,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Register an OIDC issuer that Anthropic will trust for workload identity
federation in your organization.
The `jwks` field controls how the issuer's signing keys are obtained and takes
one of three shapes selected by `type`: `discovery` (resolve keys through OIDC
discovery), `explicit_url` (fetch keys from a fixed JWKS URL), or `inline`
(provide a static key set). When `jwks.type` is `discovery` and no
`discovery_base` is set, the issuer URL must be publicly reachable over HTTPS so
Anthropic can fetch the discovery document; for `explicit_url` and `inline`
modes the issuer URL is only matched as the JWT's `iss` claim and is not
fetched.
Args:
issuer_url: The `iss` claim value to match against.
name: Slug identifier (lowercase, digits, hyphens). Unique within the organization; a
duplicate name returns 409.
check_jti: Whether the jwt-bearer exchange enforces JTI single-use (replay protection) for
tokens from this issuer. Defaults to true. Applies only to assertions carrying a
`jti` claim; tokens without one are accepted without single-use enforcement.
jwks: How signing keys are obtained. Defaults to OIDC discovery.
max_jwt_lifetime_seconds: Maximum allowed iat→exp spread for assertions from this issuer (1-176400
seconds, i.e. up to 49h). Defaults to 3600 (1h). Assertions must carry both
`iat` and `exp`; a missing `iat` is rejected.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return self._post(
"/v1/organizations/federation_issuers?beta=true",
body=maybe_transform(
{
"issuer_url": issuer_url,
"name": name,
"check_jti": check_jti,
"jwks": jwks,
"max_jwt_lifetime_seconds": max_jwt_lifetime_seconds,
},
issuer_create_params.IssuerCreateParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
def retrieve(
self,
federation_issuer_id: str,
*,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Retrieve a federation issuer by its ID (`fdis_...`).
Args:
federation_issuer_id: ID of the federation issuer.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not federation_issuer_id:
raise ValueError(
f"Expected a non-empty value for `federation_issuer_id` but received {federation_issuer_id!r}"
)
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return self._get(
path_template(
"/v1/organizations/federation_issuers/{federation_issuer_id}?beta=true",
federation_issuer_id=federation_issuer_id,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
def update(
self,
federation_issuer_id: str,
*,
check_jti: Optional[bool] | Omit = omit,
issuer_url: Optional[str] | Omit = omit,
jwks: Optional[issuer_update_params.JWKS] | Omit = omit,
jwks_polling_disabled: Optional[bool] | Omit = omit,
max_jwt_lifetime_seconds: Optional[int] | Omit = omit,
name: Optional[str] | Omit = omit,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Partially update a federation issuer.
Setting `jwks` replaces the full JWKS shape at once. Archived issuers cannot be
updated; this returns 400. Create a new issuer instead.
Updating an issuer that backs a rule with a scope outside `workspace:developer`
or `workspace:inference` requires a Console session.
Args:
federation_issuer_id: ID of the federation issuer to update.
check_jti: Whether the jwt-bearer exchange enforces JTI single-use (replay protection) for
tokens from this issuer. Applies only to assertions carrying a `jti` claim;
tokens without one are accepted without single-use enforcement.
issuer_url: Replaces the `iss` claim value to match against. For discovery-mode issuers
without a `discovery_base`, this is also the URL Anthropic fetches the OIDC
discovery document and signing keys from, so changing it repoints the JWKS
source. Changing the issuer URL to a well-known shared platform is rejected
while any live rule under this issuer would not constrain tenant identity.
jwks: Replaces the entire JWKS configuration.
jwks_polling_disabled: Only `false` is accepted, to re-enable polling after the system pauses it.
Polling is paused automatically; sending `true` is rejected.
max_jwt_lifetime_seconds: Maximum allowed iat→exp spread for assertions from this issuer (1-176400
seconds, i.e. up to 49h). Assertions must carry both `iat` and `exp`; a missing
`iat` is rejected.
name: Replaces the slug identifier (lowercase, digits, hyphens). Unique within the
organization; a duplicate name returns 409.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not federation_issuer_id:
raise ValueError(
f"Expected a non-empty value for `federation_issuer_id` but received {federation_issuer_id!r}"
)
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return self._post(
path_template(
"/v1/organizations/federation_issuers/{federation_issuer_id}?beta=true",
federation_issuer_id=federation_issuer_id,
),
body=maybe_transform(
{
"check_jti": check_jti,
"issuer_url": issuer_url,
"jwks": jwks,
"jwks_polling_disabled": jwks_polling_disabled,
"max_jwt_lifetime_seconds": max_jwt_lifetime_seconds,
"name": name,
},
issuer_update_params.IssuerUpdateParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
def list(
self,
*,
include_archived: bool | Omit = omit,
limit: int | Omit = omit,
page: Optional[str] | Omit = omit,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> SyncPageCursor[BetaFederationIssuer]:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
List federation issuers in your organization.
Archived issuers are excluded unless `include_archived=true`.
Args:
include_archived: Include archived resources. Defaults to false.
limit: Number of results per page.
page: Opaque cursor from a previous response's `next_page`.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return self._get_api_list(
"/v1/organizations/federation_issuers?beta=true",
page=SyncPageCursor[BetaFederationIssuer],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"include_archived": include_archived,
"limit": limit,
"page": page,
},
issuer_list_params.IssuerListParams,
),
),
model=BetaFederationIssuer,
)
def archive(
self,
federation_issuer_id: str,
*,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Archive a federation issuer.
Idempotent; re-archiving returns the issuer with its original `archived_at`.
Rejected with 400 if any live (non-archived) federation rule still references
the issuer; archive those rules first (a rule's issuer cannot be changed), or
recreate them against another issuer.
Args:
federation_issuer_id: ID of the federation issuer to archive.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not federation_issuer_id:
raise ValueError(
f"Expected a non-empty value for `federation_issuer_id` but received {federation_issuer_id!r}"
)
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return self._post(
path_template(
"/v1/organizations/federation_issuers/{federation_issuer_id}/archive?beta=true",
federation_issuer_id=federation_issuer_id,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
class AsyncIssuers(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncIssuersWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/anthropics/anthropic-sdk-python#accessing-raw-response-data-eg-headers
"""
return AsyncIssuersWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncIssuersWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/anthropics/anthropic-sdk-python#with_streaming_response
"""
return AsyncIssuersWithStreamingResponse(self)
async def create(
self,
*,
issuer_url: str,
name: str,
check_jti: Optional[bool] | Omit = omit,
jwks: issuer_create_params.JWKS | Omit = omit,
max_jwt_lifetime_seconds: Optional[int] | Omit = omit,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Register an OIDC issuer that Anthropic will trust for workload identity
federation in your organization.
The `jwks` field controls how the issuer's signing keys are obtained and takes
one of three shapes selected by `type`: `discovery` (resolve keys through OIDC
discovery), `explicit_url` (fetch keys from a fixed JWKS URL), or `inline`
(provide a static key set). When `jwks.type` is `discovery` and no
`discovery_base` is set, the issuer URL must be publicly reachable over HTTPS so
Anthropic can fetch the discovery document; for `explicit_url` and `inline`
modes the issuer URL is only matched as the JWT's `iss` claim and is not
fetched.
Args:
issuer_url: The `iss` claim value to match against.
name: Slug identifier (lowercase, digits, hyphens). Unique within the organization; a
duplicate name returns 409.
check_jti: Whether the jwt-bearer exchange enforces JTI single-use (replay protection) for
tokens from this issuer. Defaults to true. Applies only to assertions carrying a
`jti` claim; tokens without one are accepted without single-use enforcement.
jwks: How signing keys are obtained. Defaults to OIDC discovery.
max_jwt_lifetime_seconds: Maximum allowed iat→exp spread for assertions from this issuer (1-176400
seconds, i.e. up to 49h). Defaults to 3600 (1h). Assertions must carry both
`iat` and `exp`; a missing `iat` is rejected.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return await self._post(
"/v1/organizations/federation_issuers?beta=true",
body=await async_maybe_transform(
{
"issuer_url": issuer_url,
"name": name,
"check_jti": check_jti,
"jwks": jwks,
"max_jwt_lifetime_seconds": max_jwt_lifetime_seconds,
},
issuer_create_params.IssuerCreateParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
async def retrieve(
self,
federation_issuer_id: str,
*,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Retrieve a federation issuer by its ID (`fdis_...`).
Args:
federation_issuer_id: ID of the federation issuer.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not federation_issuer_id:
raise ValueError(
f"Expected a non-empty value for `federation_issuer_id` but received {federation_issuer_id!r}"
)
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return await self._get(
path_template(
"/v1/organizations/federation_issuers/{federation_issuer_id}?beta=true",
federation_issuer_id=federation_issuer_id,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
async def update(
self,
federation_issuer_id: str,
*,
check_jti: Optional[bool] | Omit = omit,
issuer_url: Optional[str] | Omit = omit,
jwks: Optional[issuer_update_params.JWKS] | Omit = omit,
jwks_polling_disabled: Optional[bool] | Omit = omit,
max_jwt_lifetime_seconds: Optional[int] | Omit = omit,
name: Optional[str] | Omit = omit,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Partially update a federation issuer.
Setting `jwks` replaces the full JWKS shape at once. Archived issuers cannot be
updated; this returns 400. Create a new issuer instead.
Updating an issuer that backs a rule with a scope outside `workspace:developer`
or `workspace:inference` requires a Console session.
Args:
federation_issuer_id: ID of the federation issuer to update.
check_jti: Whether the jwt-bearer exchange enforces JTI single-use (replay protection) for
tokens from this issuer. Applies only to assertions carrying a `jti` claim;
tokens without one are accepted without single-use enforcement.
issuer_url: Replaces the `iss` claim value to match against. For discovery-mode issuers
without a `discovery_base`, this is also the URL Anthropic fetches the OIDC
discovery document and signing keys from, so changing it repoints the JWKS
source. Changing the issuer URL to a well-known shared platform is rejected
while any live rule under this issuer would not constrain tenant identity.
jwks: Replaces the entire JWKS configuration.
jwks_polling_disabled: Only `false` is accepted, to re-enable polling after the system pauses it.
Polling is paused automatically; sending `true` is rejected.
max_jwt_lifetime_seconds: Maximum allowed iat→exp spread for assertions from this issuer (1-176400
seconds, i.e. up to 49h). Assertions must carry both `iat` and `exp`; a missing
`iat` is rejected.
name: Replaces the slug identifier (lowercase, digits, hyphens). Unique within the
organization; a duplicate name returns 409.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not federation_issuer_id:
raise ValueError(
f"Expected a non-empty value for `federation_issuer_id` but received {federation_issuer_id!r}"
)
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return await self._post(
path_template(
"/v1/organizations/federation_issuers/{federation_issuer_id}?beta=true",
federation_issuer_id=federation_issuer_id,
),
body=await async_maybe_transform(
{
"check_jti": check_jti,
"issuer_url": issuer_url,
"jwks": jwks,
"jwks_polling_disabled": jwks_polling_disabled,
"max_jwt_lifetime_seconds": max_jwt_lifetime_seconds,
"name": name,
},
issuer_update_params.IssuerUpdateParams,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
def list(
self,
*,
include_archived: bool | Omit = omit,
limit: int | Omit = omit,
page: Optional[str] | Omit = omit,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> AsyncPaginator[BetaFederationIssuer, AsyncPageCursor[BetaFederationIssuer]]:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
List federation issuers in your organization.
Archived issuers are excluded unless `include_archived=true`.
Args:
include_archived: Include archived resources. Defaults to false.
limit: Number of results per page.
page: Opaque cursor from a previous response's `next_page`.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return self._get_api_list(
"/v1/organizations/federation_issuers?beta=true",
page=AsyncPageCursor[BetaFederationIssuer],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"include_archived": include_archived,
"limit": limit,
"page": page,
},
issuer_list_params.IssuerListParams,
),
),
model=BetaFederationIssuer,
)
async def archive(
self,
federation_issuer_id: str,
*,
betas: List[AnthropicBetaParam] | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx2.Timeout | None | NotGiven = not_given,
) -> BetaFederationIssuer:
"""
**Requires an OAuth access token with the `org:admin` scope**, from
`ant auth login --scope org:admin` or a workload identity federation rule; Admin
API keys are not accepted. See
[Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
Archive a federation issuer.
Idempotent; re-archiving returns the issuer with its original `archived_at`.
Rejected with 400 if any live (non-archived) federation rule still references
the issuer; archive those rules first (a rule's issuer cannot be changed), or
recreate them against another issuer.
Args:
federation_issuer_id: ID of the federation issuer to archive.
betas: Optional header to specify the beta version(s) you want to use.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not federation_issuer_id:
raise ValueError(
f"Expected a non-empty value for `federation_issuer_id` but received {federation_issuer_id!r}"
)
extra_headers = {
**strip_not_given({"anthropic-beta": ",".join(str(e) for e in betas) if is_given(betas) else not_given}),
**(extra_headers or {}),
}
return await self._post(
path_template(
"/v1/organizations/federation_issuers/{federation_issuer_id}/archive?beta=true",
federation_issuer_id=federation_issuer_id,
),
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=BetaFederationIssuer,
)
class IssuersWithRawResponse:
def __init__(self, issuers: Issuers) -> None:
self._issuers = issuers
self.create = to_raw_response_wrapper(
issuers.create,
)
self.retrieve = to_raw_response_wrapper(
issuers.retrieve,
)
self.update = to_raw_response_wrapper(
issuers.update,
)
self.list = to_raw_response_wrapper(
issuers.list,
)
self.archive = to_raw_response_wrapper(
issuers.archive,
)
class AsyncIssuersWithRawResponse:
def __init__(self, issuers: AsyncIssuers) -> None:
self._issuers = issuers
self.create = async_to_raw_response_wrapper(
issuers.create,
)
self.retrieve = async_to_raw_response_wrapper(
issuers.retrieve,
)
self.update = async_to_raw_response_wrapper(
issuers.update,
)
self.list = async_to_raw_response_wrapper(
issuers.list,
)
self.archive = async_to_raw_response_wrapper(
issuers.archive,
)
class IssuersWithStreamingResponse:
def __init__(self, issuers: Issuers) -> None:
self._issuers = issuers
self.create = to_streamed_response_wrapper(
issuers.create,
)
self.retrieve = to_streamed_response_wrapper(
issuers.retrieve,
)
self.update = to_streamed_response_wrapper(
issuers.update,
)
self.list = to_streamed_response_wrapper(
issuers.list,
)
self.archive = to_streamed_response_wrapper(
issuers.archive,
)
class AsyncIssuersWithStreamingResponse:
def __init__(self, issuers: AsyncIssuers) -> None:
self._issuers = issuers
self.create = async_to_streamed_response_wrapper(
issuers.create,
)
self.retrieve = async_to_streamed_response_wrapper(
issuers.retrieve,
)
self.update = async_to_streamed_response_wrapper(
issuers.update,
)
self.list = async_to_streamed_response_wrapper(
issuers.list,
)
self.archive = async_to_streamed_response_wrapper(
issuers.archive,
)