aws-sdk 2.1446.0 → 2.1448.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/CHANGELOG.md +17 -1
  2. package/README.md +1 -1
  3. package/apis/appflow-2020-08-23.min.json +115 -87
  4. package/apis/auditmanager-2017-07-25.min.json +238 -63
  5. package/apis/cleanrooms-2022-02-17.min.json +70 -31
  6. package/apis/cognito-idp-2016-04-18.examples.json +849 -0
  7. package/apis/cognito-idp-2016-04-18.min.json +64 -24
  8. package/apis/datasync-2018-11-09.min.json +97 -14
  9. package/apis/metadata.json +7 -0
  10. package/apis/neptunedata-2023-08-01.examples.json +5 -0
  11. package/apis/neptunedata-2023-08-01.min.json +1923 -0
  12. package/apis/neptunedata-2023-08-01.paginators.json +4 -0
  13. package/apis/omics-2022-11-28.min.json +23 -21
  14. package/apis/pca-connector-ad-2018-05-10.examples.json +5 -0
  15. package/apis/pca-connector-ad-2018-05-10.min.json +1465 -0
  16. package/apis/pca-connector-ad-2018-05-10.paginators.json +34 -0
  17. package/apis/sagemaker-2017-07-24.min.json +739 -728
  18. package/apis/sesv2-2019-09-27.examples.json +244 -0
  19. package/apis/sesv2-2019-09-27.min.json +491 -153
  20. package/apis/sesv2-2019-09-27.paginators.json +5 -0
  21. package/clients/all.d.ts +2 -0
  22. package/clients/all.js +3 -1
  23. package/clients/appflow.d.ts +30 -0
  24. package/clients/apprunner.d.ts +5 -5
  25. package/clients/cleanrooms.d.ts +41 -5
  26. package/clients/cognitoidentityserviceprovider.d.ts +5 -5
  27. package/clients/datasync.d.ts +144 -21
  28. package/clients/fsx.d.ts +28 -28
  29. package/clients/neptunedata.d.ts +1976 -0
  30. package/clients/neptunedata.js +18 -0
  31. package/clients/networkfirewall.d.ts +9 -9
  32. package/clients/omics.d.ts +13 -4
  33. package/clients/pcaconnectorad.d.ts +1606 -0
  34. package/clients/pcaconnectorad.js +18 -0
  35. package/clients/sagemaker.d.ts +21 -1
  36. package/clients/sesv2.d.ts +374 -3
  37. package/dist/aws-sdk-core-react-native.js +2 -2
  38. package/dist/aws-sdk-react-native.js +87 -13
  39. package/dist/aws-sdk.js +74 -27
  40. package/dist/aws-sdk.min.js +85 -85
  41. package/lib/config_service_placeholders.d.ts +4 -0
  42. package/lib/core.js +1 -1
  43. package/package.json +1 -1
