The whole hunk
from line 16, old and new numbered
/
lines
from line 16
1616
1717 - `kms_arn: string`
1818
19 Full ARN of the AWS KMS key.
19 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
2020
2121 maxLength: 2048
2222
from line 30
3030
3131 **Deprecated**
3232
33 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
33 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
3434
3535 - `Gcp object`
3636
from line 114
114114
115115 - `kms_arn: string`
116116
117 Full ARN of the AWS KMS key.
117 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
118118
119119 maxLength: 2048
120120
from line 128
128128
129129 **Deprecated**
130130
131 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
131 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
132132
133133 - `Gcp object`
134134
from line 172
172172curl https://api.anthropic.com/v1/organizations/external_keys \
173173 -H 'Content-Type: application/json' \
174174 -H 'anthropic-version: 2023-06-01' \
175 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
175 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
176176 -d '{
177177 "provider_config": {
178178 "kms_arn": "arn:aws:kms:us-east-1:111122223333:key/abcd1234-5678-90ab-cdef-000011112222",
from line 268
268268
269269 - `kms_arn: string`
270270
271 Full ARN of the AWS KMS key.
271 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
272272
273273 maxLength: 2048
274274
from line 282
282282
283283 **Deprecated**
284284
285 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
285 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
286286
287287 - `Gcp object`
288288
from line 329
329329```bash
330330curl https://api.anthropic.com/v1/organizations/external_keys \
331331 -H 'anthropic-version: 2023-06-01' \
332 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
332 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
333333```
334334
335335#### Response (200)
from line 415
415415
416416 - `kms_arn: string`
417417
418 Full ARN of the AWS KMS key.
418 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
419419
420420 maxLength: 2048
421421
from line 429
429429
430430 **Deprecated**
431431
432 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
432 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
433433
434434 - `Gcp object`
435435
from line 472
472472```bash
473473curl https://api.anthropic.com/v1/organizations/external_keys/$EXTERNAL_KEY_ID \
474474 -H 'anthropic-version: 2023-06-01' \
475 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
475 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
476476```
477477
478478#### Response (200)
from line 535
535535
536536 - `kms_arn: string`
537537
538 Full ARN of the AWS KMS key.
538 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
539539
540540 maxLength: 2048
541541
from line 549
549549
550550 **Deprecated**
551551
552 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
552 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
553553
554554 - `Gcp object`
555555
from line 623
623623
624624 - `kms_arn: string`
625625
626 Full ARN of the AWS KMS key.
626 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
627627
628628 maxLength: 2048
629629
from line 637
637637
638638 **Deprecated**
639639
640 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
640 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
641641
642642 - `Gcp object`
643643
from line 681
681681curl https://api.anthropic.com/v1/organizations/external_keys/$EXTERNAL_KEY_ID \
682682 -H 'Content-Type: application/json' \
683683 -H 'anthropic-version: 2023-06-01' \
684 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
684 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
685685 -d '{}'
686686```
687687
from line 739
739739curl https://api.anthropic.com/v1/organizations/external_keys/$EXTERNAL_KEY_ID \
740740 -X DELETE \
741741 -H 'anthropic-version: 2023-06-01' \
742 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
742 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
743743```
744744
745745#### Response (200)
from line 794
794794curl https://api.anthropic.com/v1/organizations/external_keys/$EXTERNAL_KEY_ID/validate \
795795 -X POST \
796796 -H 'anthropic-version: 2023-06-01' \
797 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
797 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
798798```
799799
800800#### Response (200)
from line 859
859859
860860 - `kms_arn: string`
861861
862 Full ARN of the AWS KMS key.
862 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
863863
864864 maxLength: 2048
865865
from line 873
873873
874874 **Deprecated**
875875
876 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
876 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
877877
878878 - `Gcp object`
879879
from line 961
961961
962962 - `kms_arn: string`
963963
964 Full ARN of the AWS KMS key.
964 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
965965
966966 maxLength: 2048
967967
from line 975
975975
976976 **Deprecated**
977977
978 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
978 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
979979
980980 - `Gcp object`
981981
from line 1063
10631063
10641064 - `kms_arn: string`
10651065
1066 Full ARN of the AWS KMS key.
1066 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
10671067
10681068 maxLength: 2048
10691069
from line 1077
10771077
10781078 **Deprecated**
10791079
1080 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
1080 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
10811081
10821082 - `Gcp object`
10831083
from line 1165
11651165
11661166 - `kms_arn: string`
11671167
1168 Full ARN of the AWS KMS key.
1168 Full ARN of the AWS KMS key. On Claude Platform on AWS the key must be a single-Region key in your organization's own AWS account; cross-account keys, multi-Region keys, and alias ARNs are rejected.
11691169
11701170 maxLength: 2048
11711171
from line 1179
11791179
11801180 **Deprecated**
11811181
1182 IAM role ARN. Deprecated — Anthropic reaches the KMS key via a managed intermediate role; this field is ignored.
1182 IAM role ARN. Deprecated — Anthropic reaches the KMS key through its own intermediate role (or, on Claude Platform on AWS, with credentials AWS issues for the Workspace); this field is ignored.
11831183
11841184 - `Gcp object`
11851185