@@ -0,0 +1,1465 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2018-05-10",
5
+ "endpointPrefix": "pca-connector-ad",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "PcaConnectorAd",
9
+ "serviceId": "Pca Connector Ad",
10
+ "signatureVersion": "v4",
11
+ "signingName": "pca-connector-ad",
12
+ "uid": "pca-connector-ad-2018-05-10"
13
+ },
14
+ "operations": {
15
+ "CreateConnector": {
16
+ "http": {
17
+ "requestUri": "/connectors",
18
+ "responseCode": 202
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "CertificateAuthorityArn",
24
+ "DirectoryId",
25
+ "VpcInformation"
26
+ ],
27
+ "members": {
28
+ "CertificateAuthorityArn": {},
29
+ "ClientToken": {
30
+ "idempotencyToken": true
31
+ },
32
+ "DirectoryId": {},
33
+ "Tags": {
34
+ "shape": "S5"
35
+ },
36
+ "VpcInformation": {
37
+ "shape": "S7"
38
+ }
39
+ }
40
+ },
41
+ "output": {
42
+ "type": "structure",
43
+ "members": {
44
+ "ConnectorArn": {}
45
+ }
46
+ }
47
+ },
48
+ "CreateDirectoryRegistration": {
49
+ "http": {
50
+ "requestUri": "/directoryRegistrations",
51
+ "responseCode": 202
52
+ },
53
+ "input": {
54
+ "type": "structure",
55
+ "required": [
56
+ "DirectoryId"
57
+ ],
58
+ "members": {
59
+ "ClientToken": {
60
+ "idempotencyToken": true
61
+ },
62
+ "DirectoryId": {},
63
+ "Tags": {
64
+ "shape": "S5"
65
+ }
66
+ }
67
+ },
68
+ "output": {
69
+ "type": "structure",
70
+ "members": {
71
+ "DirectoryRegistrationArn": {}
72
+ }
73
+ }
74
+ },
75
+ "CreateServicePrincipalName": {
76
+ "http": {
77
+ "requestUri": "/directoryRegistrations/{DirectoryRegistrationArn}/servicePrincipalNames/{ConnectorArn}",
78
+ "responseCode": 202
79
+ },
80
+ "input": {
81
+ "type": "structure",
82
+ "required": [
83
+ "ConnectorArn",
84
+ "DirectoryRegistrationArn"
85
+ ],
86
+ "members": {
87
+ "ClientToken": {
88
+ "idempotencyToken": true
89
+ },
90
+ "ConnectorArn": {
91
+ "location": "uri",
92
+ "locationName": "ConnectorArn"
93
+ },
94
+ "DirectoryRegistrationArn": {
95
+ "location": "uri",
96
+ "locationName": "DirectoryRegistrationArn"
97
+ }
98
+ }
99
+ },
100
+ "idempotent": true
101
+ },
102
+ "CreateTemplate": {
103
+ "http": {
104
+ "requestUri": "/templates",
105
+ "responseCode": 200
106
+ },
107
+ "input": {
108
+ "type": "structure",
109
+ "required": [
110
+ "ConnectorArn",
111
+ "Definition",
112
+ "Name"
113
+ ],
114
+ "members": {
115
+ "ClientToken": {
116
+ "idempotencyToken": true
117
+ },
118
+ "ConnectorArn": {},
119
+ "Definition": {
120
+ "shape": "Sh"
121
+ },
122
+ "Name": {},
123
+ "Tags": {
124
+ "shape": "S5"
125
+ }
126
+ }
127
+ },
128
+ "output": {
129
+ "type": "structure",
130
+ "members": {
131
+ "TemplateArn": {}
132
+ }
133
+ }
134
+ },
135
+ "CreateTemplateGroupAccessControlEntry": {
136
+ "http": {
137
+ "requestUri": "/templates/{TemplateArn}/accessControlEntries",
138
+ "responseCode": 200
139
+ },
140
+ "input": {
141
+ "type": "structure",
142
+ "required": [
143
+ "AccessRights",
144
+ "GroupDisplayName",
145
+ "GroupSecurityIdentifier",
146
+ "TemplateArn"
147
+ ],
148
+ "members": {
149
+ "AccessRights": {
150
+ "shape": "S1y"
151
+ },
152
+ "ClientToken": {
153
+ "idempotencyToken": true
154
+ },
155
+ "GroupDisplayName": {},
156
+ "GroupSecurityIdentifier": {},
157
+ "TemplateArn": {
158
+ "location": "uri",
159
+ "locationName": "TemplateArn"
160
+ }
161
+ }
162
+ },
163
+ "idempotent": true
164
+ },
165
+ "DeleteConnector": {
166
+ "http": {
167
+ "method": "DELETE",
168
+ "requestUri": "/connectors/{ConnectorArn}",
169
+ "responseCode": 202
170
+ },
171
+ "input": {
172
+ "type": "structure",
173
+ "required": [
174
+ "ConnectorArn"
175
+ ],
176
+ "members": {
177
+ "ConnectorArn": {
178
+ "location": "uri",
179
+ "locationName": "ConnectorArn"
180
+ }
181
+ }
182
+ },
183
+ "idempotent": true
184
+ },
185
+ "DeleteDirectoryRegistration": {
186
+ "http": {
187
+ "method": "DELETE",
188
+ "requestUri": "/directoryRegistrations/{DirectoryRegistrationArn}",
189
+ "responseCode": 202
190
+ },
191
+ "input": {
192
+ "type": "structure",
193
+ "required": [
194
+ "DirectoryRegistrationArn"
195
+ ],
196
+ "members": {
197
+ "DirectoryRegistrationArn": {
198
+ "location": "uri",
199
+ "locationName": "DirectoryRegistrationArn"
200
+ }
201
+ }
202
+ },
203
+ "idempotent": true
204
+ },
205
+ "DeleteServicePrincipalName": {
206
+ "http": {
207
+ "method": "DELETE",
208
+ "requestUri": "/directoryRegistrations/{DirectoryRegistrationArn}/servicePrincipalNames/{ConnectorArn}",
209
+ "responseCode": 202
210
+ },
211
+ "input": {
212
+ "type": "structure",
213
+ "required": [
214
+ "ConnectorArn",
215
+ "DirectoryRegistrationArn"
216
+ ],
217
+ "members": {
218
+ "ConnectorArn": {
219
+ "location": "uri",
220
+ "locationName": "ConnectorArn"
221
+ },
222
+ "DirectoryRegistrationArn": {
223
+ "location": "uri",
224
+ "locationName": "DirectoryRegistrationArn"
225
+ }
226
+ }
227
+ },
228
+ "idempotent": true
229
+ },
230
+ "DeleteTemplate": {
231
+ "http": {
232
+ "method": "DELETE",
233
+ "requestUri": "/templates/{TemplateArn}",
234
+ "responseCode": 202
235
+ },
236
+ "input": {
237
+ "type": "structure",
238
+ "required": [
239
+ "TemplateArn"
240
+ ],
241
+ "members": {
242
+ "TemplateArn": {
243
+ "location": "uri",
244
+ "locationName": "TemplateArn"
245
+ }
246
+ }
247
+ },
248
+ "idempotent": true
249
+ },
250
+ "DeleteTemplateGroupAccessControlEntry": {
251
+ "http": {
252
+ "method": "DELETE",
253
+ "requestUri": "/templates/{TemplateArn}/accessControlEntries/{GroupSecurityIdentifier}",
254
+ "responseCode": 200
255
+ },
256
+ "input": {
257
+ "type": "structure",
258
+ "required": [
259
+ "GroupSecurityIdentifier",
260
+ "TemplateArn"
261
+ ],
262
+ "members": {
263
+ "GroupSecurityIdentifier": {
264
+ "location": "uri",
265
+ "locationName": "GroupSecurityIdentifier"
266
+ },
267
+ "TemplateArn": {
268
+ "location": "uri",
269
+ "locationName": "TemplateArn"
270
+ }
271
+ }
272
+ },
273
+ "idempotent": true
274
+ },
275
+ "GetConnector": {
276
+ "http": {
277
+ "method": "GET",
278
+ "requestUri": "/connectors/{ConnectorArn}",
279
+ "responseCode": 200
280
+ },
281
+ "input": {
282
+ "type": "structure",
283
+ "required": [
284
+ "ConnectorArn"
285
+ ],
286
+ "members": {
287
+ "ConnectorArn": {
288
+ "location": "uri",
289
+ "locationName": "ConnectorArn"
290
+ }
291
+ }
292
+ },
293
+ "output": {
294
+ "type": "structure",
295
+ "members": {
296
+ "Connector": {
297
+ "type": "structure",
298
+ "members": {
299
+ "Arn": {},
300
+ "CertificateAuthorityArn": {},
301
+ "CertificateEnrollmentPolicyServerEndpoint": {},
302
+ "CreatedAt": {
303
+ "type": "timestamp"
304
+ },
305
+ "DirectoryId": {},
306
+ "Status": {},
307
+ "StatusReason": {},
308
+ "UpdatedAt": {
309
+ "type": "timestamp"
310
+ },
311
+ "VpcInformation": {
312
+ "shape": "S7"
313
+ }
314
+ }
315
+ }
316
+ }
317
+ }
318
+ },
319
+ "GetDirectoryRegistration": {
320
+ "http": {
321
+ "method": "GET",
322
+ "requestUri": "/directoryRegistrations/{DirectoryRegistrationArn}",
323
+ "responseCode": 200
324
+ },
325
+ "input": {
326
+ "type": "structure",
327
+ "required": [
328
+ "DirectoryRegistrationArn"
329
+ ],
330
+ "members": {
331
+ "DirectoryRegistrationArn": {
332
+ "location": "uri",
333
+ "locationName": "DirectoryRegistrationArn"
334
+ }
335
+ }
336
+ },
337
+ "output": {
338
+ "type": "structure",
339
+ "members": {
340
+ "DirectoryRegistration": {
341
+ "type": "structure",
342
+ "members": {
343
+ "Arn": {},
344
+ "CreatedAt": {
345
+ "type": "timestamp"
346
+ },
347
+ "DirectoryId": {},
348
+ "Status": {},
349
+ "StatusReason": {},
350
+ "UpdatedAt": {
351
+ "type": "timestamp"
352
+ }
353
+ }
354
+ }
355
+ }
356
+ }
357
+ },
358
+ "GetServicePrincipalName": {
359
+ "http": {
360
+ "method": "GET",
361
+ "requestUri": "/directoryRegistrations/{DirectoryRegistrationArn}/servicePrincipalNames/{ConnectorArn}",
362
+ "responseCode": 200
363
+ },
364
+ "input": {
365
+ "type": "structure",
366
+ "required": [
367
+ "ConnectorArn",
368
+ "DirectoryRegistrationArn"
369
+ ],
370
+ "members": {
371
+ "ConnectorArn": {
372
+ "location": "uri",
373
+ "locationName": "ConnectorArn"
374
+ },
375
+ "DirectoryRegistrationArn": {
376
+ "location": "uri",
377
+ "locationName": "DirectoryRegistrationArn"
378
+ }
379
+ }
380
+ },
381
+ "output": {
382
+ "type": "structure",
383
+ "members": {
384
+ "ServicePrincipalName": {
385
+ "type": "structure",
386
+ "members": {
387
+ "ConnectorArn": {},
388
+ "CreatedAt": {
389
+ "type": "timestamp"
390
+ },
391
+ "DirectoryRegistrationArn": {},
392
+ "Status": {},
393
+ "StatusReason": {},
394
+ "UpdatedAt": {
395
+ "type": "timestamp"
396
+ }
397
+ }
398
+ }
399
+ }
400
+ }
401
+ },
402
+ "GetTemplate": {
403
+ "http": {
404
+ "method": "GET",
405
+ "requestUri": "/templates/{TemplateArn}",
406
+ "responseCode": 200
407
+ },
408
+ "input": {
409
+ "type": "structure",
410
+ "required": [
411
+ "TemplateArn"
412
+ ],
413
+ "members": {
414
+ "TemplateArn": {
415
+ "location": "uri",
416
+ "locationName": "TemplateArn"
417
+ }
418
+ }
419
+ },
420
+ "output": {
421
+ "type": "structure",
422
+ "members": {
423
+ "Template": {
424
+ "type": "structure",
425
+ "members": {
426
+ "Arn": {},
427
+ "ConnectorArn": {},
428
+ "CreatedAt": {
429
+ "type": "timestamp"
430
+ },
431
+ "Definition": {
432
+ "shape": "Sh"
433
+ },
434
+ "Name": {},
435
+ "ObjectIdentifier": {},
436
+ "PolicySchema": {
437
+ "type": "integer"
438
+ },
439
+ "Revision": {
440
+ "shape": "S2r"
441
+ },
442
+ "Status": {},
443
+ "UpdatedAt": {
444
+ "type": "timestamp"
445
+ }
446
+ }
447
+ }
448
+ }
449
+ }
450
+ },
451
+ "GetTemplateGroupAccessControlEntry": {
452
+ "http": {
453
+ "method": "GET",
454
+ "requestUri": "/templates/{TemplateArn}/accessControlEntries/{GroupSecurityIdentifier}",
455
+ "responseCode": 200
456
+ },
457
+ "input": {
458
+ "type": "structure",
459
+ "required": [
460
+ "GroupSecurityIdentifier",
461
+ "TemplateArn"
462
+ ],
463
+ "members": {
464
+ "GroupSecurityIdentifier": {
465
+ "location": "uri",
466
+ "locationName": "GroupSecurityIdentifier"
467
+ },
468
+ "TemplateArn": {
469
+ "location": "uri",
470
+ "locationName": "TemplateArn"
471
+ }
472
+ }
473
+ },
474
+ "output": {
475
+ "type": "structure",
476
+ "members": {
477
+ "AccessControlEntry": {
478
+ "type": "structure",
479
+ "members": {
480
+ "AccessRights": {
481
+ "shape": "S1y"
482
+ },
483
+ "CreatedAt": {
484
+ "type": "timestamp"
485
+ },
486
+ "GroupDisplayName": {},
487
+ "GroupSecurityIdentifier": {},
488
+ "TemplateArn": {},
489
+ "UpdatedAt": {
490
+ "type": "timestamp"
491
+ }
492
+ }
493
+ }
494
+ }
495
+ }
496
+ },
497
+ "ListConnectors": {
498
+ "http": {
499
+ "method": "GET",
500
+ "requestUri": "/connectors",
501
+ "responseCode": 200
502
+ },
503
+ "input": {
504
+ "type": "structure",
505
+ "members": {
506
+ "MaxResults": {
507
+ "location": "querystring",
508
+ "locationName": "MaxResults",
509
+ "type": "integer"
510
+ },
511
+ "NextToken": {
512
+ "location": "querystring",
513
+ "locationName": "NextToken"
514
+ }
515
+ }
516
+ },
517
+ "output": {
518
+ "type": "structure",
519
+ "members": {
520
+ "Connectors": {
521
+ "type": "list",
522
+ "member": {
523
+ "type": "structure",
524
+ "members": {
525
+ "Arn": {},
526
+ "CertificateAuthorityArn": {},
527
+ "CertificateEnrollmentPolicyServerEndpoint": {},
528
+ "CreatedAt": {
529
+ "type": "timestamp"
530
+ },
531
+ "DirectoryId": {},
532
+ "Status": {},
533
+ "StatusReason": {},
534
+ "UpdatedAt": {
535
+ "type": "timestamp"
536
+ },
537
+ "VpcInformation": {
538
+ "shape": "S7"
539
+ }
540
+ }
541
+ }
542
+ },
543
+ "NextToken": {}
544
+ }
545
+ }
546
+ },
547
+ "ListDirectoryRegistrations": {
548
+ "http": {
549
+ "method": "GET",
550
+ "requestUri": "/directoryRegistrations",
551
+ "responseCode": 200
552
+ },
553
+ "input": {
554
+ "type": "structure",
555
+ "members": {
556
+ "MaxResults": {
557
+ "location": "querystring",
558
+ "locationName": "MaxResults",
559
+ "type": "integer"
560
+ },
561
+ "NextToken": {
562
+ "location": "querystring",
563
+ "locationName": "NextToken"
564
+ }
565
+ }
566
+ },
567
+ "output": {
568
+ "type": "structure",
569
+ "members": {
570
+ "DirectoryRegistrations": {
571
+ "type": "list",
572
+ "member": {
573
+ "type": "structure",
574
+ "members": {
575
+ "Arn": {},
576
+ "CreatedAt": {
577
+ "type": "timestamp"
578
+ },
579
+ "DirectoryId": {},
580
+ "Status": {},
581
+ "StatusReason": {},
582
+ "UpdatedAt": {
583
+ "type": "timestamp"
584
+ }
585
+ }
586
+ }
587
+ },
588
+ "NextToken": {}
589
+ }
590
+ }
591
+ },
592
+ "ListServicePrincipalNames": {
593
+ "http": {
594
+ "method": "GET",
595
+ "requestUri": "/directoryRegistrations/{DirectoryRegistrationArn}/servicePrincipalNames",
596
+ "responseCode": 200
597
+ },
598
+ "input": {
599
+ "type": "structure",
600
+ "required": [
601
+ "DirectoryRegistrationArn"
602
+ ],
603
+ "members": {
604
+ "DirectoryRegistrationArn": {
605
+ "location": "uri",
606
+ "locationName": "DirectoryRegistrationArn"
607
+ },
608
+ "MaxResults": {
609
+ "location": "querystring",
610
+ "locationName": "MaxResults",
611
+ "type": "integer"
612
+ },
613
+ "NextToken": {
614
+ "location": "querystring",
615
+ "locationName": "NextToken"
616
+ }
617
+ }
618
+ },
619
+ "output": {
620
+ "type": "structure",
621
+ "members": {
622
+ "NextToken": {},
623
+ "ServicePrincipalNames": {
624
+ "type": "list",
625
+ "member": {
626
+ "type": "structure",
627
+ "members": {
628
+ "ConnectorArn": {},
629
+ "CreatedAt": {
630
+ "type": "timestamp"
631
+ },
632
+ "DirectoryRegistrationArn": {},
633
+ "Status": {},
634
+ "StatusReason": {},
635
+ "UpdatedAt": {
636
+ "type": "timestamp"
637
+ }
638
+ }
639
+ }
640
+ }
641
+ }
642
+ }
643
+ },
644
+ "ListTagsForResource": {
645
+ "http": {
646
+ "method": "GET",
647
+ "requestUri": "/tags/{ResourceArn}",
648
+ "responseCode": 200
649
+ },
650
+ "input": {
651
+ "type": "structure",
652
+ "required": [
653
+ "ResourceArn"
654
+ ],
655
+ "members": {
656
+ "ResourceArn": {
657
+ "location": "uri",
658
+ "locationName": "ResourceArn"
659
+ }
660
+ }
661
+ },
662
+ "output": {
663
+ "type": "structure",
664
+ "members": {
665
+ "Tags": {
666
+ "shape": "S5"
667
+ }
668
+ }
669
+ }
670
+ },
671
+ "ListTemplateGroupAccessControlEntries": {
672
+ "http": {
673
+ "method": "GET",
674
+ "requestUri": "/templates/{TemplateArn}/accessControlEntries",
675
+ "responseCode": 200
676
+ },
677
+ "input": {
678
+ "type": "structure",
679
+ "required": [
680
+ "TemplateArn"
681
+ ],
682
+ "members": {
683
+ "MaxResults": {
684
+ "location": "querystring",
685
+ "locationName": "MaxResults",
686
+ "type": "integer"
687
+ },
688
+ "NextToken": {
689
+ "location": "querystring",
690
+ "locationName": "NextToken"
691
+ },
692
+ "TemplateArn": {
693
+ "location": "uri",
694
+ "locationName": "TemplateArn"
695
+ }
696
+ }
697
+ },
698
+ "output": {
699
+ "type": "structure",
700
+ "members": {
701
+ "AccessControlEntries": {
702
+ "type": "list",
703
+ "member": {
704
+ "type": "structure",
705
+ "members": {
706
+ "AccessRights": {
707
+ "shape": "S1y"
708
+ },
709
+ "CreatedAt": {
710
+ "type": "timestamp"
711
+ },
712
+ "GroupDisplayName": {},
713
+ "GroupSecurityIdentifier": {},
714
+ "TemplateArn": {},
715
+ "UpdatedAt": {
716
+ "type": "timestamp"
717
+ }
718
+ }
719
+ }
720
+ },
721
+ "NextToken": {}
722
+ }
723
+ }
724
+ },
725
+ "ListTemplates": {
726
+ "http": {
727
+ "method": "GET",
728
+ "requestUri": "/templates",
729
+ "responseCode": 200
730
+ },
731
+ "input": {
732
+ "type": "structure",
733
+ "required": [
734
+ "ConnectorArn"
735
+ ],
736
+ "members": {
737
+ "ConnectorArn": {
738
+ "location": "querystring",
739
+ "locationName": "ConnectorArn"
740
+ },
741
+ "MaxResults": {
742
+ "location": "querystring",
743
+ "locationName": "MaxResults",
744
+ "type": "integer"
745
+ },
746
+ "NextToken": {
747
+ "location": "querystring",
748
+ "locationName": "NextToken"
749
+ }
750
+ }
751
+ },
752
+ "output": {
753
+ "type": "structure",
754
+ "members": {
755
+ "NextToken": {},
756
+ "Templates": {
757
+ "type": "list",
758
+ "member": {
759
+ "type": "structure",
760
+ "members": {
761
+ "Arn": {},
762
+ "ConnectorArn": {},
763
+ "CreatedAt": {
764
+ "type": "timestamp"
765
+ },
766
+ "Definition": {
767
+ "shape": "Sh"
768
+ },
769
+ "Name": {},
770
+ "ObjectIdentifier": {},
771
+ "PolicySchema": {
772
+ "type": "integer"
773
+ },
774
+ "Revision": {
775
+ "shape": "S2r"
776
+ },
777
+ "Status": {},
778
+ "UpdatedAt": {
779
+ "type": "timestamp"
780
+ }
781
+ }
782
+ }
783
+ }
784
+ }
785
+ }
786
+ },
787
+ "TagResource": {
788
+ "http": {
789
+ "requestUri": "/tags/{ResourceArn}",
790
+ "responseCode": 204
791
+ },
792
+ "input": {
793
+ "type": "structure",
794
+ "required": [
795
+ "ResourceArn",
796
+ "Tags"
797
+ ],
798
+ "members": {
799
+ "ResourceArn": {
800
+ "location": "uri",
801
+ "locationName": "ResourceArn"
802
+ },
803
+ "Tags": {
804
+ "shape": "S5"
805
+ }
806
+ }
807
+ }
808
+ },
809
+ "UntagResource": {
810
+ "http": {
811
+ "method": "DELETE",
812
+ "requestUri": "/tags/{ResourceArn}",
813
+ "responseCode": 204
814
+ },
815
+ "input": {
816
+ "type": "structure",
817
+ "required": [
818
+ "ResourceArn",
819
+ "TagKeys"
820
+ ],
821
+ "members": {
822
+ "ResourceArn": {
823
+ "location": "uri",
824
+ "locationName": "ResourceArn"
825
+ },
826
+ "TagKeys": {
827
+ "location": "querystring",
828
+ "locationName": "tagKeys",
829
+ "type": "list",
830
+ "member": {}
831
+ }
832
+ }
833
+ },
834
+ "idempotent": true
835
+ },
836
+ "UpdateTemplate": {
837
+ "http": {
838
+ "method": "PATCH",
839
+ "requestUri": "/templates/{TemplateArn}",
840
+ "responseCode": 200
841
+ },
842
+ "input": {
843
+ "type": "structure",
844
+ "required": [
845
+ "TemplateArn"
846
+ ],
847
+ "members": {
848
+ "Definition": {
849
+ "shape": "Sh"
850
+ },
851
+ "ReenrollAllCertificateHolders": {
852
+ "type": "boolean"
853
+ },
854
+ "TemplateArn": {
855
+ "location": "uri",
856
+ "locationName": "TemplateArn"
857
+ }
858
+ }
859
+ }
860
+ },
861
+ "UpdateTemplateGroupAccessControlEntry": {
862
+ "http": {
863
+ "method": "PATCH",
864
+ "requestUri": "/templates/{TemplateArn}/accessControlEntries/{GroupSecurityIdentifier}",
865
+ "responseCode": 200
866
+ },
867
+ "input": {
868
+ "type": "structure",
869
+ "required": [
870
+ "GroupSecurityIdentifier",
871
+ "TemplateArn"
872
+ ],
873
+ "members": {
874
+ "AccessRights": {
875
+ "shape": "S1y"
876
+ },
877
+ "GroupDisplayName": {},
878
+ "GroupSecurityIdentifier": {
879
+ "location": "uri",
880
+ "locationName": "GroupSecurityIdentifier"
881
+ },
882
+ "TemplateArn": {
883
+ "location": "uri",
884
+ "locationName": "TemplateArn"
885
+ }
886
+ }
887
+ }
888
+ }
889
+ },
890
+ "shapes": {
891
+ "S5": {
892
+ "type": "map",
893
+ "key": {},
894
+ "value": {}
895
+ },
896
+ "S7": {
897
+ "type": "structure",
898
+ "required": [
899
+ "SecurityGroupIds"
900
+ ],
901
+ "members": {
902
+ "SecurityGroupIds": {
903
+ "type": "list",
904
+ "member": {}
905
+ }
906
+ }
907
+ },
908
+ "Sh": {
909
+ "type": "structure",
910
+ "members": {
911
+ "TemplateV2": {
912
+ "type": "structure",
913
+ "required": [
914
+ "CertificateValidity",
915
+ "EnrollmentFlags",
916
+ "Extensions",
917
+ "GeneralFlags",
918
+ "PrivateKeyAttributes",
919
+ "PrivateKeyFlags",
920
+ "SubjectNameFlags"
921
+ ],
922
+ "members": {
923
+ "CertificateValidity": {
924
+ "shape": "Sj"
925
+ },
926
+ "EnrollmentFlags": {
927
+ "type": "structure",
928
+ "members": {
929
+ "EnableKeyReuseOnNtTokenKeysetStorageFull": {
930
+ "type": "boolean"
931
+ },
932
+ "IncludeSymmetricAlgorithms": {
933
+ "type": "boolean"
934
+ },
935
+ "NoSecurityExtension": {
936
+ "type": "boolean"
937
+ },
938
+ "RemoveInvalidCertificateFromPersonalStore": {
939
+ "type": "boolean"
940
+ },
941
+ "UserInteractionRequired": {
942
+ "type": "boolean"
943
+ }
944
+ }
945
+ },
946
+ "Extensions": {
947
+ "type": "structure",
948
+ "required": [
949
+ "KeyUsage"
950
+ ],
951
+ "members": {
952
+ "ApplicationPolicies": {
953
+ "shape": "Sq"
954
+ },
955
+ "KeyUsage": {
956
+ "shape": "Sv"
957
+ }
958
+ }
959
+ },
960
+ "GeneralFlags": {
961
+ "type": "structure",
962
+ "members": {
963
+ "AutoEnrollment": {
964
+ "type": "boolean"
965
+ },
966
+ "MachineType": {
967
+ "type": "boolean"
968
+ }
969
+ }
970
+ },
971
+ "PrivateKeyAttributes": {
972
+ "type": "structure",
973
+ "required": [
974
+ "KeySpec",
975
+ "MinimalKeyLength"
976
+ ],
977
+ "members": {
978
+ "CryptoProviders": {
979
+ "shape": "Sz"
980
+ },
981
+ "KeySpec": {},
982
+ "MinimalKeyLength": {
983
+ "type": "integer"
984
+ }
985
+ }
986
+ },
987
+ "PrivateKeyFlags": {
988
+ "type": "structure",
989
+ "required": [
990
+ "ClientVersion"
991
+ ],
992
+ "members": {
993
+ "ClientVersion": {},
994
+ "ExportableKey": {
995
+ "type": "boolean"
996
+ },
997
+ "StrongKeyProtectionRequired": {
998
+ "type": "boolean"
999
+ }
1000
+ }
1001
+ },
1002
+ "SubjectNameFlags": {
1003
+ "type": "structure",
1004
+ "members": {
1005
+ "RequireCommonName": {
1006
+ "type": "boolean"
1007
+ },
1008
+ "RequireDirectoryPath": {
1009
+ "type": "boolean"
1010
+ },
1011
+ "RequireDnsAsCn": {
1012
+ "type": "boolean"
1013
+ },
1014
+ "RequireEmail": {
1015
+ "type": "boolean"
1016
+ },
1017
+ "SanRequireDirectoryGuid": {
1018
+ "type": "boolean"
1019
+ },
1020
+ "SanRequireDns": {
1021
+ "type": "boolean"
1022
+ },
1023
+ "SanRequireDomainDns": {
1024
+ "type": "boolean"
1025
+ },
1026
+ "SanRequireEmail": {
1027
+ "type": "boolean"
1028
+ },
1029
+ "SanRequireSpn": {
1030
+ "type": "boolean"
1031
+ },
1032
+ "SanRequireUpn": {
1033
+ "type": "boolean"
1034
+ }
1035
+ }
1036
+ },
1037
+ "SupersededTemplates": {
1038
+ "shape": "S16"
1039
+ }
1040
+ }
1041
+ },
1042
+ "TemplateV3": {
1043
+ "type": "structure",
1044
+ "required": [
1045
+ "CertificateValidity",
1046
+ "EnrollmentFlags",
1047
+ "Extensions",
1048
+ "GeneralFlags",
1049
+ "HashAlgorithm",
1050
+ "PrivateKeyAttributes",
1051
+ "PrivateKeyFlags",
1052
+ "SubjectNameFlags"
1053
+ ],
1054
+ "members": {
1055
+ "CertificateValidity": {
1056
+ "shape": "Sj"
1057
+ },
1058
+ "EnrollmentFlags": {
1059
+ "type": "structure",
1060
+ "members": {
1061
+ "EnableKeyReuseOnNtTokenKeysetStorageFull": {
1062
+ "type": "boolean"
1063
+ },
1064
+ "IncludeSymmetricAlgorithms": {
1065
+ "type": "boolean"
1066
+ },
1067
+ "NoSecurityExtension": {
1068
+ "type": "boolean"
1069
+ },
1070
+ "RemoveInvalidCertificateFromPersonalStore": {
1071
+ "type": "boolean"
1072
+ },
1073
+ "UserInteractionRequired": {
1074
+ "type": "boolean"
1075
+ }
1076
+ }
1077
+ },
1078
+ "Extensions": {
1079
+ "type": "structure",
1080
+ "required": [
1081
+ "KeyUsage"
1082
+ ],
1083
+ "members": {
1084
+ "ApplicationPolicies": {
1085
+ "shape": "Sq"
1086
+ },
1087
+ "KeyUsage": {
1088
+ "shape": "Sv"
1089
+ }
1090
+ }
1091
+ },
1092
+ "GeneralFlags": {
1093
+ "type": "structure",
1094
+ "members": {
1095
+ "AutoEnrollment": {
1096
+ "type": "boolean"
1097
+ },
1098
+ "MachineType": {
1099
+ "type": "boolean"
1100
+ }
1101
+ }
1102
+ },
1103
+ "HashAlgorithm": {},
1104
+ "PrivateKeyAttributes": {
1105
+ "type": "structure",
1106
+ "required": [
1107
+ "Algorithm",
1108
+ "KeySpec",
1109
+ "KeyUsageProperty",
1110
+ "MinimalKeyLength"
1111
+ ],
1112
+ "members": {
1113
+ "Algorithm": {},
1114
+ "CryptoProviders": {
1115
+ "shape": "Sz"
1116
+ },
1117
+ "KeySpec": {},
1118
+ "KeyUsageProperty": {
1119
+ "shape": "S1f"
1120
+ },
1121
+ "MinimalKeyLength": {
1122
+ "type": "integer"
1123
+ }
1124
+ }
1125
+ },
1126
+ "PrivateKeyFlags": {
1127
+ "type": "structure",
1128
+ "required": [
1129
+ "ClientVersion"
1130
+ ],
1131
+ "members": {
1132
+ "ClientVersion": {},
1133
+ "ExportableKey": {
1134
+ "type": "boolean"
1135
+ },
1136
+ "RequireAlternateSignatureAlgorithm": {
1137
+ "type": "boolean"
1138
+ },
1139
+ "StrongKeyProtectionRequired": {
1140
+ "type": "boolean"
1141
+ }
1142
+ }
1143
+ },
1144
+ "SubjectNameFlags": {
1145
+ "type": "structure",
1146
+ "members": {
1147
+ "RequireCommonName": {
1148
+ "type": "boolean"
1149
+ },
1150
+ "RequireDirectoryPath": {
1151
+ "type": "boolean"
1152
+ },
1153
+ "RequireDnsAsCn": {
1154
+ "type": "boolean"
1155
+ },
1156
+ "RequireEmail": {
1157
+ "type": "boolean"
1158
+ },
1159
+ "SanRequireDirectoryGuid": {
1160
+ "type": "boolean"
1161
+ },
1162
+ "SanRequireDns": {
1163
+ "type": "boolean"
1164
+ },
1165
+ "SanRequireDomainDns": {
1166
+ "type": "boolean"
1167
+ },
1168
+ "SanRequireEmail": {
1169
+ "type": "boolean"
1170
+ },
1171
+ "SanRequireSpn": {
1172
+ "type": "boolean"
1173
+ },
1174
+ "SanRequireUpn": {
1175
+ "type": "boolean"
1176
+ }
1177
+ }
1178
+ },
1179
+ "SupersededTemplates": {
1180
+ "shape": "S16"
1181
+ }
1182
+ }
1183
+ },
1184
+ "TemplateV4": {
1185
+ "type": "structure",
1186
+ "required": [
1187
+ "CertificateValidity",
1188
+ "EnrollmentFlags",
1189
+ "Extensions",
1190
+ "GeneralFlags",
1191
+ "PrivateKeyAttributes",
1192
+ "PrivateKeyFlags",
1193
+ "SubjectNameFlags"
1194
+ ],
1195
+ "members": {
1196
+ "CertificateValidity": {
1197
+ "shape": "Sj"
1198
+ },
1199
+ "EnrollmentFlags": {
1200
+ "type": "structure",
1201
+ "members": {
1202
+ "EnableKeyReuseOnNtTokenKeysetStorageFull": {
1203
+ "type": "boolean"
1204
+ },
1205
+ "IncludeSymmetricAlgorithms": {
1206
+ "type": "boolean"
1207
+ },
1208
+ "NoSecurityExtension": {
1209
+ "type": "boolean"
1210
+ },
1211
+ "RemoveInvalidCertificateFromPersonalStore": {
1212
+ "type": "boolean"
1213
+ },
1214
+ "UserInteractionRequired": {
1215
+ "type": "boolean"
1216
+ }
1217
+ }
1218
+ },
1219
+ "Extensions": {
1220
+ "type": "structure",
1221
+ "required": [
1222
+ "KeyUsage"
1223
+ ],
1224
+ "members": {
1225
+ "ApplicationPolicies": {
1226
+ "shape": "Sq"
1227
+ },
1228
+ "KeyUsage": {
1229
+ "shape": "Sv"
1230
+ }
1231
+ }
1232
+ },
1233
+ "GeneralFlags": {
1234
+ "type": "structure",
1235
+ "members": {
1236
+ "AutoEnrollment": {
1237
+ "type": "boolean"
1238
+ },
1239
+ "MachineType": {
1240
+ "type": "boolean"
1241
+ }
1242
+ }
1243
+ },
1244
+ "HashAlgorithm": {},
1245
+ "PrivateKeyAttributes": {
1246
+ "type": "structure",
1247
+ "required": [
1248
+ "KeySpec",
1249
+ "MinimalKeyLength"
1250
+ ],
1251
+ "members": {
1252
+ "Algorithm": {},
1253
+ "CryptoProviders": {
1254
+ "shape": "Sz"
1255
+ },
1256
+ "KeySpec": {},
1257
+ "KeyUsageProperty": {
1258
+ "shape": "S1f"
1259
+ },
1260
+ "MinimalKeyLength": {
1261
+ "type": "integer"
1262
+ }
1263
+ }
1264
+ },
1265
+ "PrivateKeyFlags": {
1266
+ "type": "structure",
1267
+ "required": [
1268
+ "ClientVersion"
1269
+ ],
1270
+ "members": {
1271
+ "ClientVersion": {},
1272
+ "ExportableKey": {
1273
+ "type": "boolean"
1274
+ },
1275
+ "RequireAlternateSignatureAlgorithm": {
1276
+ "type": "boolean"
1277
+ },
1278
+ "RequireSameKeyRenewal": {
1279
+ "type": "boolean"
1280
+ },
1281
+ "StrongKeyProtectionRequired": {
1282
+ "type": "boolean"
1283
+ },
1284
+ "UseLegacyProvider": {
1285
+ "type": "boolean"
1286
+ }
1287
+ }
1288
+ },
1289
+ "SubjectNameFlags": {
1290
+ "type": "structure",
1291
+ "members": {
1292
+ "RequireCommonName": {
1293
+ "type": "boolean"
1294
+ },
1295
+ "RequireDirectoryPath": {
1296
+ "type": "boolean"
1297
+ },
1298
+ "RequireDnsAsCn": {
1299
+ "type": "boolean"
1300
+ },
1301
+ "RequireEmail": {
1302
+ "type": "boolean"
1303
+ },
1304
+ "SanRequireDirectoryGuid": {
1305
+ "type": "boolean"
1306
+ },
1307
+ "SanRequireDns": {
1308
+ "type": "boolean"
1309
+ },
1310
+ "SanRequireDomainDns": {
1311
+ "type": "boolean"
1312
+ },
1313
+ "SanRequireEmail": {
1314
+ "type": "boolean"
1315
+ },
1316
+ "SanRequireSpn": {
1317
+ "type": "boolean"
1318
+ },
1319
+ "SanRequireUpn": {
1320
+ "type": "boolean"
1321
+ }
1322
+ }
1323
+ },
1324
+ "SupersededTemplates": {
1325
+ "shape": "S16"
1326
+ }
1327
+ }
1328
+ }
1329
+ },
1330
+ "union": true
1331
+ },
1332
+ "Sj": {
1333
+ "type": "structure",
1334
+ "required": [
1335
+ "RenewalPeriod",
1336
+ "ValidityPeriod"
1337
+ ],
1338
+ "members": {
1339
+ "RenewalPeriod": {
1340
+ "shape": "Sk"
1341
+ },
1342
+ "ValidityPeriod": {
1343
+ "shape": "Sk"
1344
+ }
1345
+ }
1346
+ },
1347
+ "Sk": {
1348
+ "type": "structure",
1349
+ "required": [
1350
+ "Period",
1351
+ "PeriodType"
1352
+ ],
1353
+ "members": {
1354
+ "Period": {
1355
+ "type": "long"
1356
+ },
1357
+ "PeriodType": {}
1358
+ }
1359
+ },
1360
+ "Sq": {
1361
+ "type": "structure",
1362
+ "required": [
1363
+ "Policies"
1364
+ ],
1365
+ "members": {
1366
+ "Critical": {
1367
+ "type": "boolean"
1368
+ },
1369
+ "Policies": {
1370
+ "type": "list",
1371
+ "member": {
1372
+ "type": "structure",
1373
+ "members": {
1374
+ "PolicyObjectIdentifier": {},
1375
+ "PolicyType": {}
1376
+ },
1377
+ "union": true
1378
+ }
1379
+ }
1380
+ }
1381
+ },
1382
+ "Sv": {
1383
+ "type": "structure",
1384
+ "required": [
1385
+ "UsageFlags"
1386
+ ],
1387
+ "members": {
1388
+ "Critical": {
1389
+ "type": "boolean"
1390
+ },
1391
+ "UsageFlags": {
1392
+ "type": "structure",
1393
+ "members": {
1394
+ "DataEncipherment": {
1395
+ "type": "boolean"
1396
+ },
1397
+ "DigitalSignature": {
1398
+ "type": "boolean"
1399
+ },
1400
+ "KeyAgreement": {
1401
+ "type": "boolean"
1402
+ },
1403
+ "KeyEncipherment": {
1404
+ "type": "boolean"
1405
+ },
1406
+ "NonRepudiation": {
1407
+ "type": "boolean"
1408
+ }
1409
+ }
1410
+ }
1411
+ }
1412
+ },
1413
+ "Sz": {
1414
+ "type": "list",
1415
+ "member": {}
1416
+ },
1417
+ "S16": {
1418
+ "type": "list",
1419
+ "member": {}
1420
+ },
1421
+ "S1f": {
1422
+ "type": "structure",
1423
+ "members": {
1424
+ "PropertyFlags": {
1425
+ "type": "structure",
1426
+ "members": {
1427
+ "Decrypt": {
1428
+ "type": "boolean"
1429
+ },
1430
+ "KeyAgreement": {
1431
+ "type": "boolean"
1432
+ },
1433
+ "Sign": {
1434
+ "type": "boolean"
1435
+ }
1436
+ }
1437
+ },
1438
+ "PropertyType": {}
1439
+ },
1440
+ "union": true
1441
+ },
1442
+ "S1y": {
1443
+ "type": "structure",
1444
+ "members": {
1445
+ "AutoEnroll": {},
1446
+ "Enroll": {}
1447
+ }
1448
+ },
1449
+ "S2r": {
1450
+ "type": "structure",
1451
+ "required": [
1452
+ "MajorRevision",
1453
+ "MinorRevision"
1454
+ ],
1455
+ "members": {
1456
+ "MajorRevision": {
1457
+ "type": "integer"
1458
+ },
1459
+ "MinorRevision": {
1460
+ "type": "integer"
1461
+ }
1462
+ }
1463
+ }
1464
+ }
1465
+ }