aws-sdk 2.1686.0 → 2.1688.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.
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +10 -1
- package/apis/connect-2017-08-08.min.json +268 -250
- package/apis/datazone-2018-05-10.min.json +1478 -646
- package/apis/datazone-2018-05-10.paginators.json +18 -0
- package/apis/elasticloadbalancingv2-2015-12-01.examples.json +18 -0
- package/apis/elasticloadbalancingv2-2015-12-01.min.json +65 -11
- package/apis/logs-2014-03-28.min.json +28 -4
- package/apis/mediaconnect-2018-11-14.min.json +116 -42
- package/apis/medialive-2017-10-14.min.json +349 -341
- package/apis/redshift-data-2019-12-20.min.json +32 -9
- package/apis/sagemaker-2017-07-24.min.json +814 -813
- package/apis/timestream-influxdb-2023-01-27.min.json +3 -1
- package/clients/backup.d.ts +280 -268
- package/clients/cloudwatchlogs.d.ts +41 -10
- package/clients/connect.d.ts +38 -2
- package/clients/datazone.d.ts +848 -1
- package/clients/elbv2.d.ts +59 -2
- package/clients/mediaconnect.d.ts +49 -0
- package/clients/medialive.d.ts +11 -0
- package/clients/redshiftdata.d.ts +62 -20
- package/clients/sagemaker.d.ts +7 -2
- package/clients/timestreaminfluxdb.d.ts +9 -1
- package/dist/aws-sdk-core-react-native.js +2 -1
- package/dist/aws-sdk-react-native.js +14 -12
- package/dist/aws-sdk.js +365 -268
- package/dist/aws-sdk.min.js +85 -85
- package/lib/core.js +1 -1
- package/lib/region_config.js +1 -0
- package/package.json +1 -1
@@ -98,8 +98,24 @@
|
|
98
98
|
"identifier"
|
99
99
|
],
|
100
100
|
"members": {
|
101
|
+
"assetScopes": {
|
102
|
+
"type": "list",
|
103
|
+
"member": {
|
104
|
+
"type": "structure",
|
105
|
+
"required": [
|
106
|
+
"assetId",
|
107
|
+
"filterIds"
|
108
|
+
],
|
109
|
+
"members": {
|
110
|
+
"assetId": {},
|
111
|
+
"filterIds": {
|
112
|
+
"shape": "Sj"
|
113
|
+
}
|
114
|
+
}
|
115
|
+
}
|
116
|
+
},
|
101
117
|
"decisionComment": {
|
102
|
-
"shape": "
|
118
|
+
"shape": "Sl"
|
103
119
|
},
|
104
120
|
"domainIdentifier": {
|
105
121
|
"location": "uri",
|
@@ -130,25 +146,25 @@
|
|
130
146
|
},
|
131
147
|
"createdBy": {},
|
132
148
|
"decisionComment": {
|
133
|
-
"shape": "
|
149
|
+
"shape": "Sl"
|
134
150
|
},
|
135
151
|
"domainId": {},
|
136
152
|
"id": {},
|
137
153
|
"requestReason": {
|
138
|
-
"shape": "
|
154
|
+
"shape": "Sq"
|
139
155
|
},
|
140
156
|
"reviewerId": {},
|
141
157
|
"status": {},
|
142
158
|
"subscribedListings": {
|
143
159
|
"type": "list",
|
144
160
|
"member": {
|
145
|
-
"shape": "
|
161
|
+
"shape": "St"
|
146
162
|
}
|
147
163
|
},
|
148
164
|
"subscribedPrincipals": {
|
149
165
|
"type": "list",
|
150
166
|
"member": {
|
151
|
-
"shape": "
|
167
|
+
"shape": "S1b"
|
152
168
|
}
|
153
169
|
},
|
154
170
|
"updatedAt": {
|
@@ -159,6 +175,92 @@
|
|
159
175
|
},
|
160
176
|
"idempotent": true
|
161
177
|
},
|
178
|
+
"AddEntityOwner": {
|
179
|
+
"http": {
|
180
|
+
"requestUri": "/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/addOwner",
|
181
|
+
"responseCode": 201
|
182
|
+
},
|
183
|
+
"input": {
|
184
|
+
"type": "structure",
|
185
|
+
"required": [
|
186
|
+
"domainIdentifier",
|
187
|
+
"entityIdentifier",
|
188
|
+
"entityType",
|
189
|
+
"owner"
|
190
|
+
],
|
191
|
+
"members": {
|
192
|
+
"clientToken": {
|
193
|
+
"idempotencyToken": true
|
194
|
+
},
|
195
|
+
"domainIdentifier": {
|
196
|
+
"location": "uri",
|
197
|
+
"locationName": "domainIdentifier"
|
198
|
+
},
|
199
|
+
"entityIdentifier": {
|
200
|
+
"location": "uri",
|
201
|
+
"locationName": "entityIdentifier"
|
202
|
+
},
|
203
|
+
"entityType": {
|
204
|
+
"location": "uri",
|
205
|
+
"locationName": "entityType"
|
206
|
+
},
|
207
|
+
"owner": {
|
208
|
+
"shape": "S1i"
|
209
|
+
}
|
210
|
+
}
|
211
|
+
},
|
212
|
+
"output": {
|
213
|
+
"type": "structure",
|
214
|
+
"members": {}
|
215
|
+
},
|
216
|
+
"idempotent": true
|
217
|
+
},
|
218
|
+
"AddPolicyGrant": {
|
219
|
+
"http": {
|
220
|
+
"requestUri": "/v2/domains/{domainIdentifier}/policies/managed/{entityType}/{entityIdentifier}/addGrant",
|
221
|
+
"responseCode": 201
|
222
|
+
},
|
223
|
+
"input": {
|
224
|
+
"type": "structure",
|
225
|
+
"required": [
|
226
|
+
"detail",
|
227
|
+
"domainIdentifier",
|
228
|
+
"entityIdentifier",
|
229
|
+
"entityType",
|
230
|
+
"policyType",
|
231
|
+
"principal"
|
232
|
+
],
|
233
|
+
"members": {
|
234
|
+
"clientToken": {
|
235
|
+
"idempotencyToken": true
|
236
|
+
},
|
237
|
+
"detail": {
|
238
|
+
"shape": "S1p"
|
239
|
+
},
|
240
|
+
"domainIdentifier": {
|
241
|
+
"location": "uri",
|
242
|
+
"locationName": "domainIdentifier"
|
243
|
+
},
|
244
|
+
"entityIdentifier": {
|
245
|
+
"location": "uri",
|
246
|
+
"locationName": "entityIdentifier"
|
247
|
+
},
|
248
|
+
"entityType": {
|
249
|
+
"location": "uri",
|
250
|
+
"locationName": "entityType"
|
251
|
+
},
|
252
|
+
"policyType": {},
|
253
|
+
"principal": {
|
254
|
+
"shape": "S24"
|
255
|
+
}
|
256
|
+
}
|
257
|
+
},
|
258
|
+
"output": {
|
259
|
+
"type": "structure",
|
260
|
+
"members": {}
|
261
|
+
},
|
262
|
+
"idempotent": true
|
263
|
+
},
|
162
264
|
"AssociateEnvironmentRole": {
|
163
265
|
"http": {
|
164
266
|
"method": "PUT",
|
@@ -266,10 +368,10 @@
|
|
266
368
|
},
|
267
369
|
"status": {},
|
268
370
|
"subscribedListing": {
|
269
|
-
"shape": "
|
371
|
+
"shape": "St"
|
270
372
|
},
|
271
373
|
"subscribedPrincipal": {
|
272
|
-
"shape": "
|
374
|
+
"shape": "S1b"
|
273
375
|
},
|
274
376
|
"subscriptionRequestId": {},
|
275
377
|
"updatedAt": {
|
@@ -298,27 +400,27 @@
|
|
298
400
|
"idempotencyToken": true
|
299
401
|
},
|
300
402
|
"description": {
|
301
|
-
"shape": "
|
403
|
+
"shape": "Su"
|
302
404
|
},
|
303
405
|
"domainIdentifier": {
|
304
406
|
"location": "uri",
|
305
407
|
"locationName": "domainIdentifier"
|
306
408
|
},
|
307
409
|
"externalIdentifier": {
|
308
|
-
"shape": "
|
410
|
+
"shape": "S2s"
|
309
411
|
},
|
310
412
|
"formsInput": {
|
311
|
-
"shape": "
|
413
|
+
"shape": "S2t"
|
312
414
|
},
|
313
415
|
"glossaryTerms": {
|
314
|
-
"shape": "
|
416
|
+
"shape": "S2y"
|
315
417
|
},
|
316
418
|
"name": {
|
317
|
-
"shape": "
|
419
|
+
"shape": "S30"
|
318
420
|
},
|
319
421
|
"owningProjectIdentifier": {},
|
320
422
|
"predictionConfiguration": {
|
321
|
-
"shape": "
|
423
|
+
"shape": "S31"
|
322
424
|
},
|
323
425
|
"typeIdentifier": {},
|
324
426
|
"typeRevision": {}
|
@@ -342,38 +444,38 @@
|
|
342
444
|
},
|
343
445
|
"createdBy": {},
|
344
446
|
"description": {
|
345
|
-
"shape": "
|
447
|
+
"shape": "Su"
|
346
448
|
},
|
347
449
|
"domainId": {},
|
348
450
|
"externalIdentifier": {
|
349
|
-
"shape": "
|
451
|
+
"shape": "S2s"
|
350
452
|
},
|
351
453
|
"firstRevisionCreatedAt": {
|
352
454
|
"type": "timestamp"
|
353
455
|
},
|
354
456
|
"firstRevisionCreatedBy": {},
|
355
457
|
"formsOutput": {
|
356
|
-
"shape": "
|
458
|
+
"shape": "S35"
|
357
459
|
},
|
358
460
|
"glossaryTerms": {
|
359
|
-
"shape": "
|
461
|
+
"shape": "S2y"
|
360
462
|
},
|
361
463
|
"id": {},
|
362
464
|
"latestTimeSeriesDataPointFormsOutput": {
|
363
|
-
"shape": "
|
465
|
+
"shape": "S38"
|
364
466
|
},
|
365
467
|
"listing": {
|
366
|
-
"shape": "
|
468
|
+
"shape": "S3e"
|
367
469
|
},
|
368
470
|
"name": {
|
369
|
-
"shape": "
|
471
|
+
"shape": "S30"
|
370
472
|
},
|
371
473
|
"owningProjectId": {},
|
372
474
|
"predictionConfiguration": {
|
373
|
-
"shape": "
|
475
|
+
"shape": "S31"
|
374
476
|
},
|
375
477
|
"readOnlyFormsOutput": {
|
376
|
-
"shape": "
|
478
|
+
"shape": "S35"
|
377
479
|
},
|
378
480
|
"revision": {},
|
379
481
|
"typeIdentifier": {},
|
@@ -404,17 +506,17 @@
|
|
404
506
|
"idempotencyToken": true
|
405
507
|
},
|
406
508
|
"configuration": {
|
407
|
-
"shape": "
|
509
|
+
"shape": "S3h"
|
408
510
|
},
|
409
511
|
"description": {
|
410
|
-
"shape": "
|
512
|
+
"shape": "Su"
|
411
513
|
},
|
412
514
|
"domainIdentifier": {
|
413
515
|
"location": "uri",
|
414
516
|
"locationName": "domainIdentifier"
|
415
517
|
},
|
416
518
|
"name": {
|
417
|
-
"shape": "
|
519
|
+
"shape": "S41"
|
418
520
|
}
|
419
521
|
}
|
420
522
|
},
|
@@ -430,23 +532,23 @@
|
|
430
532
|
"members": {
|
431
533
|
"assetId": {},
|
432
534
|
"configuration": {
|
433
|
-
"shape": "
|
535
|
+
"shape": "S3h"
|
434
536
|
},
|
435
537
|
"createdAt": {
|
436
538
|
"type": "timestamp"
|
437
539
|
},
|
438
540
|
"description": {
|
439
|
-
"shape": "
|
541
|
+
"shape": "Su"
|
440
542
|
},
|
441
543
|
"domainId": {},
|
442
544
|
"effectiveColumnNames": {
|
443
|
-
"shape": "
|
545
|
+
"shape": "S3j"
|
444
546
|
},
|
445
547
|
"effectiveRowFilter": {},
|
446
548
|
"errorMessage": {},
|
447
549
|
"id": {},
|
448
550
|
"name": {
|
449
|
-
"shape": "
|
551
|
+
"shape": "S41"
|
450
552
|
},
|
451
553
|
"status": {}
|
452
554
|
}
|
@@ -470,27 +572,27 @@
|
|
470
572
|
"idempotencyToken": true
|
471
573
|
},
|
472
574
|
"description": {
|
473
|
-
"shape": "
|
575
|
+
"shape": "Su"
|
474
576
|
},
|
475
577
|
"domainIdentifier": {
|
476
578
|
"location": "uri",
|
477
579
|
"locationName": "domainIdentifier"
|
478
580
|
},
|
479
581
|
"formsInput": {
|
480
|
-
"shape": "
|
582
|
+
"shape": "S2t"
|
481
583
|
},
|
482
584
|
"glossaryTerms": {
|
483
|
-
"shape": "
|
585
|
+
"shape": "S2y"
|
484
586
|
},
|
485
587
|
"identifier": {
|
486
588
|
"location": "uri",
|
487
589
|
"locationName": "identifier"
|
488
590
|
},
|
489
591
|
"name": {
|
490
|
-
"shape": "
|
592
|
+
"shape": "S30"
|
491
593
|
},
|
492
594
|
"predictionConfiguration": {
|
493
|
-
"shape": "
|
595
|
+
"shape": "S31"
|
494
596
|
},
|
495
597
|
"typeRevision": {}
|
496
598
|
}
|
@@ -513,38 +615,38 @@
|
|
513
615
|
},
|
514
616
|
"createdBy": {},
|
515
617
|
"description": {
|
516
|
-
"shape": "
|
618
|
+
"shape": "Su"
|
517
619
|
},
|
518
620
|
"domainId": {},
|
519
621
|
"externalIdentifier": {
|
520
|
-
"shape": "
|
622
|
+
"shape": "S2s"
|
521
623
|
},
|
522
624
|
"firstRevisionCreatedAt": {
|
523
625
|
"type": "timestamp"
|
524
626
|
},
|
525
627
|
"firstRevisionCreatedBy": {},
|
526
628
|
"formsOutput": {
|
527
|
-
"shape": "
|
629
|
+
"shape": "S35"
|
528
630
|
},
|
529
631
|
"glossaryTerms": {
|
530
|
-
"shape": "
|
632
|
+
"shape": "S2y"
|
531
633
|
},
|
532
634
|
"id": {},
|
533
635
|
"latestTimeSeriesDataPointFormsOutput": {
|
534
|
-
"shape": "
|
636
|
+
"shape": "S38"
|
535
637
|
},
|
536
638
|
"listing": {
|
537
|
-
"shape": "
|
639
|
+
"shape": "S3e"
|
538
640
|
},
|
539
641
|
"name": {
|
540
|
-
"shape": "
|
642
|
+
"shape": "S30"
|
541
643
|
},
|
542
644
|
"owningProjectId": {},
|
543
645
|
"predictionConfiguration": {
|
544
|
-
"shape": "
|
646
|
+
"shape": "S31"
|
545
647
|
},
|
546
648
|
"readOnlyFormsOutput": {
|
547
|
-
"shape": "
|
649
|
+
"shape": "S35"
|
548
650
|
},
|
549
651
|
"revision": {},
|
550
652
|
"typeIdentifier": {},
|
@@ -568,7 +670,7 @@
|
|
568
670
|
],
|
569
671
|
"members": {
|
570
672
|
"description": {
|
571
|
-
"shape": "
|
673
|
+
"shape": "Su"
|
572
674
|
},
|
573
675
|
"domainIdentifier": {
|
574
676
|
"location": "uri",
|
@@ -610,11 +712,11 @@
|
|
610
712
|
},
|
611
713
|
"createdBy": {},
|
612
714
|
"description": {
|
613
|
-
"shape": "
|
715
|
+
"shape": "Su"
|
614
716
|
},
|
615
717
|
"domainId": {},
|
616
718
|
"formsOutput": {
|
617
|
-
"shape": "
|
719
|
+
"shape": "S4a"
|
618
720
|
},
|
619
721
|
"name": {},
|
620
722
|
"originDomainId": {},
|
@@ -645,23 +747,23 @@
|
|
645
747
|
"idempotencyToken": true
|
646
748
|
},
|
647
749
|
"description": {
|
648
|
-
"shape": "
|
750
|
+
"shape": "S4d"
|
649
751
|
},
|
650
752
|
"domainIdentifier": {
|
651
753
|
"location": "uri",
|
652
754
|
"locationName": "domainIdentifier"
|
653
755
|
},
|
654
756
|
"formsInput": {
|
655
|
-
"shape": "
|
757
|
+
"shape": "S2t"
|
656
758
|
},
|
657
759
|
"glossaryTerms": {
|
658
|
-
"shape": "
|
760
|
+
"shape": "S2y"
|
659
761
|
},
|
660
762
|
"items": {
|
661
|
-
"shape": "
|
763
|
+
"shape": "S4e"
|
662
764
|
},
|
663
765
|
"name": {
|
664
|
-
"shape": "
|
766
|
+
"shape": "S4j"
|
665
767
|
},
|
666
768
|
"owningProjectIdentifier": {}
|
667
769
|
}
|
@@ -682,7 +784,7 @@
|
|
682
784
|
},
|
683
785
|
"createdBy": {},
|
684
786
|
"description": {
|
685
|
-
"shape": "
|
787
|
+
"shape": "S4d"
|
686
788
|
},
|
687
789
|
"domainId": {},
|
688
790
|
"firstRevisionCreatedAt": {
|
@@ -690,17 +792,17 @@
|
|
690
792
|
},
|
691
793
|
"firstRevisionCreatedBy": {},
|
692
794
|
"formsOutput": {
|
693
|
-
"shape": "
|
795
|
+
"shape": "S35"
|
694
796
|
},
|
695
797
|
"glossaryTerms": {
|
696
|
-
"shape": "
|
798
|
+
"shape": "S2y"
|
697
799
|
},
|
698
800
|
"id": {},
|
699
801
|
"items": {
|
700
|
-
"shape": "
|
802
|
+
"shape": "S4e"
|
701
803
|
},
|
702
804
|
"name": {
|
703
|
-
"shape": "
|
805
|
+
"shape": "S4j"
|
704
806
|
},
|
705
807
|
"owningProjectId": {},
|
706
808
|
"revision": {},
|
@@ -726,27 +828,27 @@
|
|
726
828
|
"idempotencyToken": true
|
727
829
|
},
|
728
830
|
"description": {
|
729
|
-
"shape": "
|
831
|
+
"shape": "S4d"
|
730
832
|
},
|
731
833
|
"domainIdentifier": {
|
732
834
|
"location": "uri",
|
733
835
|
"locationName": "domainIdentifier"
|
734
836
|
},
|
735
837
|
"formsInput": {
|
736
|
-
"shape": "
|
838
|
+
"shape": "S2t"
|
737
839
|
},
|
738
840
|
"glossaryTerms": {
|
739
|
-
"shape": "
|
841
|
+
"shape": "S2y"
|
740
842
|
},
|
741
843
|
"identifier": {
|
742
844
|
"location": "uri",
|
743
845
|
"locationName": "identifier"
|
744
846
|
},
|
745
847
|
"items": {
|
746
|
-
"shape": "
|
848
|
+
"shape": "S4e"
|
747
849
|
},
|
748
850
|
"name": {
|
749
|
-
"shape": "
|
851
|
+
"shape": "S4j"
|
750
852
|
}
|
751
853
|
}
|
752
854
|
},
|
@@ -766,7 +868,7 @@
|
|
766
868
|
},
|
767
869
|
"createdBy": {},
|
768
870
|
"description": {
|
769
|
-
"shape": "
|
871
|
+
"shape": "S4d"
|
770
872
|
},
|
771
873
|
"domainId": {},
|
772
874
|
"firstRevisionCreatedAt": {
|
@@ -774,17 +876,17 @@
|
|
774
876
|
},
|
775
877
|
"firstRevisionCreatedBy": {},
|
776
878
|
"formsOutput": {
|
777
|
-
"shape": "
|
879
|
+
"shape": "S35"
|
778
880
|
},
|
779
881
|
"glossaryTerms": {
|
780
|
-
"shape": "
|
882
|
+
"shape": "S2y"
|
781
883
|
},
|
782
884
|
"id": {},
|
783
885
|
"items": {
|
784
|
-
"shape": "
|
886
|
+
"shape": "S4e"
|
785
887
|
},
|
786
888
|
"name": {
|
787
|
-
"shape": "
|
889
|
+
"shape": "S4j"
|
788
890
|
},
|
789
891
|
"owningProjectId": {},
|
790
892
|
"revision": {},
|
@@ -809,16 +911,16 @@
|
|
809
911
|
],
|
810
912
|
"members": {
|
811
913
|
"assetFormsInput": {
|
812
|
-
"shape": "
|
914
|
+
"shape": "S2t"
|
813
915
|
},
|
814
916
|
"clientToken": {
|
815
917
|
"idempotencyToken": true
|
816
918
|
},
|
817
919
|
"configuration": {
|
818
|
-
"shape": "
|
920
|
+
"shape": "S4q"
|
819
921
|
},
|
820
922
|
"description": {
|
821
|
-
"shape": "
|
923
|
+
"shape": "Su"
|
822
924
|
},
|
823
925
|
"domainIdentifier": {
|
824
926
|
"location": "uri",
|
@@ -827,17 +929,17 @@
|
|
827
929
|
"enableSetting": {},
|
828
930
|
"environmentIdentifier": {},
|
829
931
|
"name": {
|
830
|
-
"shape": "
|
932
|
+
"shape": "S5b"
|
831
933
|
},
|
832
934
|
"projectIdentifier": {},
|
833
935
|
"publishOnImport": {
|
834
936
|
"type": "boolean"
|
835
937
|
},
|
836
938
|
"recommendation": {
|
837
|
-
"shape": "
|
939
|
+
"shape": "S5c"
|
838
940
|
},
|
839
941
|
"schedule": {
|
840
|
-
"shape": "
|
942
|
+
"shape": "S5d"
|
841
943
|
},
|
842
944
|
"type": {}
|
843
945
|
}
|
@@ -853,48 +955,48 @@
|
|
853
955
|
],
|
854
956
|
"members": {
|
855
957
|
"assetFormsOutput": {
|
856
|
-
"shape": "
|
958
|
+
"shape": "S35"
|
857
959
|
},
|
858
960
|
"configuration": {
|
859
|
-
"shape": "
|
961
|
+
"shape": "S5i"
|
860
962
|
},
|
861
963
|
"createdAt": {
|
862
|
-
"shape": "
|
964
|
+
"shape": "S5r"
|
863
965
|
},
|
864
966
|
"description": {
|
865
|
-
"shape": "
|
967
|
+
"shape": "Su"
|
866
968
|
},
|
867
969
|
"domainId": {},
|
868
970
|
"enableSetting": {},
|
869
971
|
"environmentId": {},
|
870
972
|
"errorMessage": {
|
871
|
-
"shape": "
|
973
|
+
"shape": "S5s"
|
872
974
|
},
|
873
975
|
"id": {},
|
874
976
|
"lastRunAt": {
|
875
|
-
"shape": "
|
977
|
+
"shape": "S5r"
|
876
978
|
},
|
877
979
|
"lastRunErrorMessage": {
|
878
|
-
"shape": "
|
980
|
+
"shape": "S5s"
|
879
981
|
},
|
880
982
|
"lastRunStatus": {},
|
881
983
|
"name": {
|
882
|
-
"shape": "
|
984
|
+
"shape": "S5b"
|
883
985
|
},
|
884
986
|
"projectId": {},
|
885
987
|
"publishOnImport": {
|
886
988
|
"type": "boolean"
|
887
989
|
},
|
888
990
|
"recommendation": {
|
889
|
-
"shape": "
|
991
|
+
"shape": "S5c"
|
890
992
|
},
|
891
993
|
"schedule": {
|
892
|
-
"shape": "
|
994
|
+
"shape": "S5d"
|
893
995
|
},
|
894
996
|
"status": {},
|
895
997
|
"type": {},
|
896
998
|
"updatedAt": {
|
897
|
-
"shape": "
|
999
|
+
"shape": "S5r"
|
898
1000
|
}
|
899
1001
|
}
|
900
1002
|
},
|
@@ -920,10 +1022,10 @@
|
|
920
1022
|
"kmsKeyIdentifier": {},
|
921
1023
|
"name": {},
|
922
1024
|
"singleSignOn": {
|
923
|
-
"shape": "
|
1025
|
+
"shape": "S60"
|
924
1026
|
},
|
925
1027
|
"tags": {
|
926
|
-
"shape": "
|
1028
|
+
"shape": "S63"
|
927
1029
|
}
|
928
1030
|
}
|
929
1031
|
},
|
@@ -940,17 +1042,81 @@
|
|
940
1042
|
"kmsKeyIdentifier": {},
|
941
1043
|
"name": {},
|
942
1044
|
"portalUrl": {},
|
1045
|
+
"rootDomainUnitId": {},
|
943
1046
|
"singleSignOn": {
|
944
|
-
"shape": "
|
1047
|
+
"shape": "S60"
|
945
1048
|
},
|
946
1049
|
"status": {},
|
947
1050
|
"tags": {
|
948
|
-
"shape": "
|
1051
|
+
"shape": "S63"
|
949
1052
|
}
|
950
1053
|
}
|
951
1054
|
},
|
952
1055
|
"idempotent": true
|
953
1056
|
},
|
1057
|
+
"CreateDomainUnit": {
|
1058
|
+
"http": {
|
1059
|
+
"requestUri": "/v2/domains/{domainIdentifier}/domain-units",
|
1060
|
+
"responseCode": 201
|
1061
|
+
},
|
1062
|
+
"input": {
|
1063
|
+
"type": "structure",
|
1064
|
+
"required": [
|
1065
|
+
"domainIdentifier",
|
1066
|
+
"name",
|
1067
|
+
"parentDomainUnitIdentifier"
|
1068
|
+
],
|
1069
|
+
"members": {
|
1070
|
+
"clientToken": {
|
1071
|
+
"idempotencyToken": true
|
1072
|
+
},
|
1073
|
+
"description": {
|
1074
|
+
"shape": "S69"
|
1075
|
+
},
|
1076
|
+
"domainIdentifier": {
|
1077
|
+
"location": "uri",
|
1078
|
+
"locationName": "domainIdentifier"
|
1079
|
+
},
|
1080
|
+
"name": {
|
1081
|
+
"shape": "S6a"
|
1082
|
+
},
|
1083
|
+
"parentDomainUnitIdentifier": {}
|
1084
|
+
}
|
1085
|
+
},
|
1086
|
+
"output": {
|
1087
|
+
"type": "structure",
|
1088
|
+
"required": [
|
1089
|
+
"ancestorDomainUnitIds",
|
1090
|
+
"domainId",
|
1091
|
+
"id",
|
1092
|
+
"name",
|
1093
|
+
"owners"
|
1094
|
+
],
|
1095
|
+
"members": {
|
1096
|
+
"ancestorDomainUnitIds": {
|
1097
|
+
"type": "list",
|
1098
|
+
"member": {}
|
1099
|
+
},
|
1100
|
+
"createdAt": {
|
1101
|
+
"type": "timestamp"
|
1102
|
+
},
|
1103
|
+
"createdBy": {},
|
1104
|
+
"description": {
|
1105
|
+
"shape": "S69"
|
1106
|
+
},
|
1107
|
+
"domainId": {},
|
1108
|
+
"id": {},
|
1109
|
+
"name": {
|
1110
|
+
"shape": "S6a"
|
1111
|
+
},
|
1112
|
+
"owners": {
|
1113
|
+
"shape": "S6d"
|
1114
|
+
},
|
1115
|
+
"parentDomainUnitId": {}
|
1116
|
+
}
|
1117
|
+
},
|
1118
|
+
"idempotent": true
|
1119
|
+
},
|
954
1120
|
"CreateEnvironment": {
|
955
1121
|
"http": {
|
956
1122
|
"requestUri": "/v2/domains/{domainIdentifier}/environments",
|
@@ -975,12 +1141,12 @@
|
|
975
1141
|
"environmentBlueprintIdentifier": {},
|
976
1142
|
"environmentProfileIdentifier": {},
|
977
1143
|
"glossaryTerms": {
|
978
|
-
"shape": "
|
1144
|
+
"shape": "S2y"
|
979
1145
|
},
|
980
1146
|
"name": {},
|
981
1147
|
"projectIdentifier": {},
|
982
1148
|
"userParameters": {
|
983
|
-
"shape": "
|
1149
|
+
"shape": "S6j"
|
984
1150
|
}
|
985
1151
|
}
|
986
1152
|
},
|
@@ -997,45 +1163,45 @@
|
|
997
1163
|
"awsAccountId": {},
|
998
1164
|
"awsAccountRegion": {},
|
999
1165
|
"createdAt": {
|
1000
|
-
"shape": "
|
1166
|
+
"shape": "S6o"
|
1001
1167
|
},
|
1002
1168
|
"createdBy": {},
|
1003
1169
|
"deploymentProperties": {
|
1004
|
-
"shape": "
|
1170
|
+
"shape": "S6p"
|
1005
1171
|
},
|
1006
1172
|
"description": {
|
1007
|
-
"shape": "
|
1173
|
+
"shape": "Su"
|
1008
1174
|
},
|
1009
1175
|
"domainId": {},
|
1010
1176
|
"environmentActions": {
|
1011
|
-
"shape": "
|
1177
|
+
"shape": "S6s"
|
1012
1178
|
},
|
1013
1179
|
"environmentBlueprintId": {},
|
1014
1180
|
"environmentProfileId": {},
|
1015
1181
|
"glossaryTerms": {
|
1016
|
-
"shape": "
|
1182
|
+
"shape": "S2y"
|
1017
1183
|
},
|
1018
1184
|
"id": {},
|
1019
1185
|
"lastDeployment": {
|
1020
|
-
"shape": "
|
1186
|
+
"shape": "S6y"
|
1021
1187
|
},
|
1022
1188
|
"name": {
|
1023
|
-
"shape": "
|
1189
|
+
"shape": "S74"
|
1024
1190
|
},
|
1025
1191
|
"projectId": {},
|
1026
1192
|
"provider": {},
|
1027
1193
|
"provisionedResources": {
|
1028
|
-
"shape": "
|
1194
|
+
"shape": "S75"
|
1029
1195
|
},
|
1030
1196
|
"provisioningProperties": {
|
1031
|
-
"shape": "
|
1197
|
+
"shape": "S77"
|
1032
1198
|
},
|
1033
1199
|
"status": {},
|
1034
1200
|
"updatedAt": {
|
1035
|
-
"shape": "
|
1201
|
+
"shape": "S6o"
|
1036
1202
|
},
|
1037
1203
|
"userParameters": {
|
1038
|
-
"shape": "
|
1204
|
+
"shape": "S7a"
|
1039
1205
|
}
|
1040
1206
|
}
|
1041
1207
|
}
|
@@ -1065,7 +1231,7 @@
|
|
1065
1231
|
},
|
1066
1232
|
"name": {},
|
1067
1233
|
"parameters": {
|
1068
|
-
"shape": "
|
1234
|
+
"shape": "S7e"
|
1069
1235
|
}
|
1070
1236
|
}
|
1071
1237
|
},
|
@@ -1085,7 +1251,7 @@
|
|
1085
1251
|
"id": {},
|
1086
1252
|
"name": {},
|
1087
1253
|
"parameters": {
|
1088
|
-
"shape": "
|
1254
|
+
"shape": "S7e"
|
1089
1255
|
}
|
1090
1256
|
}
|
1091
1257
|
}
|
@@ -1107,7 +1273,7 @@
|
|
1107
1273
|
"awsAccountId": {},
|
1108
1274
|
"awsAccountRegion": {},
|
1109
1275
|
"description": {
|
1110
|
-
"shape": "
|
1276
|
+
"shape": "Su"
|
1111
1277
|
},
|
1112
1278
|
"domainIdentifier": {
|
1113
1279
|
"location": "uri",
|
@@ -1115,11 +1281,11 @@
|
|
1115
1281
|
},
|
1116
1282
|
"environmentBlueprintIdentifier": {},
|
1117
1283
|
"name": {
|
1118
|
-
"shape": "
|
1284
|
+
"shape": "S7j"
|
1119
1285
|
},
|
1120
1286
|
"projectIdentifier": {},
|
1121
1287
|
"userParameters": {
|
1122
|
-
"shape": "
|
1288
|
+
"shape": "S6j"
|
1123
1289
|
}
|
1124
1290
|
}
|
1125
1291
|
},
|
@@ -1136,24 +1302,24 @@
|
|
1136
1302
|
"awsAccountId": {},
|
1137
1303
|
"awsAccountRegion": {},
|
1138
1304
|
"createdAt": {
|
1139
|
-
"shape": "
|
1305
|
+
"shape": "S6o"
|
1140
1306
|
},
|
1141
1307
|
"createdBy": {},
|
1142
1308
|
"description": {
|
1143
|
-
"shape": "
|
1309
|
+
"shape": "Su"
|
1144
1310
|
},
|
1145
1311
|
"domainId": {},
|
1146
1312
|
"environmentBlueprintId": {},
|
1147
1313
|
"id": {},
|
1148
1314
|
"name": {
|
1149
|
-
"shape": "
|
1315
|
+
"shape": "S7j"
|
1150
1316
|
},
|
1151
1317
|
"projectId": {},
|
1152
1318
|
"updatedAt": {
|
1153
|
-
"shape": "
|
1319
|
+
"shape": "S6o"
|
1154
1320
|
},
|
1155
1321
|
"userParameters": {
|
1156
|
-
"shape": "
|
1322
|
+
"shape": "S7a"
|
1157
1323
|
}
|
1158
1324
|
}
|
1159
1325
|
}
|
@@ -1173,17 +1339,17 @@
|
|
1173
1339
|
],
|
1174
1340
|
"members": {
|
1175
1341
|
"description": {
|
1176
|
-
"shape": "
|
1342
|
+
"shape": "Su"
|
1177
1343
|
},
|
1178
1344
|
"domainIdentifier": {
|
1179
1345
|
"location": "uri",
|
1180
1346
|
"locationName": "domainIdentifier"
|
1181
1347
|
},
|
1182
1348
|
"model": {
|
1183
|
-
"shape": "
|
1349
|
+
"shape": "S7m"
|
1184
1350
|
},
|
1185
1351
|
"name": {
|
1186
|
-
"shape": "
|
1352
|
+
"shape": "S37"
|
1187
1353
|
},
|
1188
1354
|
"owningProjectIdentifier": {},
|
1189
1355
|
"status": {}
|
@@ -1198,11 +1364,11 @@
|
|
1198
1364
|
],
|
1199
1365
|
"members": {
|
1200
1366
|
"description": {
|
1201
|
-
"shape": "
|
1367
|
+
"shape": "Su"
|
1202
1368
|
},
|
1203
1369
|
"domainId": {},
|
1204
1370
|
"name": {
|
1205
|
-
"shape": "
|
1371
|
+
"shape": "S37"
|
1206
1372
|
},
|
1207
1373
|
"originDomainId": {},
|
1208
1374
|
"originProjectId": {},
|
@@ -1228,14 +1394,14 @@
|
|
1228
1394
|
"idempotencyToken": true
|
1229
1395
|
},
|
1230
1396
|
"description": {
|
1231
|
-
"shape": "
|
1397
|
+
"shape": "S7r"
|
1232
1398
|
},
|
1233
1399
|
"domainIdentifier": {
|
1234
1400
|
"location": "uri",
|
1235
1401
|
"locationName": "domainIdentifier"
|
1236
1402
|
},
|
1237
1403
|
"name": {
|
1238
|
-
"shape": "
|
1404
|
+
"shape": "S7s"
|
1239
1405
|
},
|
1240
1406
|
"owningProjectIdentifier": {},
|
1241
1407
|
"status": {}
|
@@ -1251,12 +1417,12 @@
|
|
1251
1417
|
],
|
1252
1418
|
"members": {
|
1253
1419
|
"description": {
|
1254
|
-
"shape": "
|
1420
|
+
"shape": "S7r"
|
1255
1421
|
},
|
1256
1422
|
"domainId": {},
|
1257
1423
|
"id": {},
|
1258
1424
|
"name": {
|
1259
|
-
"shape": "
|
1425
|
+
"shape": "S7s"
|
1260
1426
|
},
|
1261
1427
|
"owningProjectId": {},
|
1262
1428
|
"status": {}
|
@@ -1286,17 +1452,17 @@
|
|
1286
1452
|
},
|
1287
1453
|
"glossaryIdentifier": {},
|
1288
1454
|
"longDescription": {
|
1289
|
-
"shape": "
|
1455
|
+
"shape": "S7x"
|
1290
1456
|
},
|
1291
1457
|
"name": {
|
1292
|
-
"shape": "
|
1458
|
+
"shape": "S13"
|
1293
1459
|
},
|
1294
1460
|
"shortDescription": {
|
1295
|
-
"shape": "
|
1461
|
+
"shape": "S14"
|
1296
1462
|
},
|
1297
1463
|
"status": {},
|
1298
1464
|
"termRelations": {
|
1299
|
-
"shape": "
|
1465
|
+
"shape": "S7z"
|
1300
1466
|
}
|
1301
1467
|
}
|
1302
1468
|
},
|
@@ -1314,17 +1480,17 @@
|
|
1314
1480
|
"glossaryId": {},
|
1315
1481
|
"id": {},
|
1316
1482
|
"longDescription": {
|
1317
|
-
"shape": "
|
1483
|
+
"shape": "S7x"
|
1318
1484
|
},
|
1319
1485
|
"name": {
|
1320
|
-
"shape": "
|
1486
|
+
"shape": "S13"
|
1321
1487
|
},
|
1322
1488
|
"shortDescription": {
|
1323
|
-
"shape": "
|
1489
|
+
"shape": "S14"
|
1324
1490
|
},
|
1325
1491
|
"status": {},
|
1326
1492
|
"termRelations": {
|
1327
|
-
"shape": "
|
1493
|
+
"shape": "S7z"
|
1328
1494
|
}
|
1329
1495
|
}
|
1330
1496
|
},
|
@@ -1357,7 +1523,7 @@
|
|
1357
1523
|
"members": {
|
1358
1524
|
"domainId": {},
|
1359
1525
|
"groupName": {
|
1360
|
-
"shape": "
|
1526
|
+
"shape": "S85"
|
1361
1527
|
},
|
1362
1528
|
"id": {},
|
1363
1529
|
"status": {}
|
@@ -1419,17 +1585,18 @@
|
|
1419
1585
|
],
|
1420
1586
|
"members": {
|
1421
1587
|
"description": {
|
1422
|
-
"shape": "
|
1588
|
+
"shape": "Su"
|
1423
1589
|
},
|
1424
1590
|
"domainIdentifier": {
|
1425
1591
|
"location": "uri",
|
1426
1592
|
"locationName": "domainIdentifier"
|
1427
1593
|
},
|
1594
|
+
"domainUnitId": {},
|
1428
1595
|
"glossaryTerms": {
|
1429
|
-
"shape": "
|
1596
|
+
"shape": "S2y"
|
1430
1597
|
},
|
1431
1598
|
"name": {
|
1432
|
-
"shape": "
|
1599
|
+
"shape": "S1d"
|
1433
1600
|
}
|
1434
1601
|
}
|
1435
1602
|
},
|
@@ -1443,25 +1610,26 @@
|
|
1443
1610
|
],
|
1444
1611
|
"members": {
|
1445
1612
|
"createdAt": {
|
1446
|
-
"shape": "
|
1613
|
+
"shape": "S6o"
|
1447
1614
|
},
|
1448
1615
|
"createdBy": {},
|
1449
1616
|
"description": {
|
1450
|
-
"shape": "
|
1617
|
+
"shape": "Su"
|
1451
1618
|
},
|
1452
1619
|
"domainId": {},
|
1620
|
+
"domainUnitId": {},
|
1453
1621
|
"failureReasons": {
|
1454
|
-
"shape": "
|
1622
|
+
"shape": "S8e"
|
1455
1623
|
},
|
1456
1624
|
"glossaryTerms": {
|
1457
|
-
"shape": "
|
1625
|
+
"shape": "S2y"
|
1458
1626
|
},
|
1459
1627
|
"id": {},
|
1460
1628
|
"lastUpdatedAt": {
|
1461
|
-
"shape": "
|
1629
|
+
"shape": "S6o"
|
1462
1630
|
},
|
1463
1631
|
"name": {
|
1464
|
-
"shape": "
|
1632
|
+
"shape": "S1d"
|
1465
1633
|
},
|
1466
1634
|
"projectStatus": {}
|
1467
1635
|
}
|
@@ -1487,7 +1655,7 @@
|
|
1487
1655
|
"locationName": "domainIdentifier"
|
1488
1656
|
},
|
1489
1657
|
"member": {
|
1490
|
-
"shape": "
|
1658
|
+
"shape": "S8j"
|
1491
1659
|
},
|
1492
1660
|
"projectIdentifier": {
|
1493
1661
|
"location": "uri",
|
@@ -1570,7 +1738,7 @@
|
|
1570
1738
|
],
|
1571
1739
|
"members": {
|
1572
1740
|
"assets": {
|
1573
|
-
"shape": "
|
1741
|
+
"shape": "S8s"
|
1574
1742
|
},
|
1575
1743
|
"createdAt": {
|
1576
1744
|
"type": "timestamp"
|
@@ -1578,7 +1746,7 @@
|
|
1578
1746
|
"createdBy": {},
|
1579
1747
|
"domainId": {},
|
1580
1748
|
"grantedEntity": {
|
1581
|
-
"shape": "
|
1749
|
+
"shape": "S8w"
|
1582
1750
|
},
|
1583
1751
|
"id": {},
|
1584
1752
|
"status": {},
|
@@ -1616,7 +1784,7 @@
|
|
1616
1784
|
"locationName": "domainIdentifier"
|
1617
1785
|
},
|
1618
1786
|
"requestReason": {
|
1619
|
-
"shape": "
|
1787
|
+
"shape": "Sq"
|
1620
1788
|
},
|
1621
1789
|
"subscribedListings": {
|
1622
1790
|
"type": "list",
|
@@ -1666,25 +1834,25 @@
|
|
1666
1834
|
},
|
1667
1835
|
"createdBy": {},
|
1668
1836
|
"decisionComment": {
|
1669
|
-
"shape": "
|
1837
|
+
"shape": "Sl"
|
1670
1838
|
},
|
1671
1839
|
"domainId": {},
|
1672
1840
|
"id": {},
|
1673
1841
|
"requestReason": {
|
1674
|
-
"shape": "
|
1842
|
+
"shape": "Sq"
|
1675
1843
|
},
|
1676
1844
|
"reviewerId": {},
|
1677
1845
|
"status": {},
|
1678
1846
|
"subscribedListings": {
|
1679
1847
|
"type": "list",
|
1680
1848
|
"member": {
|
1681
|
-
"shape": "
|
1849
|
+
"shape": "St"
|
1682
1850
|
}
|
1683
1851
|
},
|
1684
1852
|
"subscribedPrincipals": {
|
1685
1853
|
"type": "list",
|
1686
1854
|
"member": {
|
1687
|
-
"shape": "
|
1855
|
+
"shape": "S1b"
|
1688
1856
|
}
|
1689
1857
|
},
|
1690
1858
|
"updatedAt": {
|
@@ -1713,10 +1881,10 @@
|
|
1713
1881
|
],
|
1714
1882
|
"members": {
|
1715
1883
|
"applicableAssetTypes": {
|
1716
|
-
"shape": "
|
1884
|
+
"shape": "S9a"
|
1717
1885
|
},
|
1718
1886
|
"authorizedPrincipals": {
|
1719
|
-
"shape": "
|
1887
|
+
"shape": "S9b"
|
1720
1888
|
},
|
1721
1889
|
"clientToken": {
|
1722
1890
|
"idempotencyToken": true
|
@@ -1731,11 +1899,11 @@
|
|
1731
1899
|
},
|
1732
1900
|
"manageAccessRole": {},
|
1733
1901
|
"name": {
|
1734
|
-
"shape": "
|
1902
|
+
"shape": "S9d"
|
1735
1903
|
},
|
1736
1904
|
"provider": {},
|
1737
1905
|
"subscriptionTargetConfig": {
|
1738
|
-
"shape": "
|
1906
|
+
"shape": "S9e"
|
1739
1907
|
},
|
1740
1908
|
"type": {}
|
1741
1909
|
}
|
@@ -1759,10 +1927,10 @@
|
|
1759
1927
|
],
|
1760
1928
|
"members": {
|
1761
1929
|
"applicableAssetTypes": {
|
1762
|
-
"shape": "
|
1930
|
+
"shape": "S9a"
|
1763
1931
|
},
|
1764
1932
|
"authorizedPrincipals": {
|
1765
|
-
"shape": "
|
1933
|
+
"shape": "S9b"
|
1766
1934
|
},
|
1767
1935
|
"createdAt": {
|
1768
1936
|
"type": "timestamp"
|
@@ -1773,12 +1941,12 @@
|
|
1773
1941
|
"id": {},
|
1774
1942
|
"manageAccessRole": {},
|
1775
1943
|
"name": {
|
1776
|
-
"shape": "
|
1944
|
+
"shape": "S9d"
|
1777
1945
|
},
|
1778
1946
|
"projectId": {},
|
1779
1947
|
"provider": {},
|
1780
1948
|
"subscriptionTargetConfig": {
|
1781
|
-
"shape": "
|
1949
|
+
"shape": "S9e"
|
1782
1950
|
},
|
1783
1951
|
"type": {},
|
1784
1952
|
"updatedAt": {
|
@@ -1815,7 +1983,7 @@
|
|
1815
1983
|
"type": "structure",
|
1816
1984
|
"members": {
|
1817
1985
|
"details": {
|
1818
|
-
"shape": "
|
1986
|
+
"shape": "S9k"
|
1819
1987
|
},
|
1820
1988
|
"domainId": {},
|
1821
1989
|
"id": {},
|
@@ -1985,33 +2153,33 @@
|
|
1985
2153
|
],
|
1986
2154
|
"members": {
|
1987
2155
|
"assetFormsOutput": {
|
1988
|
-
"shape": "
|
2156
|
+
"shape": "S35"
|
1989
2157
|
},
|
1990
2158
|
"configuration": {
|
1991
|
-
"shape": "
|
2159
|
+
"shape": "S5i"
|
1992
2160
|
},
|
1993
2161
|
"createdAt": {
|
1994
|
-
"shape": "
|
2162
|
+
"shape": "S5r"
|
1995
2163
|
},
|
1996
2164
|
"description": {
|
1997
|
-
"shape": "
|
2165
|
+
"shape": "Su"
|
1998
2166
|
},
|
1999
2167
|
"domainId": {},
|
2000
2168
|
"enableSetting": {},
|
2001
2169
|
"environmentId": {},
|
2002
2170
|
"errorMessage": {
|
2003
|
-
"shape": "
|
2171
|
+
"shape": "S5s"
|
2004
2172
|
},
|
2005
2173
|
"id": {},
|
2006
2174
|
"lastRunAt": {
|
2007
|
-
"shape": "
|
2175
|
+
"shape": "S5r"
|
2008
2176
|
},
|
2009
2177
|
"lastRunErrorMessage": {
|
2010
|
-
"shape": "
|
2178
|
+
"shape": "S5s"
|
2011
2179
|
},
|
2012
2180
|
"lastRunStatus": {},
|
2013
2181
|
"name": {
|
2014
|
-
"shape": "
|
2182
|
+
"shape": "S5b"
|
2015
2183
|
},
|
2016
2184
|
"projectId": {},
|
2017
2185
|
"publishOnImport": {
|
@@ -2021,15 +2189,15 @@
|
|
2021
2189
|
"type": "boolean"
|
2022
2190
|
},
|
2023
2191
|
"schedule": {
|
2024
|
-
"shape": "
|
2192
|
+
"shape": "S5d"
|
2025
2193
|
},
|
2026
2194
|
"selfGrantStatus": {
|
2027
|
-
"shape": "
|
2195
|
+
"shape": "Sa2"
|
2028
2196
|
},
|
2029
2197
|
"status": {},
|
2030
2198
|
"type": {},
|
2031
2199
|
"updatedAt": {
|
2032
|
-
"shape": "
|
2200
|
+
"shape": "S5r"
|
2033
2201
|
}
|
2034
2202
|
}
|
2035
2203
|
},
|
@@ -2074,6 +2242,35 @@
|
|
2074
2242
|
},
|
2075
2243
|
"idempotent": true
|
2076
2244
|
},
|
2245
|
+
"DeleteDomainUnit": {
|
2246
|
+
"http": {
|
2247
|
+
"method": "DELETE",
|
2248
|
+
"requestUri": "/v2/domains/{domainIdentifier}/domain-units/{identifier}",
|
2249
|
+
"responseCode": 204
|
2250
|
+
},
|
2251
|
+
"input": {
|
2252
|
+
"type": "structure",
|
2253
|
+
"required": [
|
2254
|
+
"domainIdentifier",
|
2255
|
+
"identifier"
|
2256
|
+
],
|
2257
|
+
"members": {
|
2258
|
+
"domainIdentifier": {
|
2259
|
+
"location": "uri",
|
2260
|
+
"locationName": "domainIdentifier"
|
2261
|
+
},
|
2262
|
+
"identifier": {
|
2263
|
+
"location": "uri",
|
2264
|
+
"locationName": "identifier"
|
2265
|
+
}
|
2266
|
+
}
|
2267
|
+
},
|
2268
|
+
"output": {
|
2269
|
+
"type": "structure",
|
2270
|
+
"members": {}
|
2271
|
+
},
|
2272
|
+
"idempotent": true
|
2273
|
+
},
|
2077
2274
|
"DeleteEnvironment": {
|
2078
2275
|
"http": {
|
2079
2276
|
"method": "DELETE",
|
@@ -2350,7 +2547,7 @@
|
|
2350
2547
|
"locationName": "domainIdentifier"
|
2351
2548
|
},
|
2352
2549
|
"member": {
|
2353
|
-
"shape": "
|
2550
|
+
"shape": "S8j"
|
2354
2551
|
},
|
2355
2552
|
"projectIdentifier": {
|
2356
2553
|
"location": "uri",
|
@@ -2401,7 +2598,7 @@
|
|
2401
2598
|
],
|
2402
2599
|
"members": {
|
2403
2600
|
"assets": {
|
2404
|
-
"shape": "
|
2601
|
+
"shape": "S8s"
|
2405
2602
|
},
|
2406
2603
|
"createdAt": {
|
2407
2604
|
"type": "timestamp"
|
@@ -2409,7 +2606,7 @@
|
|
2409
2606
|
"createdBy": {},
|
2410
2607
|
"domainId": {},
|
2411
2608
|
"grantedEntity": {
|
2412
|
-
"shape": "
|
2609
|
+
"shape": "S8w"
|
2413
2610
|
},
|
2414
2611
|
"id": {},
|
2415
2612
|
"status": {},
|
@@ -2600,35 +2797,35 @@
|
|
2600
2797
|
},
|
2601
2798
|
"createdBy": {},
|
2602
2799
|
"description": {
|
2603
|
-
"shape": "
|
2800
|
+
"shape": "Su"
|
2604
2801
|
},
|
2605
2802
|
"domainId": {},
|
2606
2803
|
"externalIdentifier": {
|
2607
|
-
"shape": "
|
2804
|
+
"shape": "S2s"
|
2608
2805
|
},
|
2609
2806
|
"firstRevisionCreatedAt": {
|
2610
2807
|
"type": "timestamp"
|
2611
2808
|
},
|
2612
2809
|
"firstRevisionCreatedBy": {},
|
2613
2810
|
"formsOutput": {
|
2614
|
-
"shape": "
|
2811
|
+
"shape": "S35"
|
2615
2812
|
},
|
2616
2813
|
"glossaryTerms": {
|
2617
|
-
"shape": "
|
2814
|
+
"shape": "S2y"
|
2618
2815
|
},
|
2619
2816
|
"id": {},
|
2620
2817
|
"latestTimeSeriesDataPointFormsOutput": {
|
2621
|
-
"shape": "
|
2818
|
+
"shape": "S38"
|
2622
2819
|
},
|
2623
2820
|
"listing": {
|
2624
|
-
"shape": "
|
2821
|
+
"shape": "S3e"
|
2625
2822
|
},
|
2626
2823
|
"name": {
|
2627
|
-
"shape": "
|
2824
|
+
"shape": "S30"
|
2628
2825
|
},
|
2629
2826
|
"owningProjectId": {},
|
2630
2827
|
"readOnlyFormsOutput": {
|
2631
|
-
"shape": "
|
2828
|
+
"shape": "S35"
|
2632
2829
|
},
|
2633
2830
|
"revision": {},
|
2634
2831
|
"typeIdentifier": {},
|
@@ -2676,23 +2873,23 @@
|
|
2676
2873
|
"members": {
|
2677
2874
|
"assetId": {},
|
2678
2875
|
"configuration": {
|
2679
|
-
"shape": "
|
2876
|
+
"shape": "S3h"
|
2680
2877
|
},
|
2681
2878
|
"createdAt": {
|
2682
2879
|
"type": "timestamp"
|
2683
2880
|
},
|
2684
2881
|
"description": {
|
2685
|
-
"shape": "
|
2882
|
+
"shape": "Su"
|
2686
2883
|
},
|
2687
2884
|
"domainId": {},
|
2688
2885
|
"effectiveColumnNames": {
|
2689
|
-
"shape": "
|
2886
|
+
"shape": "S3j"
|
2690
2887
|
},
|
2691
2888
|
"effectiveRowFilter": {},
|
2692
2889
|
"errorMessage": {},
|
2693
2890
|
"id": {},
|
2694
2891
|
"name": {
|
2695
|
-
"shape": "
|
2892
|
+
"shape": "S41"
|
2696
2893
|
},
|
2697
2894
|
"status": {}
|
2698
2895
|
}
|
@@ -2740,11 +2937,11 @@
|
|
2740
2937
|
},
|
2741
2938
|
"createdBy": {},
|
2742
2939
|
"description": {
|
2743
|
-
"shape": "
|
2940
|
+
"shape": "Su"
|
2744
2941
|
},
|
2745
2942
|
"domainId": {},
|
2746
2943
|
"formsOutput": {
|
2747
|
-
"shape": "
|
2944
|
+
"shape": "S4a"
|
2748
2945
|
},
|
2749
2946
|
"name": {},
|
2750
2947
|
"originDomainId": {},
|
@@ -2801,7 +2998,7 @@
|
|
2801
2998
|
},
|
2802
2999
|
"createdBy": {},
|
2803
3000
|
"description": {
|
2804
|
-
"shape": "
|
3001
|
+
"shape": "S4d"
|
2805
3002
|
},
|
2806
3003
|
"domainId": {},
|
2807
3004
|
"firstRevisionCreatedAt": {
|
@@ -2809,17 +3006,17 @@
|
|
2809
3006
|
},
|
2810
3007
|
"firstRevisionCreatedBy": {},
|
2811
3008
|
"formsOutput": {
|
2812
|
-
"shape": "
|
3009
|
+
"shape": "S35"
|
2813
3010
|
},
|
2814
3011
|
"glossaryTerms": {
|
2815
|
-
"shape": "
|
3012
|
+
"shape": "S2y"
|
2816
3013
|
},
|
2817
3014
|
"id": {},
|
2818
3015
|
"items": {
|
2819
|
-
"shape": "
|
3016
|
+
"shape": "S4e"
|
2820
3017
|
},
|
2821
3018
|
"name": {
|
2822
|
-
"shape": "
|
3019
|
+
"shape": "S4j"
|
2823
3020
|
},
|
2824
3021
|
"owningProjectId": {},
|
2825
3022
|
"revision": {},
|
@@ -2861,54 +3058,54 @@
|
|
2861
3058
|
],
|
2862
3059
|
"members": {
|
2863
3060
|
"assetFormsOutput": {
|
2864
|
-
"shape": "
|
3061
|
+
"shape": "S35"
|
2865
3062
|
},
|
2866
3063
|
"configuration": {
|
2867
|
-
"shape": "
|
3064
|
+
"shape": "S5i"
|
2868
3065
|
},
|
2869
3066
|
"createdAt": {
|
2870
|
-
"shape": "
|
3067
|
+
"shape": "S5r"
|
2871
3068
|
},
|
2872
3069
|
"description": {
|
2873
|
-
"shape": "
|
3070
|
+
"shape": "Su"
|
2874
3071
|
},
|
2875
3072
|
"domainId": {},
|
2876
3073
|
"enableSetting": {},
|
2877
3074
|
"environmentId": {},
|
2878
3075
|
"errorMessage": {
|
2879
|
-
"shape": "
|
3076
|
+
"shape": "S5s"
|
2880
3077
|
},
|
2881
3078
|
"id": {},
|
2882
3079
|
"lastRunAssetCount": {
|
2883
3080
|
"type": "integer"
|
2884
3081
|
},
|
2885
3082
|
"lastRunAt": {
|
2886
|
-
"shape": "
|
3083
|
+
"shape": "S5r"
|
2887
3084
|
},
|
2888
3085
|
"lastRunErrorMessage": {
|
2889
|
-
"shape": "
|
3086
|
+
"shape": "S5s"
|
2890
3087
|
},
|
2891
3088
|
"lastRunStatus": {},
|
2892
3089
|
"name": {
|
2893
|
-
"shape": "
|
3090
|
+
"shape": "S5b"
|
2894
3091
|
},
|
2895
3092
|
"projectId": {},
|
2896
3093
|
"publishOnImport": {
|
2897
3094
|
"type": "boolean"
|
2898
3095
|
},
|
2899
3096
|
"recommendation": {
|
2900
|
-
"shape": "
|
3097
|
+
"shape": "S5c"
|
2901
3098
|
},
|
2902
3099
|
"schedule": {
|
2903
|
-
"shape": "
|
3100
|
+
"shape": "S5d"
|
2904
3101
|
},
|
2905
3102
|
"selfGrantStatus": {
|
2906
|
-
"shape": "
|
3103
|
+
"shape": "Sa2"
|
2907
3104
|
},
|
2908
3105
|
"status": {},
|
2909
3106
|
"type": {},
|
2910
3107
|
"updatedAt": {
|
2911
|
-
"shape": "
|
3108
|
+
"shape": "S5r"
|
2912
3109
|
}
|
2913
3110
|
}
|
2914
3111
|
}
|
@@ -2950,29 +3147,29 @@
|
|
2950
3147
|
],
|
2951
3148
|
"members": {
|
2952
3149
|
"createdAt": {
|
2953
|
-
"shape": "
|
3150
|
+
"shape": "S5r"
|
2954
3151
|
},
|
2955
3152
|
"dataSourceConfigurationSnapshot": {},
|
2956
3153
|
"dataSourceId": {},
|
2957
3154
|
"domainId": {},
|
2958
3155
|
"errorMessage": {
|
2959
|
-
"shape": "
|
3156
|
+
"shape": "S5s"
|
2960
3157
|
},
|
2961
3158
|
"id": {},
|
2962
3159
|
"projectId": {},
|
2963
3160
|
"runStatisticsForAssets": {
|
2964
|
-
"shape": "
|
3161
|
+
"shape": "Sbh"
|
2965
3162
|
},
|
2966
3163
|
"startedAt": {
|
2967
|
-
"shape": "
|
3164
|
+
"shape": "S5r"
|
2968
3165
|
},
|
2969
3166
|
"status": {},
|
2970
3167
|
"stoppedAt": {
|
2971
|
-
"shape": "
|
3168
|
+
"shape": "S5r"
|
2972
3169
|
},
|
2973
3170
|
"type": {},
|
2974
3171
|
"updatedAt": {
|
2975
|
-
"shape": "
|
3172
|
+
"shape": "S5r"
|
2976
3173
|
}
|
2977
3174
|
}
|
2978
3175
|
}
|
@@ -3016,20 +3213,21 @@
|
|
3016
3213
|
},
|
3017
3214
|
"name": {},
|
3018
3215
|
"portalUrl": {},
|
3216
|
+
"rootDomainUnitId": {},
|
3019
3217
|
"singleSignOn": {
|
3020
|
-
"shape": "
|
3218
|
+
"shape": "S60"
|
3021
3219
|
},
|
3022
3220
|
"status": {},
|
3023
3221
|
"tags": {
|
3024
|
-
"shape": "
|
3222
|
+
"shape": "S63"
|
3025
3223
|
}
|
3026
3224
|
}
|
3027
3225
|
}
|
3028
3226
|
},
|
3029
|
-
"
|
3227
|
+
"GetDomainUnit": {
|
3030
3228
|
"http": {
|
3031
3229
|
"method": "GET",
|
3032
|
-
"requestUri": "/v2/domains/{domainIdentifier}/
|
3230
|
+
"requestUri": "/v2/domains/{domainIdentifier}/domain-units/{identifier}",
|
3033
3231
|
"responseCode": 200
|
3034
3232
|
},
|
3035
3233
|
"input": {
|
@@ -3052,55 +3250,110 @@
|
|
3052
3250
|
"output": {
|
3053
3251
|
"type": "structure",
|
3054
3252
|
"required": [
|
3055
|
-
"createdBy",
|
3056
3253
|
"domainId",
|
3254
|
+
"id",
|
3057
3255
|
"name",
|
3058
|
-
"
|
3059
|
-
"provider"
|
3256
|
+
"owners"
|
3060
3257
|
],
|
3061
3258
|
"members": {
|
3062
|
-
"awsAccountId": {},
|
3063
|
-
"awsAccountRegion": {},
|
3064
3259
|
"createdAt": {
|
3065
|
-
"
|
3260
|
+
"type": "timestamp"
|
3066
3261
|
},
|
3067
3262
|
"createdBy": {},
|
3068
|
-
"deploymentProperties": {
|
3069
|
-
"shape": "S5c"
|
3070
|
-
},
|
3071
3263
|
"description": {
|
3072
|
-
"shape": "
|
3264
|
+
"shape": "S69"
|
3073
3265
|
},
|
3074
3266
|
"domainId": {},
|
3075
|
-
"
|
3076
|
-
|
3267
|
+
"id": {},
|
3268
|
+
"lastUpdatedAt": {
|
3269
|
+
"type": "timestamp"
|
3270
|
+
},
|
3271
|
+
"lastUpdatedBy": {},
|
3272
|
+
"name": {
|
3273
|
+
"shape": "S6a"
|
3274
|
+
},
|
3275
|
+
"owners": {
|
3276
|
+
"shape": "S6d"
|
3277
|
+
},
|
3278
|
+
"parentDomainUnitId": {}
|
3279
|
+
}
|
3280
|
+
}
|
3281
|
+
},
|
3282
|
+
"GetEnvironment": {
|
3283
|
+
"http": {
|
3284
|
+
"method": "GET",
|
3285
|
+
"requestUri": "/v2/domains/{domainIdentifier}/environments/{identifier}",
|
3286
|
+
"responseCode": 200
|
3287
|
+
},
|
3288
|
+
"input": {
|
3289
|
+
"type": "structure",
|
3290
|
+
"required": [
|
3291
|
+
"domainIdentifier",
|
3292
|
+
"identifier"
|
3293
|
+
],
|
3294
|
+
"members": {
|
3295
|
+
"domainIdentifier": {
|
3296
|
+
"location": "uri",
|
3297
|
+
"locationName": "domainIdentifier"
|
3298
|
+
},
|
3299
|
+
"identifier": {
|
3300
|
+
"location": "uri",
|
3301
|
+
"locationName": "identifier"
|
3302
|
+
}
|
3303
|
+
}
|
3304
|
+
},
|
3305
|
+
"output": {
|
3306
|
+
"type": "structure",
|
3307
|
+
"required": [
|
3308
|
+
"createdBy",
|
3309
|
+
"domainId",
|
3310
|
+
"name",
|
3311
|
+
"projectId",
|
3312
|
+
"provider"
|
3313
|
+
],
|
3314
|
+
"members": {
|
3315
|
+
"awsAccountId": {},
|
3316
|
+
"awsAccountRegion": {},
|
3317
|
+
"createdAt": {
|
3318
|
+
"shape": "S6o"
|
3319
|
+
},
|
3320
|
+
"createdBy": {},
|
3321
|
+
"deploymentProperties": {
|
3322
|
+
"shape": "S6p"
|
3323
|
+
},
|
3324
|
+
"description": {
|
3325
|
+
"shape": "Su"
|
3326
|
+
},
|
3327
|
+
"domainId": {},
|
3328
|
+
"environmentActions": {
|
3329
|
+
"shape": "S6s"
|
3077
3330
|
},
|
3078
3331
|
"environmentBlueprintId": {},
|
3079
3332
|
"environmentProfileId": {},
|
3080
3333
|
"glossaryTerms": {
|
3081
|
-
"shape": "
|
3334
|
+
"shape": "S2y"
|
3082
3335
|
},
|
3083
3336
|
"id": {},
|
3084
3337
|
"lastDeployment": {
|
3085
|
-
"shape": "
|
3338
|
+
"shape": "S6y"
|
3086
3339
|
},
|
3087
3340
|
"name": {
|
3088
|
-
"shape": "
|
3341
|
+
"shape": "S74"
|
3089
3342
|
},
|
3090
3343
|
"projectId": {},
|
3091
3344
|
"provider": {},
|
3092
3345
|
"provisionedResources": {
|
3093
|
-
"shape": "
|
3346
|
+
"shape": "S75"
|
3094
3347
|
},
|
3095
3348
|
"provisioningProperties": {
|
3096
|
-
"shape": "
|
3349
|
+
"shape": "S77"
|
3097
3350
|
},
|
3098
3351
|
"status": {},
|
3099
3352
|
"updatedAt": {
|
3100
|
-
"shape": "
|
3353
|
+
"shape": "S6o"
|
3101
3354
|
},
|
3102
3355
|
"userParameters": {
|
3103
|
-
"shape": "
|
3356
|
+
"shape": "S7a"
|
3104
3357
|
}
|
3105
3358
|
}
|
3106
3359
|
}
|
@@ -3149,7 +3402,7 @@
|
|
3149
3402
|
"id": {},
|
3150
3403
|
"name": {},
|
3151
3404
|
"parameters": {
|
3152
|
-
"shape": "
|
3405
|
+
"shape": "S7e"
|
3153
3406
|
}
|
3154
3407
|
}
|
3155
3408
|
}
|
@@ -3187,28 +3440,28 @@
|
|
3187
3440
|
],
|
3188
3441
|
"members": {
|
3189
3442
|
"createdAt": {
|
3190
|
-
"shape": "
|
3443
|
+
"shape": "S6o"
|
3191
3444
|
},
|
3192
3445
|
"deploymentProperties": {
|
3193
|
-
"shape": "
|
3446
|
+
"shape": "S6p"
|
3194
3447
|
},
|
3195
3448
|
"description": {
|
3196
|
-
"shape": "
|
3449
|
+
"shape": "Su"
|
3197
3450
|
},
|
3198
3451
|
"glossaryTerms": {
|
3199
|
-
"shape": "
|
3452
|
+
"shape": "S2y"
|
3200
3453
|
},
|
3201
3454
|
"id": {},
|
3202
3455
|
"name": {},
|
3203
3456
|
"provider": {},
|
3204
3457
|
"provisioningProperties": {
|
3205
|
-
"shape": "
|
3458
|
+
"shape": "S77"
|
3206
3459
|
},
|
3207
3460
|
"updatedAt": {
|
3208
|
-
"shape": "
|
3461
|
+
"shape": "S6o"
|
3209
3462
|
},
|
3210
3463
|
"userParameters": {
|
3211
|
-
"shape": "
|
3464
|
+
"shape": "S7a"
|
3212
3465
|
}
|
3213
3466
|
}
|
3214
3467
|
}
|
@@ -3244,23 +3497,23 @@
|
|
3244
3497
|
],
|
3245
3498
|
"members": {
|
3246
3499
|
"createdAt": {
|
3247
|
-
"shape": "
|
3500
|
+
"shape": "S6o"
|
3248
3501
|
},
|
3249
3502
|
"domainId": {},
|
3250
3503
|
"enabledRegions": {
|
3251
|
-
"shape": "
|
3504
|
+
"shape": "Sbw"
|
3252
3505
|
},
|
3253
3506
|
"environmentBlueprintId": {},
|
3254
3507
|
"manageAccessRoleArn": {},
|
3255
3508
|
"provisioningConfigurations": {
|
3256
|
-
"shape": "
|
3509
|
+
"shape": "Sby"
|
3257
3510
|
},
|
3258
3511
|
"provisioningRoleArn": {},
|
3259
3512
|
"regionalParameters": {
|
3260
|
-
"shape": "
|
3513
|
+
"shape": "Sc3"
|
3261
3514
|
},
|
3262
3515
|
"updatedAt": {
|
3263
|
-
"shape": "
|
3516
|
+
"shape": "S6o"
|
3264
3517
|
}
|
3265
3518
|
}
|
3266
3519
|
}
|
@@ -3293,7 +3546,7 @@
|
|
3293
3546
|
"members": {
|
3294
3547
|
"accessKeyId": {},
|
3295
3548
|
"expiration": {
|
3296
|
-
"shape": "
|
3549
|
+
"shape": "S6o"
|
3297
3550
|
},
|
3298
3551
|
"secretAccessKey": {},
|
3299
3552
|
"sessionToken": {}
|
@@ -3337,24 +3590,24 @@
|
|
3337
3590
|
"awsAccountId": {},
|
3338
3591
|
"awsAccountRegion": {},
|
3339
3592
|
"createdAt": {
|
3340
|
-
"shape": "
|
3593
|
+
"shape": "S6o"
|
3341
3594
|
},
|
3342
3595
|
"createdBy": {},
|
3343
3596
|
"description": {
|
3344
|
-
"shape": "
|
3597
|
+
"shape": "Su"
|
3345
3598
|
},
|
3346
3599
|
"domainId": {},
|
3347
3600
|
"environmentBlueprintId": {},
|
3348
3601
|
"id": {},
|
3349
3602
|
"name": {
|
3350
|
-
"shape": "
|
3603
|
+
"shape": "S7j"
|
3351
3604
|
},
|
3352
3605
|
"projectId": {},
|
3353
3606
|
"updatedAt": {
|
3354
|
-
"shape": "
|
3607
|
+
"shape": "S6o"
|
3355
3608
|
},
|
3356
3609
|
"userParameters": {
|
3357
|
-
"shape": "
|
3610
|
+
"shape": "S7a"
|
3358
3611
|
}
|
3359
3612
|
}
|
3360
3613
|
}
|
@@ -3400,17 +3653,17 @@
|
|
3400
3653
|
},
|
3401
3654
|
"createdBy": {},
|
3402
3655
|
"description": {
|
3403
|
-
"shape": "
|
3656
|
+
"shape": "Su"
|
3404
3657
|
},
|
3405
3658
|
"domainId": {},
|
3406
3659
|
"imports": {
|
3407
|
-
"shape": "
|
3660
|
+
"shape": "Scb"
|
3408
3661
|
},
|
3409
3662
|
"model": {
|
3410
|
-
"shape": "
|
3663
|
+
"shape": "S7m"
|
3411
3664
|
},
|
3412
3665
|
"name": {
|
3413
|
-
"shape": "
|
3666
|
+
"shape": "S37"
|
3414
3667
|
},
|
3415
3668
|
"originDomainId": {},
|
3416
3669
|
"originProjectId": {},
|
@@ -3458,12 +3711,12 @@
|
|
3458
3711
|
},
|
3459
3712
|
"createdBy": {},
|
3460
3713
|
"description": {
|
3461
|
-
"shape": "
|
3714
|
+
"shape": "S7r"
|
3462
3715
|
},
|
3463
3716
|
"domainId": {},
|
3464
3717
|
"id": {},
|
3465
3718
|
"name": {
|
3466
|
-
"shape": "
|
3719
|
+
"shape": "S7s"
|
3467
3720
|
},
|
3468
3721
|
"owningProjectId": {},
|
3469
3722
|
"status": {},
|
@@ -3515,17 +3768,17 @@
|
|
3515
3768
|
"glossaryId": {},
|
3516
3769
|
"id": {},
|
3517
3770
|
"longDescription": {
|
3518
|
-
"shape": "
|
3771
|
+
"shape": "S7x"
|
3519
3772
|
},
|
3520
3773
|
"name": {
|
3521
|
-
"shape": "
|
3774
|
+
"shape": "S13"
|
3522
3775
|
},
|
3523
3776
|
"shortDescription": {
|
3524
|
-
"shape": "
|
3777
|
+
"shape": "S14"
|
3525
3778
|
},
|
3526
3779
|
"status": {},
|
3527
3780
|
"termRelations": {
|
3528
|
-
"shape": "
|
3781
|
+
"shape": "S7z"
|
3529
3782
|
},
|
3530
3783
|
"updatedAt": {
|
3531
3784
|
"type": "timestamp"
|
@@ -3562,7 +3815,7 @@
|
|
3562
3815
|
"members": {
|
3563
3816
|
"domainId": {},
|
3564
3817
|
"groupName": {
|
3565
|
-
"shape": "
|
3818
|
+
"shape": "S85"
|
3566
3819
|
},
|
3567
3820
|
"id": {},
|
3568
3821
|
"status": {}
|
@@ -3640,13 +3893,13 @@
|
|
3640
3893
|
"description": {},
|
3641
3894
|
"domainId": {},
|
3642
3895
|
"downstreamNodes": {
|
3643
|
-
"shape": "
|
3896
|
+
"shape": "Sco"
|
3644
3897
|
},
|
3645
3898
|
"eventTimestamp": {
|
3646
3899
|
"type": "timestamp"
|
3647
3900
|
},
|
3648
3901
|
"formsOutput": {
|
3649
|
-
"shape": "
|
3902
|
+
"shape": "S35"
|
3650
3903
|
},
|
3651
3904
|
"id": {},
|
3652
3905
|
"name": {},
|
@@ -3658,7 +3911,7 @@
|
|
3658
3911
|
},
|
3659
3912
|
"updatedBy": {},
|
3660
3913
|
"upstreamNodes": {
|
3661
|
-
"shape": "
|
3914
|
+
"shape": "Sco"
|
3662
3915
|
}
|
3663
3916
|
}
|
3664
3917
|
}
|
@@ -3703,7 +3956,7 @@
|
|
3703
3956
|
},
|
3704
3957
|
"createdBy": {},
|
3705
3958
|
"description": {
|
3706
|
-
"shape": "
|
3959
|
+
"shape": "Su"
|
3707
3960
|
},
|
3708
3961
|
"domainId": {},
|
3709
3962
|
"id": {},
|
@@ -3721,10 +3974,10 @@
|
|
3721
3974
|
},
|
3722
3975
|
"forms": {},
|
3723
3976
|
"glossaryTerms": {
|
3724
|
-
"shape": "
|
3977
|
+
"shape": "S11"
|
3725
3978
|
},
|
3726
3979
|
"latestTimeSeriesDataPointForms": {
|
3727
|
-
"shape": "
|
3980
|
+
"shape": "S38"
|
3728
3981
|
},
|
3729
3982
|
"owningProjectId": {}
|
3730
3983
|
}
|
@@ -3739,7 +3992,7 @@
|
|
3739
3992
|
"dataProductRevision": {},
|
3740
3993
|
"forms": {},
|
3741
3994
|
"glossaryTerms": {
|
3742
|
-
"shape": "
|
3995
|
+
"shape": "S11"
|
3743
3996
|
},
|
3744
3997
|
"items": {
|
3745
3998
|
"type": "list",
|
@@ -3747,7 +4000,7 @@
|
|
3747
4000
|
"type": "structure",
|
3748
4001
|
"members": {
|
3749
4002
|
"glossaryTerms": {
|
3750
|
-
"shape": "
|
4003
|
+
"shape": "S11"
|
3751
4004
|
},
|
3752
4005
|
"listingId": {},
|
3753
4006
|
"listingRevision": {}
|
@@ -3810,7 +4063,7 @@
|
|
3810
4063
|
"owningProjectId": {},
|
3811
4064
|
"status": {},
|
3812
4065
|
"target": {
|
3813
|
-
"shape": "
|
4066
|
+
"shape": "Sd1"
|
3814
4067
|
},
|
3815
4068
|
"type": {}
|
3816
4069
|
}
|
@@ -3849,25 +4102,26 @@
|
|
3849
4102
|
],
|
3850
4103
|
"members": {
|
3851
4104
|
"createdAt": {
|
3852
|
-
"shape": "
|
4105
|
+
"shape": "S6o"
|
3853
4106
|
},
|
3854
4107
|
"createdBy": {},
|
3855
4108
|
"description": {
|
3856
|
-
"shape": "
|
4109
|
+
"shape": "Su"
|
3857
4110
|
},
|
3858
4111
|
"domainId": {},
|
4112
|
+
"domainUnitId": {},
|
3859
4113
|
"failureReasons": {
|
3860
|
-
"shape": "
|
4114
|
+
"shape": "S8e"
|
3861
4115
|
},
|
3862
4116
|
"glossaryTerms": {
|
3863
|
-
"shape": "
|
4117
|
+
"shape": "S2y"
|
3864
4118
|
},
|
3865
4119
|
"id": {},
|
3866
4120
|
"lastUpdatedAt": {
|
3867
|
-
"shape": "
|
4121
|
+
"shape": "S6o"
|
3868
4122
|
},
|
3869
4123
|
"name": {
|
3870
|
-
"shape": "
|
4124
|
+
"shape": "S1d"
|
3871
4125
|
},
|
3872
4126
|
"projectStatus": {}
|
3873
4127
|
}
|
@@ -3920,10 +4174,10 @@
|
|
3920
4174
|
},
|
3921
4175
|
"status": {},
|
3922
4176
|
"subscribedListing": {
|
3923
|
-
"shape": "
|
4177
|
+
"shape": "St"
|
3924
4178
|
},
|
3925
4179
|
"subscribedPrincipal": {
|
3926
|
-
"shape": "
|
4180
|
+
"shape": "S1b"
|
3927
4181
|
},
|
3928
4182
|
"subscriptionRequestId": {},
|
3929
4183
|
"updatedAt": {
|
@@ -3970,7 +4224,7 @@
|
|
3970
4224
|
],
|
3971
4225
|
"members": {
|
3972
4226
|
"assets": {
|
3973
|
-
"shape": "
|
4227
|
+
"shape": "S8s"
|
3974
4228
|
},
|
3975
4229
|
"createdAt": {
|
3976
4230
|
"type": "timestamp"
|
@@ -3978,7 +4232,7 @@
|
|
3978
4232
|
"createdBy": {},
|
3979
4233
|
"domainId": {},
|
3980
4234
|
"grantedEntity": {
|
3981
|
-
"shape": "
|
4235
|
+
"shape": "S8w"
|
3982
4236
|
},
|
3983
4237
|
"id": {},
|
3984
4238
|
"status": {},
|
@@ -4036,25 +4290,25 @@
|
|
4036
4290
|
},
|
4037
4291
|
"createdBy": {},
|
4038
4292
|
"decisionComment": {
|
4039
|
-
"shape": "
|
4293
|
+
"shape": "Sl"
|
4040
4294
|
},
|
4041
4295
|
"domainId": {},
|
4042
4296
|
"id": {},
|
4043
4297
|
"requestReason": {
|
4044
|
-
"shape": "
|
4298
|
+
"shape": "Sq"
|
4045
4299
|
},
|
4046
4300
|
"reviewerId": {},
|
4047
4301
|
"status": {},
|
4048
4302
|
"subscribedListings": {
|
4049
4303
|
"type": "list",
|
4050
4304
|
"member": {
|
4051
|
-
"shape": "
|
4305
|
+
"shape": "St"
|
4052
4306
|
}
|
4053
4307
|
},
|
4054
4308
|
"subscribedPrincipals": {
|
4055
4309
|
"type": "list",
|
4056
4310
|
"member": {
|
4057
|
-
"shape": "
|
4311
|
+
"shape": "S1b"
|
4058
4312
|
}
|
4059
4313
|
},
|
4060
4314
|
"updatedAt": {
|
@@ -4111,10 +4365,10 @@
|
|
4111
4365
|
],
|
4112
4366
|
"members": {
|
4113
4367
|
"applicableAssetTypes": {
|
4114
|
-
"shape": "
|
4368
|
+
"shape": "S9a"
|
4115
4369
|
},
|
4116
4370
|
"authorizedPrincipals": {
|
4117
|
-
"shape": "
|
4371
|
+
"shape": "S9b"
|
4118
4372
|
},
|
4119
4373
|
"createdAt": {
|
4120
4374
|
"type": "timestamp"
|
@@ -4125,12 +4379,12 @@
|
|
4125
4379
|
"id": {},
|
4126
4380
|
"manageAccessRole": {},
|
4127
4381
|
"name": {
|
4128
|
-
"shape": "
|
4382
|
+
"shape": "S9d"
|
4129
4383
|
},
|
4130
4384
|
"projectId": {},
|
4131
4385
|
"provider": {},
|
4132
4386
|
"subscriptionTargetConfig": {
|
4133
|
-
"shape": "
|
4387
|
+
"shape": "S9e"
|
4134
4388
|
},
|
4135
4389
|
"type": {},
|
4136
4390
|
"updatedAt": {
|
@@ -4185,7 +4439,7 @@
|
|
4185
4439
|
"entityId": {},
|
4186
4440
|
"entityType": {},
|
4187
4441
|
"form": {
|
4188
|
-
"shape": "
|
4442
|
+
"shape": "Sdk"
|
4189
4443
|
},
|
4190
4444
|
"formName": {}
|
4191
4445
|
}
|
@@ -4222,7 +4476,7 @@
|
|
4222
4476
|
"type": "structure",
|
4223
4477
|
"members": {
|
4224
4478
|
"details": {
|
4225
|
-
"shape": "
|
4479
|
+
"shape": "S9k"
|
4226
4480
|
},
|
4227
4481
|
"domainId": {},
|
4228
4482
|
"id": {},
|
@@ -4289,17 +4543,17 @@
|
|
4289
4543
|
"type": "timestamp"
|
4290
4544
|
},
|
4291
4545
|
"description": {
|
4292
|
-
"shape": "
|
4546
|
+
"shape": "Su"
|
4293
4547
|
},
|
4294
4548
|
"domainId": {},
|
4295
4549
|
"effectiveColumnNames": {
|
4296
|
-
"shape": "
|
4550
|
+
"shape": "S3j"
|
4297
4551
|
},
|
4298
4552
|
"effectiveRowFilter": {},
|
4299
4553
|
"errorMessage": {},
|
4300
4554
|
"id": {},
|
4301
4555
|
"name": {
|
4302
|
-
"shape": "
|
4556
|
+
"shape": "S41"
|
4303
4557
|
},
|
4304
4558
|
"status": {}
|
4305
4559
|
}
|
@@ -4477,26 +4731,26 @@
|
|
4477
4731
|
],
|
4478
4732
|
"members": {
|
4479
4733
|
"createdAt": {
|
4480
|
-
"shape": "
|
4734
|
+
"shape": "S5r"
|
4481
4735
|
},
|
4482
4736
|
"dataAssetId": {},
|
4483
4737
|
"dataAssetStatus": {},
|
4484
4738
|
"dataSourceRunId": {},
|
4485
4739
|
"database": {
|
4486
|
-
"shape": "
|
4740
|
+
"shape": "S5b"
|
4487
4741
|
},
|
4488
4742
|
"errorMessage": {
|
4489
|
-
"shape": "
|
4743
|
+
"shape": "S5s"
|
4490
4744
|
},
|
4491
4745
|
"projectId": {},
|
4492
4746
|
"technicalDescription": {
|
4493
|
-
"shape": "
|
4747
|
+
"shape": "Su"
|
4494
4748
|
},
|
4495
4749
|
"technicalName": {
|
4496
|
-
"shape": "
|
4750
|
+
"shape": "S5b"
|
4497
4751
|
},
|
4498
4752
|
"updatedAt": {
|
4499
|
-
"shape": "
|
4753
|
+
"shape": "S5r"
|
4500
4754
|
}
|
4501
4755
|
}
|
4502
4756
|
}
|
@@ -4562,27 +4816,27 @@
|
|
4562
4816
|
],
|
4563
4817
|
"members": {
|
4564
4818
|
"createdAt": {
|
4565
|
-
"shape": "
|
4819
|
+
"shape": "S5r"
|
4566
4820
|
},
|
4567
4821
|
"dataSourceId": {},
|
4568
4822
|
"errorMessage": {
|
4569
|
-
"shape": "
|
4823
|
+
"shape": "S5s"
|
4570
4824
|
},
|
4571
4825
|
"id": {},
|
4572
4826
|
"projectId": {},
|
4573
4827
|
"runStatisticsForAssets": {
|
4574
|
-
"shape": "
|
4828
|
+
"shape": "Sbh"
|
4575
4829
|
},
|
4576
4830
|
"startedAt": {
|
4577
|
-
"shape": "
|
4831
|
+
"shape": "S5r"
|
4578
4832
|
},
|
4579
4833
|
"status": {},
|
4580
4834
|
"stoppedAt": {
|
4581
|
-
"shape": "
|
4835
|
+
"shape": "S5r"
|
4582
4836
|
},
|
4583
4837
|
"type": {},
|
4584
4838
|
"updatedAt": {
|
4585
|
-
"shape": "
|
4839
|
+
"shape": "S5r"
|
4586
4840
|
}
|
4587
4841
|
}
|
4588
4842
|
}
|
@@ -4618,7 +4872,7 @@
|
|
4618
4872
|
"type": "integer"
|
4619
4873
|
},
|
4620
4874
|
"name": {
|
4621
|
-
"shape": "
|
4875
|
+
"shape": "S5b",
|
4622
4876
|
"location": "querystring",
|
4623
4877
|
"locationName": "name"
|
4624
4878
|
},
|
@@ -4660,7 +4914,7 @@
|
|
4660
4914
|
],
|
4661
4915
|
"members": {
|
4662
4916
|
"createdAt": {
|
4663
|
-
"shape": "
|
4917
|
+
"shape": "S5r"
|
4664
4918
|
},
|
4665
4919
|
"dataSourceId": {},
|
4666
4920
|
"domainId": {},
|
@@ -4670,22 +4924,22 @@
|
|
4670
4924
|
"type": "integer"
|
4671
4925
|
},
|
4672
4926
|
"lastRunAt": {
|
4673
|
-
"shape": "
|
4927
|
+
"shape": "S5r"
|
4674
4928
|
},
|
4675
4929
|
"lastRunErrorMessage": {
|
4676
|
-
"shape": "
|
4930
|
+
"shape": "S5s"
|
4677
4931
|
},
|
4678
4932
|
"lastRunStatus": {},
|
4679
4933
|
"name": {
|
4680
|
-
"shape": "
|
4934
|
+
"shape": "S5b"
|
4681
4935
|
},
|
4682
4936
|
"schedule": {
|
4683
|
-
"shape": "
|
4937
|
+
"shape": "S5d"
|
4684
4938
|
},
|
4685
4939
|
"status": {},
|
4686
4940
|
"type": {},
|
4687
4941
|
"updatedAt": {
|
4688
|
-
"shape": "
|
4942
|
+
"shape": "S5r"
|
4689
4943
|
}
|
4690
4944
|
}
|
4691
4945
|
}
|
@@ -4694,6 +4948,62 @@
|
|
4694
4948
|
}
|
4695
4949
|
}
|
4696
4950
|
},
|
4951
|
+
"ListDomainUnitsForParent": {
|
4952
|
+
"http": {
|
4953
|
+
"method": "GET",
|
4954
|
+
"requestUri": "/v2/domains/{domainIdentifier}/domain-units",
|
4955
|
+
"responseCode": 200
|
4956
|
+
},
|
4957
|
+
"input": {
|
4958
|
+
"type": "structure",
|
4959
|
+
"required": [
|
4960
|
+
"domainIdentifier",
|
4961
|
+
"parentDomainUnitIdentifier"
|
4962
|
+
],
|
4963
|
+
"members": {
|
4964
|
+
"domainIdentifier": {
|
4965
|
+
"location": "uri",
|
4966
|
+
"locationName": "domainIdentifier"
|
4967
|
+
},
|
4968
|
+
"maxResults": {
|
4969
|
+
"location": "querystring",
|
4970
|
+
"locationName": "maxResults",
|
4971
|
+
"type": "integer"
|
4972
|
+
},
|
4973
|
+
"nextToken": {
|
4974
|
+
"location": "querystring",
|
4975
|
+
"locationName": "nextToken"
|
4976
|
+
},
|
4977
|
+
"parentDomainUnitIdentifier": {
|
4978
|
+
"location": "querystring",
|
4979
|
+
"locationName": "parentDomainUnitIdentifier"
|
4980
|
+
}
|
4981
|
+
}
|
4982
|
+
},
|
4983
|
+
"output": {
|
4984
|
+
"type": "structure",
|
4985
|
+
"required": [
|
4986
|
+
"items"
|
4987
|
+
],
|
4988
|
+
"members": {
|
4989
|
+
"items": {
|
4990
|
+
"type": "list",
|
4991
|
+
"member": {
|
4992
|
+
"type": "structure",
|
4993
|
+
"required": [
|
4994
|
+
"id",
|
4995
|
+
"name"
|
4996
|
+
],
|
4997
|
+
"members": {
|
4998
|
+
"id": {},
|
4999
|
+
"name": {}
|
5000
|
+
}
|
5001
|
+
}
|
5002
|
+
},
|
5003
|
+
"nextToken": {}
|
5004
|
+
}
|
5005
|
+
}
|
5006
|
+
},
|
4697
5007
|
"ListDomains": {
|
4698
5008
|
"http": {
|
4699
5009
|
"method": "GET",
|
@@ -4763,6 +5073,74 @@
|
|
4763
5073
|
}
|
4764
5074
|
}
|
4765
5075
|
},
|
5076
|
+
"ListEntityOwners": {
|
5077
|
+
"http": {
|
5078
|
+
"method": "GET",
|
5079
|
+
"requestUri": "/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/owners",
|
5080
|
+
"responseCode": 200
|
5081
|
+
},
|
5082
|
+
"input": {
|
5083
|
+
"type": "structure",
|
5084
|
+
"required": [
|
5085
|
+
"domainIdentifier",
|
5086
|
+
"entityIdentifier",
|
5087
|
+
"entityType"
|
5088
|
+
],
|
5089
|
+
"members": {
|
5090
|
+
"domainIdentifier": {
|
5091
|
+
"location": "uri",
|
5092
|
+
"locationName": "domainIdentifier"
|
5093
|
+
},
|
5094
|
+
"entityIdentifier": {
|
5095
|
+
"location": "uri",
|
5096
|
+
"locationName": "entityIdentifier"
|
5097
|
+
},
|
5098
|
+
"entityType": {
|
5099
|
+
"location": "uri",
|
5100
|
+
"locationName": "entityType"
|
5101
|
+
},
|
5102
|
+
"maxResults": {
|
5103
|
+
"location": "querystring",
|
5104
|
+
"locationName": "maxResults",
|
5105
|
+
"type": "integer"
|
5106
|
+
},
|
5107
|
+
"nextToken": {
|
5108
|
+
"location": "querystring",
|
5109
|
+
"locationName": "nextToken"
|
5110
|
+
}
|
5111
|
+
}
|
5112
|
+
},
|
5113
|
+
"output": {
|
5114
|
+
"type": "structure",
|
5115
|
+
"required": [
|
5116
|
+
"owners"
|
5117
|
+
],
|
5118
|
+
"members": {
|
5119
|
+
"nextToken": {},
|
5120
|
+
"owners": {
|
5121
|
+
"type": "list",
|
5122
|
+
"member": {
|
5123
|
+
"type": "structure",
|
5124
|
+
"members": {
|
5125
|
+
"group": {
|
5126
|
+
"type": "structure",
|
5127
|
+
"members": {
|
5128
|
+
"groupId": {}
|
5129
|
+
}
|
5130
|
+
},
|
5131
|
+
"user": {
|
5132
|
+
"type": "structure",
|
5133
|
+
"members": {
|
5134
|
+
"userId": {}
|
5135
|
+
}
|
5136
|
+
}
|
5137
|
+
},
|
5138
|
+
"union": true
|
5139
|
+
}
|
5140
|
+
}
|
5141
|
+
}
|
5142
|
+
}
|
5143
|
+
},
|
4766
5144
|
"ListEnvironmentActions": {
|
4767
5145
|
"http": {
|
4768
5146
|
"method": "GET",
|
@@ -4816,7 +5194,7 @@
|
|
4816
5194
|
"id": {},
|
4817
5195
|
"name": {},
|
4818
5196
|
"parameters": {
|
4819
|
-
"shape": "
|
5197
|
+
"shape": "S7e"
|
4820
5198
|
}
|
4821
5199
|
}
|
4822
5200
|
}
|
@@ -4865,23 +5243,23 @@
|
|
4865
5243
|
],
|
4866
5244
|
"members": {
|
4867
5245
|
"createdAt": {
|
4868
|
-
"shape": "
|
5246
|
+
"shape": "S6o"
|
4869
5247
|
},
|
4870
5248
|
"domainId": {},
|
4871
5249
|
"enabledRegions": {
|
4872
|
-
"shape": "
|
5250
|
+
"shape": "Sbw"
|
4873
5251
|
},
|
4874
5252
|
"environmentBlueprintId": {},
|
4875
5253
|
"manageAccessRoleArn": {},
|
4876
5254
|
"provisioningConfigurations": {
|
4877
|
-
"shape": "
|
5255
|
+
"shape": "Sby"
|
4878
5256
|
},
|
4879
5257
|
"provisioningRoleArn": {},
|
4880
5258
|
"regionalParameters": {
|
4881
|
-
"shape": "
|
5259
|
+
"shape": "Sc3"
|
4882
5260
|
},
|
4883
5261
|
"updatedAt": {
|
4884
|
-
"shape": "
|
5262
|
+
"shape": "S6o"
|
4885
5263
|
}
|
4886
5264
|
}
|
4887
5265
|
}
|
@@ -4944,19 +5322,19 @@
|
|
4944
5322
|
],
|
4945
5323
|
"members": {
|
4946
5324
|
"createdAt": {
|
4947
|
-
"shape": "
|
5325
|
+
"shape": "S6o"
|
4948
5326
|
},
|
4949
5327
|
"description": {
|
4950
|
-
"shape": "
|
5328
|
+
"shape": "Su"
|
4951
5329
|
},
|
4952
5330
|
"id": {},
|
4953
5331
|
"name": {},
|
4954
5332
|
"provider": {},
|
4955
5333
|
"provisioningProperties": {
|
4956
|
-
"shape": "
|
5334
|
+
"shape": "S77"
|
4957
5335
|
},
|
4958
5336
|
"updatedAt": {
|
4959
|
-
"shape": "
|
5337
|
+
"shape": "S6o"
|
4960
5338
|
}
|
4961
5339
|
}
|
4962
5340
|
}
|
@@ -4999,7 +5377,7 @@
|
|
4999
5377
|
"type": "integer"
|
5000
5378
|
},
|
5001
5379
|
"name": {
|
5002
|
-
"shape": "
|
5380
|
+
"shape": "S7j",
|
5003
5381
|
"location": "querystring",
|
5004
5382
|
"locationName": "name"
|
5005
5383
|
},
|
@@ -5034,21 +5412,21 @@
|
|
5034
5412
|
"awsAccountId": {},
|
5035
5413
|
"awsAccountRegion": {},
|
5036
5414
|
"createdAt": {
|
5037
|
-
"shape": "
|
5415
|
+
"shape": "S6o"
|
5038
5416
|
},
|
5039
5417
|
"createdBy": {},
|
5040
5418
|
"description": {
|
5041
|
-
"shape": "
|
5419
|
+
"shape": "Su"
|
5042
5420
|
},
|
5043
5421
|
"domainId": {},
|
5044
5422
|
"environmentBlueprintId": {},
|
5045
5423
|
"id": {},
|
5046
5424
|
"name": {
|
5047
|
-
"shape": "
|
5425
|
+
"shape": "S7j"
|
5048
5426
|
},
|
5049
5427
|
"projectId": {},
|
5050
5428
|
"updatedAt": {
|
5051
|
-
"shape": "
|
5429
|
+
"shape": "S6o"
|
5052
5430
|
}
|
5053
5431
|
}
|
5054
5432
|
}
|
@@ -5138,23 +5516,23 @@
|
|
5138
5516
|
"awsAccountId": {},
|
5139
5517
|
"awsAccountRegion": {},
|
5140
5518
|
"createdAt": {
|
5141
|
-
"shape": "
|
5519
|
+
"shape": "S6o"
|
5142
5520
|
},
|
5143
5521
|
"createdBy": {},
|
5144
5522
|
"description": {
|
5145
|
-
"shape": "
|
5523
|
+
"shape": "Su"
|
5146
5524
|
},
|
5147
5525
|
"domainId": {},
|
5148
5526
|
"environmentProfileId": {},
|
5149
5527
|
"id": {},
|
5150
5528
|
"name": {
|
5151
|
-
"shape": "
|
5529
|
+
"shape": "S74"
|
5152
5530
|
},
|
5153
5531
|
"projectId": {},
|
5154
5532
|
"provider": {},
|
5155
5533
|
"status": {},
|
5156
5534
|
"updatedAt": {
|
5157
|
-
"shape": "
|
5535
|
+
"shape": "S6o"
|
5158
5536
|
}
|
5159
5537
|
}
|
5160
5538
|
}
|
@@ -5308,7 +5686,7 @@
|
|
5308
5686
|
"owningProjectId": {},
|
5309
5687
|
"status": {},
|
5310
5688
|
"target": {
|
5311
|
-
"shape": "
|
5689
|
+
"shape": "Sd1"
|
5312
5690
|
},
|
5313
5691
|
"type": {}
|
5314
5692
|
}
|
@@ -5447,23 +5825,33 @@
|
|
5447
5825
|
}
|
5448
5826
|
}
|
5449
5827
|
},
|
5450
|
-
"
|
5828
|
+
"ListPolicyGrants": {
|
5451
5829
|
"http": {
|
5452
5830
|
"method": "GET",
|
5453
|
-
"requestUri": "/v2/domains/{domainIdentifier}/
|
5831
|
+
"requestUri": "/v2/domains/{domainIdentifier}/policies/managed/{entityType}/{entityIdentifier}/grants",
|
5454
5832
|
"responseCode": 200
|
5455
5833
|
},
|
5456
5834
|
"input": {
|
5457
5835
|
"type": "structure",
|
5458
5836
|
"required": [
|
5459
5837
|
"domainIdentifier",
|
5460
|
-
"
|
5838
|
+
"entityIdentifier",
|
5839
|
+
"entityType",
|
5840
|
+
"policyType"
|
5461
5841
|
],
|
5462
5842
|
"members": {
|
5463
5843
|
"domainIdentifier": {
|
5464
5844
|
"location": "uri",
|
5465
5845
|
"locationName": "domainIdentifier"
|
5466
5846
|
},
|
5847
|
+
"entityIdentifier": {
|
5848
|
+
"location": "uri",
|
5849
|
+
"locationName": "entityIdentifier"
|
5850
|
+
},
|
5851
|
+
"entityType": {
|
5852
|
+
"location": "uri",
|
5853
|
+
"locationName": "entityType"
|
5854
|
+
},
|
5467
5855
|
"maxResults": {
|
5468
5856
|
"location": "querystring",
|
5469
5857
|
"locationName": "maxResults",
|
@@ -5473,46 +5861,106 @@
|
|
5473
5861
|
"location": "querystring",
|
5474
5862
|
"locationName": "nextToken"
|
5475
5863
|
},
|
5476
|
-
"
|
5477
|
-
"location": "uri",
|
5478
|
-
"locationName": "projectIdentifier"
|
5479
|
-
},
|
5480
|
-
"sortBy": {
|
5481
|
-
"location": "querystring",
|
5482
|
-
"locationName": "sortBy"
|
5483
|
-
},
|
5484
|
-
"sortOrder": {
|
5864
|
+
"policyType": {
|
5485
5865
|
"location": "querystring",
|
5486
|
-
"locationName": "
|
5866
|
+
"locationName": "policyType"
|
5487
5867
|
}
|
5488
5868
|
}
|
5489
5869
|
},
|
5490
5870
|
"output": {
|
5491
5871
|
"type": "structure",
|
5492
5872
|
"required": [
|
5493
|
-
"
|
5873
|
+
"grantList"
|
5494
5874
|
],
|
5495
5875
|
"members": {
|
5496
|
-
"
|
5876
|
+
"grantList": {
|
5497
5877
|
"type": "list",
|
5498
5878
|
"member": {
|
5499
5879
|
"type": "structure",
|
5500
|
-
"required": [
|
5501
|
-
"designation",
|
5502
|
-
"memberDetails"
|
5503
|
-
],
|
5504
5880
|
"members": {
|
5505
|
-
"
|
5506
|
-
|
5507
|
-
|
5508
|
-
|
5509
|
-
|
5510
|
-
|
5511
|
-
|
5512
|
-
|
5513
|
-
|
5514
|
-
|
5515
|
-
|
5881
|
+
"createdAt": {
|
5882
|
+
"type": "timestamp"
|
5883
|
+
},
|
5884
|
+
"createdBy": {},
|
5885
|
+
"detail": {
|
5886
|
+
"shape": "S1p"
|
5887
|
+
},
|
5888
|
+
"principal": {
|
5889
|
+
"shape": "S24"
|
5890
|
+
}
|
5891
|
+
}
|
5892
|
+
}
|
5893
|
+
},
|
5894
|
+
"nextToken": {}
|
5895
|
+
}
|
5896
|
+
}
|
5897
|
+
},
|
5898
|
+
"ListProjectMemberships": {
|
5899
|
+
"http": {
|
5900
|
+
"method": "GET",
|
5901
|
+
"requestUri": "/v2/domains/{domainIdentifier}/projects/{projectIdentifier}/memberships",
|
5902
|
+
"responseCode": 200
|
5903
|
+
},
|
5904
|
+
"input": {
|
5905
|
+
"type": "structure",
|
5906
|
+
"required": [
|
5907
|
+
"domainIdentifier",
|
5908
|
+
"projectIdentifier"
|
5909
|
+
],
|
5910
|
+
"members": {
|
5911
|
+
"domainIdentifier": {
|
5912
|
+
"location": "uri",
|
5913
|
+
"locationName": "domainIdentifier"
|
5914
|
+
},
|
5915
|
+
"maxResults": {
|
5916
|
+
"location": "querystring",
|
5917
|
+
"locationName": "maxResults",
|
5918
|
+
"type": "integer"
|
5919
|
+
},
|
5920
|
+
"nextToken": {
|
5921
|
+
"location": "querystring",
|
5922
|
+
"locationName": "nextToken"
|
5923
|
+
},
|
5924
|
+
"projectIdentifier": {
|
5925
|
+
"location": "uri",
|
5926
|
+
"locationName": "projectIdentifier"
|
5927
|
+
},
|
5928
|
+
"sortBy": {
|
5929
|
+
"location": "querystring",
|
5930
|
+
"locationName": "sortBy"
|
5931
|
+
},
|
5932
|
+
"sortOrder": {
|
5933
|
+
"location": "querystring",
|
5934
|
+
"locationName": "sortOrder"
|
5935
|
+
}
|
5936
|
+
}
|
5937
|
+
},
|
5938
|
+
"output": {
|
5939
|
+
"type": "structure",
|
5940
|
+
"required": [
|
5941
|
+
"members"
|
5942
|
+
],
|
5943
|
+
"members": {
|
5944
|
+
"members": {
|
5945
|
+
"type": "list",
|
5946
|
+
"member": {
|
5947
|
+
"type": "structure",
|
5948
|
+
"required": [
|
5949
|
+
"designation",
|
5950
|
+
"memberDetails"
|
5951
|
+
],
|
5952
|
+
"members": {
|
5953
|
+
"designation": {},
|
5954
|
+
"memberDetails": {
|
5955
|
+
"type": "structure",
|
5956
|
+
"members": {
|
5957
|
+
"group": {
|
5958
|
+
"type": "structure",
|
5959
|
+
"required": [
|
5960
|
+
"groupId"
|
5961
|
+
],
|
5962
|
+
"members": {
|
5963
|
+
"groupId": {}
|
5516
5964
|
}
|
5517
5965
|
},
|
5518
5966
|
"user": {
|
@@ -5560,7 +6008,7 @@
|
|
5560
6008
|
"type": "integer"
|
5561
6009
|
},
|
5562
6010
|
"name": {
|
5563
|
-
"shape": "
|
6011
|
+
"shape": "S1d",
|
5564
6012
|
"location": "querystring",
|
5565
6013
|
"locationName": "name"
|
5566
6014
|
},
|
@@ -5589,23 +6037,24 @@
|
|
5589
6037
|
],
|
5590
6038
|
"members": {
|
5591
6039
|
"createdAt": {
|
5592
|
-
"shape": "
|
6040
|
+
"shape": "S6o"
|
5593
6041
|
},
|
5594
6042
|
"createdBy": {},
|
5595
6043
|
"description": {
|
5596
|
-
"shape": "
|
6044
|
+
"shape": "Su"
|
5597
6045
|
},
|
5598
6046
|
"domainId": {},
|
6047
|
+
"domainUnitId": {},
|
5599
6048
|
"failureReasons": {
|
5600
|
-
"shape": "
|
6049
|
+
"shape": "S8e"
|
5601
6050
|
},
|
5602
6051
|
"id": {},
|
5603
6052
|
"name": {
|
5604
|
-
"shape": "
|
6053
|
+
"shape": "S1d"
|
5605
6054
|
},
|
5606
6055
|
"projectStatus": {},
|
5607
6056
|
"updatedAt": {
|
5608
|
-
"shape": "
|
6057
|
+
"shape": "S6o"
|
5609
6058
|
}
|
5610
6059
|
}
|
5611
6060
|
}
|
@@ -5691,7 +6140,7 @@
|
|
5691
6140
|
],
|
5692
6141
|
"members": {
|
5693
6142
|
"assets": {
|
5694
|
-
"shape": "
|
6143
|
+
"shape": "S8s"
|
5695
6144
|
},
|
5696
6145
|
"createdAt": {
|
5697
6146
|
"type": "timestamp"
|
@@ -5699,7 +6148,7 @@
|
|
5699
6148
|
"createdBy": {},
|
5700
6149
|
"domainId": {},
|
5701
6150
|
"grantedEntity": {
|
5702
|
-
"shape": "
|
6151
|
+
"shape": "S8w"
|
5703
6152
|
},
|
5704
6153
|
"id": {},
|
5705
6154
|
"status": {},
|
@@ -5797,25 +6246,25 @@
|
|
5797
6246
|
},
|
5798
6247
|
"createdBy": {},
|
5799
6248
|
"decisionComment": {
|
5800
|
-
"shape": "
|
6249
|
+
"shape": "Sl"
|
5801
6250
|
},
|
5802
6251
|
"domainId": {},
|
5803
6252
|
"id": {},
|
5804
6253
|
"requestReason": {
|
5805
|
-
"shape": "
|
6254
|
+
"shape": "Sq"
|
5806
6255
|
},
|
5807
6256
|
"reviewerId": {},
|
5808
6257
|
"status": {},
|
5809
6258
|
"subscribedListings": {
|
5810
6259
|
"type": "list",
|
5811
6260
|
"member": {
|
5812
|
-
"shape": "
|
6261
|
+
"shape": "St"
|
5813
6262
|
}
|
5814
6263
|
},
|
5815
6264
|
"subscribedPrincipals": {
|
5816
6265
|
"type": "list",
|
5817
6266
|
"member": {
|
5818
|
-
"shape": "
|
6267
|
+
"shape": "S1b"
|
5819
6268
|
}
|
5820
6269
|
},
|
5821
6270
|
"updatedAt": {
|
@@ -5896,10 +6345,10 @@
|
|
5896
6345
|
],
|
5897
6346
|
"members": {
|
5898
6347
|
"applicableAssetTypes": {
|
5899
|
-
"shape": "
|
6348
|
+
"shape": "S9a"
|
5900
6349
|
},
|
5901
6350
|
"authorizedPrincipals": {
|
5902
|
-
"shape": "
|
6351
|
+
"shape": "S9b"
|
5903
6352
|
},
|
5904
6353
|
"createdAt": {
|
5905
6354
|
"type": "timestamp"
|
@@ -5910,12 +6359,12 @@
|
|
5910
6359
|
"id": {},
|
5911
6360
|
"manageAccessRole": {},
|
5912
6361
|
"name": {
|
5913
|
-
"shape": "
|
6362
|
+
"shape": "S9d"
|
5914
6363
|
},
|
5915
6364
|
"projectId": {},
|
5916
6365
|
"provider": {},
|
5917
6366
|
"subscriptionTargetConfig": {
|
5918
|
-
"shape": "
|
6367
|
+
"shape": "S9e"
|
5919
6368
|
},
|
5920
6369
|
"type": {},
|
5921
6370
|
"updatedAt": {
|
@@ -6016,10 +6465,10 @@
|
|
6016
6465
|
},
|
6017
6466
|
"status": {},
|
6018
6467
|
"subscribedListing": {
|
6019
|
-
"shape": "
|
6468
|
+
"shape": "St"
|
6020
6469
|
},
|
6021
6470
|
"subscribedPrincipal": {
|
6022
|
-
"shape": "
|
6471
|
+
"shape": "S1b"
|
6023
6472
|
},
|
6024
6473
|
"subscriptionRequestId": {},
|
6025
6474
|
"updatedAt": {
|
@@ -6055,7 +6504,7 @@
|
|
6055
6504
|
"type": "structure",
|
6056
6505
|
"members": {
|
6057
6506
|
"tags": {
|
6058
|
-
"shape": "
|
6507
|
+
"shape": "S63"
|
6059
6508
|
}
|
6060
6509
|
}
|
6061
6510
|
}
|
@@ -6116,7 +6565,7 @@
|
|
6116
6565
|
"type": "structure",
|
6117
6566
|
"members": {
|
6118
6567
|
"items": {
|
6119
|
-
"shape": "
|
6568
|
+
"shape": "S38"
|
6120
6569
|
},
|
6121
6570
|
"nextToken": {}
|
6122
6571
|
}
|
@@ -6216,7 +6665,7 @@
|
|
6216
6665
|
"forms": {
|
6217
6666
|
"type": "list",
|
6218
6667
|
"member": {
|
6219
|
-
"shape": "
|
6668
|
+
"shape": "Sdk"
|
6220
6669
|
}
|
6221
6670
|
}
|
6222
6671
|
}
|
@@ -6242,7 +6691,7 @@
|
|
6242
6691
|
"locationName": "domainIdentifier"
|
6243
6692
|
},
|
6244
6693
|
"enabledRegions": {
|
6245
|
-
"shape": "
|
6694
|
+
"shape": "Sbw"
|
6246
6695
|
},
|
6247
6696
|
"environmentBlueprintIdentifier": {
|
6248
6697
|
"location": "uri",
|
@@ -6250,11 +6699,11 @@
|
|
6250
6699
|
},
|
6251
6700
|
"manageAccessRoleArn": {},
|
6252
6701
|
"provisioningConfigurations": {
|
6253
|
-
"shape": "
|
6702
|
+
"shape": "Sby"
|
6254
6703
|
},
|
6255
6704
|
"provisioningRoleArn": {},
|
6256
6705
|
"regionalParameters": {
|
6257
|
-
"shape": "
|
6706
|
+
"shape": "Sc3"
|
6258
6707
|
}
|
6259
6708
|
}
|
6260
6709
|
},
|
@@ -6266,23 +6715,23 @@
|
|
6266
6715
|
],
|
6267
6716
|
"members": {
|
6268
6717
|
"createdAt": {
|
6269
|
-
"shape": "
|
6718
|
+
"shape": "S6o"
|
6270
6719
|
},
|
6271
6720
|
"domainId": {},
|
6272
6721
|
"enabledRegions": {
|
6273
|
-
"shape": "
|
6722
|
+
"shape": "Sbw"
|
6274
6723
|
},
|
6275
6724
|
"environmentBlueprintId": {},
|
6276
6725
|
"manageAccessRoleArn": {},
|
6277
6726
|
"provisioningConfigurations": {
|
6278
|
-
"shape": "
|
6727
|
+
"shape": "Sby"
|
6279
6728
|
},
|
6280
6729
|
"provisioningRoleArn": {},
|
6281
6730
|
"regionalParameters": {
|
6282
|
-
"shape": "
|
6731
|
+
"shape": "Sc3"
|
6283
6732
|
},
|
6284
6733
|
"updatedAt": {
|
6285
|
-
"shape": "
|
6734
|
+
"shape": "S6o"
|
6286
6735
|
}
|
6287
6736
|
}
|
6288
6737
|
},
|
@@ -6374,7 +6823,7 @@
|
|
6374
6823
|
],
|
6375
6824
|
"members": {
|
6376
6825
|
"decisionComment": {
|
6377
|
-
"shape": "
|
6826
|
+
"shape": "Sl"
|
6378
6827
|
},
|
6379
6828
|
"domainIdentifier": {
|
6380
6829
|
"location": "uri",
|
@@ -6405,25 +6854,25 @@
|
|
6405
6854
|
},
|
6406
6855
|
"createdBy": {},
|
6407
6856
|
"decisionComment": {
|
6408
|
-
"shape": "
|
6857
|
+
"shape": "Sl"
|
6409
6858
|
},
|
6410
6859
|
"domainId": {},
|
6411
6860
|
"id": {},
|
6412
6861
|
"requestReason": {
|
6413
|
-
"shape": "
|
6862
|
+
"shape": "Sq"
|
6414
6863
|
},
|
6415
6864
|
"reviewerId": {},
|
6416
6865
|
"status": {},
|
6417
6866
|
"subscribedListings": {
|
6418
6867
|
"type": "list",
|
6419
6868
|
"member": {
|
6420
|
-
"shape": "
|
6869
|
+
"shape": "St"
|
6421
6870
|
}
|
6422
6871
|
},
|
6423
6872
|
"subscribedPrincipals": {
|
6424
6873
|
"type": "list",
|
6425
6874
|
"member": {
|
6426
|
-
"shape": "
|
6875
|
+
"shape": "S1b"
|
6427
6876
|
}
|
6428
6877
|
},
|
6429
6878
|
"updatedAt": {
|
@@ -6434,6 +6883,88 @@
|
|
6434
6883
|
},
|
6435
6884
|
"idempotent": true
|
6436
6885
|
},
|
6886
|
+
"RemoveEntityOwner": {
|
6887
|
+
"http": {
|
6888
|
+
"requestUri": "/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/removeOwner",
|
6889
|
+
"responseCode": 204
|
6890
|
+
},
|
6891
|
+
"input": {
|
6892
|
+
"type": "structure",
|
6893
|
+
"required": [
|
6894
|
+
"domainIdentifier",
|
6895
|
+
"entityIdentifier",
|
6896
|
+
"entityType",
|
6897
|
+
"owner"
|
6898
|
+
],
|
6899
|
+
"members": {
|
6900
|
+
"clientToken": {
|
6901
|
+
"idempotencyToken": true
|
6902
|
+
},
|
6903
|
+
"domainIdentifier": {
|
6904
|
+
"location": "uri",
|
6905
|
+
"locationName": "domainIdentifier"
|
6906
|
+
},
|
6907
|
+
"entityIdentifier": {
|
6908
|
+
"location": "uri",
|
6909
|
+
"locationName": "entityIdentifier"
|
6910
|
+
},
|
6911
|
+
"entityType": {
|
6912
|
+
"location": "uri",
|
6913
|
+
"locationName": "entityType"
|
6914
|
+
},
|
6915
|
+
"owner": {
|
6916
|
+
"shape": "S1i"
|
6917
|
+
}
|
6918
|
+
}
|
6919
|
+
},
|
6920
|
+
"output": {
|
6921
|
+
"type": "structure",
|
6922
|
+
"members": {}
|
6923
|
+
},
|
6924
|
+
"idempotent": true
|
6925
|
+
},
|
6926
|
+
"RemovePolicyGrant": {
|
6927
|
+
"http": {
|
6928
|
+
"requestUri": "/v2/domains/{domainIdentifier}/policies/managed/{entityType}/{entityIdentifier}/removeGrant",
|
6929
|
+
"responseCode": 204
|
6930
|
+
},
|
6931
|
+
"input": {
|
6932
|
+
"type": "structure",
|
6933
|
+
"required": [
|
6934
|
+
"domainIdentifier",
|
6935
|
+
"entityIdentifier",
|
6936
|
+
"entityType",
|
6937
|
+
"policyType",
|
6938
|
+
"principal"
|
6939
|
+
],
|
6940
|
+
"members": {
|
6941
|
+
"clientToken": {
|
6942
|
+
"idempotencyToken": true
|
6943
|
+
},
|
6944
|
+
"domainIdentifier": {
|
6945
|
+
"location": "uri",
|
6946
|
+
"locationName": "domainIdentifier"
|
6947
|
+
},
|
6948
|
+
"entityIdentifier": {
|
6949
|
+
"location": "uri",
|
6950
|
+
"locationName": "entityIdentifier"
|
6951
|
+
},
|
6952
|
+
"entityType": {
|
6953
|
+
"location": "uri",
|
6954
|
+
"locationName": "entityType"
|
6955
|
+
},
|
6956
|
+
"policyType": {},
|
6957
|
+
"principal": {
|
6958
|
+
"shape": "S24"
|
6959
|
+
}
|
6960
|
+
}
|
6961
|
+
},
|
6962
|
+
"output": {
|
6963
|
+
"type": "structure",
|
6964
|
+
"members": {}
|
6965
|
+
},
|
6966
|
+
"idempotent": true
|
6967
|
+
},
|
6437
6968
|
"RevokeSubscription": {
|
6438
6969
|
"http": {
|
6439
6970
|
"method": "PUT",
|
@@ -6484,10 +7015,10 @@
|
|
6484
7015
|
},
|
6485
7016
|
"status": {},
|
6486
7017
|
"subscribedListing": {
|
6487
|
-
"shape": "
|
7018
|
+
"shape": "St"
|
6488
7019
|
},
|
6489
7020
|
"subscribedPrincipal": {
|
6490
|
-
"shape": "
|
7021
|
+
"shape": "S1b"
|
6491
7022
|
},
|
6492
7023
|
"subscriptionRequestId": {},
|
6493
7024
|
"updatedAt": {
|
@@ -6511,14 +7042,14 @@
|
|
6511
7042
|
],
|
6512
7043
|
"members": {
|
6513
7044
|
"additionalAttributes": {
|
6514
|
-
"shape": "
|
7045
|
+
"shape": "Si2"
|
6515
7046
|
},
|
6516
7047
|
"domainIdentifier": {
|
6517
7048
|
"location": "uri",
|
6518
7049
|
"locationName": "domainIdentifier"
|
6519
7050
|
},
|
6520
7051
|
"filters": {
|
6521
|
-
"shape": "
|
7052
|
+
"shape": "Si4"
|
6522
7053
|
},
|
6523
7054
|
"maxResults": {
|
6524
7055
|
"type": "integer"
|
@@ -6526,12 +7057,12 @@
|
|
6526
7057
|
"nextToken": {},
|
6527
7058
|
"owningProjectIdentifier": {},
|
6528
7059
|
"searchIn": {
|
6529
|
-
"shape": "
|
7060
|
+
"shape": "Si9"
|
6530
7061
|
},
|
6531
7062
|
"searchScope": {},
|
6532
7063
|
"searchText": {},
|
6533
7064
|
"sort": {
|
6534
|
-
"shape": "
|
7065
|
+
"shape": "Sid"
|
6535
7066
|
}
|
6536
7067
|
}
|
6537
7068
|
},
|
@@ -6558,13 +7089,13 @@
|
|
6558
7089
|
"type": "structure",
|
6559
7090
|
"members": {
|
6560
7091
|
"formsOutput": {
|
6561
|
-
"shape": "
|
7092
|
+
"shape": "S35"
|
6562
7093
|
},
|
6563
7094
|
"latestTimeSeriesDataPointFormsOutput": {
|
6564
|
-
"shape": "
|
7095
|
+
"shape": "S38"
|
6565
7096
|
},
|
6566
7097
|
"readOnlyFormsOutput": {
|
6567
|
-
"shape": "
|
7098
|
+
"shape": "S35"
|
6568
7099
|
}
|
6569
7100
|
}
|
6570
7101
|
},
|
@@ -6573,22 +7104,22 @@
|
|
6573
7104
|
},
|
6574
7105
|
"createdBy": {},
|
6575
7106
|
"description": {
|
6576
|
-
"shape": "
|
7107
|
+
"shape": "Su"
|
6577
7108
|
},
|
6578
7109
|
"domainId": {},
|
6579
7110
|
"externalIdentifier": {
|
6580
|
-
"shape": "
|
7111
|
+
"shape": "S2s"
|
6581
7112
|
},
|
6582
7113
|
"firstRevisionCreatedAt": {
|
6583
7114
|
"type": "timestamp"
|
6584
7115
|
},
|
6585
7116
|
"firstRevisionCreatedBy": {},
|
6586
7117
|
"glossaryTerms": {
|
6587
|
-
"shape": "
|
7118
|
+
"shape": "S2y"
|
6588
7119
|
},
|
6589
7120
|
"identifier": {},
|
6590
7121
|
"name": {
|
6591
|
-
"shape": "
|
7122
|
+
"shape": "S30"
|
6592
7123
|
},
|
6593
7124
|
"owningProjectId": {},
|
6594
7125
|
"typeIdentifier": {},
|
@@ -6609,7 +7140,7 @@
|
|
6609
7140
|
},
|
6610
7141
|
"createdBy": {},
|
6611
7142
|
"description": {
|
6612
|
-
"shape": "
|
7143
|
+
"shape": "S4d"
|
6613
7144
|
},
|
6614
7145
|
"domainId": {},
|
6615
7146
|
"firstRevisionCreatedAt": {
|
@@ -6617,11 +7148,11 @@
|
|
6617
7148
|
},
|
6618
7149
|
"firstRevisionCreatedBy": {},
|
6619
7150
|
"glossaryTerms": {
|
6620
|
-
"shape": "
|
7151
|
+
"shape": "S2y"
|
6621
7152
|
},
|
6622
7153
|
"id": {},
|
6623
7154
|
"name": {
|
6624
|
-
"shape": "
|
7155
|
+
"shape": "S4j"
|
6625
7156
|
},
|
6626
7157
|
"owningProjectId": {}
|
6627
7158
|
}
|
@@ -6641,12 +7172,12 @@
|
|
6641
7172
|
},
|
6642
7173
|
"createdBy": {},
|
6643
7174
|
"description": {
|
6644
|
-
"shape": "
|
7175
|
+
"shape": "S7r"
|
6645
7176
|
},
|
6646
7177
|
"domainId": {},
|
6647
7178
|
"id": {},
|
6648
7179
|
"name": {
|
6649
|
-
"shape": "
|
7180
|
+
"shape": "S7s"
|
6650
7181
|
},
|
6651
7182
|
"owningProjectId": {},
|
6652
7183
|
"status": {},
|
@@ -6674,17 +7205,17 @@
|
|
6674
7205
|
"glossaryId": {},
|
6675
7206
|
"id": {},
|
6676
7207
|
"longDescription": {
|
6677
|
-
"shape": "
|
7208
|
+
"shape": "S7x"
|
6678
7209
|
},
|
6679
7210
|
"name": {
|
6680
|
-
"shape": "
|
7211
|
+
"shape": "S13"
|
6681
7212
|
},
|
6682
7213
|
"shortDescription": {
|
6683
|
-
"shape": "
|
7214
|
+
"shape": "S14"
|
6684
7215
|
},
|
6685
7216
|
"status": {},
|
6686
7217
|
"termRelations": {
|
6687
|
-
"shape": "
|
7218
|
+
"shape": "S7z"
|
6688
7219
|
},
|
6689
7220
|
"updatedAt": {
|
6690
7221
|
"type": "timestamp"
|
@@ -6740,7 +7271,7 @@
|
|
6740
7271
|
"members": {
|
6741
7272
|
"domainId": {},
|
6742
7273
|
"groupName": {
|
6743
|
-
"shape": "
|
7274
|
+
"shape": "S85"
|
6744
7275
|
},
|
6745
7276
|
"id": {},
|
6746
7277
|
"status": {}
|
@@ -6763,25 +7294,25 @@
|
|
6763
7294
|
],
|
6764
7295
|
"members": {
|
6765
7296
|
"additionalAttributes": {
|
6766
|
-
"shape": "
|
7297
|
+
"shape": "Si2"
|
6767
7298
|
},
|
6768
7299
|
"domainIdentifier": {
|
6769
7300
|
"location": "uri",
|
6770
7301
|
"locationName": "domainIdentifier"
|
6771
7302
|
},
|
6772
7303
|
"filters": {
|
6773
|
-
"shape": "
|
7304
|
+
"shape": "Si4"
|
6774
7305
|
},
|
6775
7306
|
"maxResults": {
|
6776
7307
|
"type": "integer"
|
6777
7308
|
},
|
6778
7309
|
"nextToken": {},
|
6779
7310
|
"searchIn": {
|
6780
|
-
"shape": "
|
7311
|
+
"shape": "Si9"
|
6781
7312
|
},
|
6782
7313
|
"searchText": {},
|
6783
7314
|
"sort": {
|
6784
|
-
"shape": "
|
7315
|
+
"shape": "Sid"
|
6785
7316
|
}
|
6786
7317
|
}
|
6787
7318
|
},
|
@@ -6801,7 +7332,7 @@
|
|
6801
7332
|
"members": {
|
6802
7333
|
"forms": {},
|
6803
7334
|
"latestTimeSeriesDataPointForms": {
|
6804
|
-
"shape": "
|
7335
|
+
"shape": "S38"
|
6805
7336
|
}
|
6806
7337
|
}
|
6807
7338
|
},
|
@@ -6809,20 +7340,20 @@
|
|
6809
7340
|
"type": "timestamp"
|
6810
7341
|
},
|
6811
7342
|
"description": {
|
6812
|
-
"shape": "
|
7343
|
+
"shape": "Su"
|
6813
7344
|
},
|
6814
7345
|
"entityId": {},
|
6815
7346
|
"entityRevision": {},
|
6816
7347
|
"entityType": {},
|
6817
7348
|
"glossaryTerms": {
|
6818
|
-
"shape": "
|
7349
|
+
"shape": "S11"
|
6819
7350
|
},
|
6820
7351
|
"listingCreatedBy": {},
|
6821
7352
|
"listingId": {},
|
6822
7353
|
"listingRevision": {},
|
6823
7354
|
"listingUpdatedBy": {},
|
6824
7355
|
"name": {
|
6825
|
-
"shape": "
|
7356
|
+
"shape": "S30"
|
6826
7357
|
},
|
6827
7358
|
"owningProjectId": {}
|
6828
7359
|
}
|
@@ -6840,12 +7371,12 @@
|
|
6840
7371
|
"type": "timestamp"
|
6841
7372
|
},
|
6842
7373
|
"description": {
|
6843
|
-
"shape": "
|
7374
|
+
"shape": "Su"
|
6844
7375
|
},
|
6845
7376
|
"entityId": {},
|
6846
7377
|
"entityRevision": {},
|
6847
7378
|
"glossaryTerms": {
|
6848
|
-
"shape": "
|
7379
|
+
"shape": "S11"
|
6849
7380
|
},
|
6850
7381
|
"items": {
|
6851
7382
|
"type": "list",
|
@@ -6853,7 +7384,7 @@
|
|
6853
7384
|
"type": "structure",
|
6854
7385
|
"members": {
|
6855
7386
|
"glossaryTerms": {
|
6856
|
-
"shape": "
|
7387
|
+
"shape": "S11"
|
6857
7388
|
},
|
6858
7389
|
"listingId": {},
|
6859
7390
|
"listingRevision": {}
|
@@ -6865,7 +7396,7 @@
|
|
6865
7396
|
"listingRevision": {},
|
6866
7397
|
"listingUpdatedBy": {},
|
6867
7398
|
"name": {
|
6868
|
-
"shape": "
|
7399
|
+
"shape": "S4j"
|
6869
7400
|
},
|
6870
7401
|
"owningProjectId": {}
|
6871
7402
|
}
|
@@ -6899,7 +7430,7 @@
|
|
6899
7430
|
"locationName": "domainIdentifier"
|
6900
7431
|
},
|
6901
7432
|
"filters": {
|
6902
|
-
"shape": "
|
7433
|
+
"shape": "Si4"
|
6903
7434
|
},
|
6904
7435
|
"managed": {
|
6905
7436
|
"type": "boolean"
|
@@ -6909,12 +7440,12 @@
|
|
6909
7440
|
},
|
6910
7441
|
"nextToken": {},
|
6911
7442
|
"searchIn": {
|
6912
|
-
"shape": "
|
7443
|
+
"shape": "Si9"
|
6913
7444
|
},
|
6914
7445
|
"searchScope": {},
|
6915
7446
|
"searchText": {},
|
6916
7447
|
"sort": {
|
6917
|
-
"shape": "
|
7448
|
+
"shape": "Sid"
|
6918
7449
|
}
|
6919
7450
|
}
|
6920
7451
|
},
|
@@ -6941,11 +7472,11 @@
|
|
6941
7472
|
},
|
6942
7473
|
"createdBy": {},
|
6943
7474
|
"description": {
|
6944
|
-
"shape": "
|
7475
|
+
"shape": "Su"
|
6945
7476
|
},
|
6946
7477
|
"domainId": {},
|
6947
7478
|
"formsOutput": {
|
6948
|
-
"shape": "
|
7479
|
+
"shape": "S4a"
|
6949
7480
|
},
|
6950
7481
|
"name": {},
|
6951
7482
|
"originDomainId": {},
|
@@ -6971,17 +7502,17 @@
|
|
6971
7502
|
},
|
6972
7503
|
"createdBy": {},
|
6973
7504
|
"description": {
|
6974
|
-
"shape": "
|
7505
|
+
"shape": "Su"
|
6975
7506
|
},
|
6976
7507
|
"domainId": {},
|
6977
7508
|
"imports": {
|
6978
|
-
"shape": "
|
7509
|
+
"shape": "Scb"
|
6979
7510
|
},
|
6980
7511
|
"model": {
|
6981
|
-
"shape": "
|
7512
|
+
"shape": "S7m"
|
6982
7513
|
},
|
6983
7514
|
"name": {
|
6984
|
-
"shape": "
|
7515
|
+
"shape": "S37"
|
6985
7516
|
},
|
6986
7517
|
"originDomainId": {},
|
6987
7518
|
"originProjectId": {},
|
@@ -7005,7 +7536,7 @@
|
|
7005
7536
|
"description": {},
|
7006
7537
|
"domainId": {},
|
7007
7538
|
"formsOutput": {
|
7008
|
-
"shape": "
|
7539
|
+
"shape": "S4a"
|
7009
7540
|
},
|
7010
7541
|
"name": {},
|
7011
7542
|
"revision": {},
|
@@ -7062,7 +7593,7 @@
|
|
7062
7593
|
"type": "structure",
|
7063
7594
|
"members": {
|
7064
7595
|
"details": {
|
7065
|
-
"shape": "
|
7596
|
+
"shape": "S9k"
|
7066
7597
|
},
|
7067
7598
|
"domainId": {},
|
7068
7599
|
"id": {},
|
@@ -7114,29 +7645,29 @@
|
|
7114
7645
|
],
|
7115
7646
|
"members": {
|
7116
7647
|
"createdAt": {
|
7117
|
-
"shape": "
|
7648
|
+
"shape": "S5r"
|
7118
7649
|
},
|
7119
7650
|
"dataSourceConfigurationSnapshot": {},
|
7120
7651
|
"dataSourceId": {},
|
7121
7652
|
"domainId": {},
|
7122
7653
|
"errorMessage": {
|
7123
|
-
"shape": "
|
7654
|
+
"shape": "S5s"
|
7124
7655
|
},
|
7125
7656
|
"id": {},
|
7126
7657
|
"projectId": {},
|
7127
7658
|
"runStatisticsForAssets": {
|
7128
|
-
"shape": "
|
7659
|
+
"shape": "Sbh"
|
7129
7660
|
},
|
7130
7661
|
"startedAt": {
|
7131
|
-
"shape": "
|
7662
|
+
"shape": "S5r"
|
7132
7663
|
},
|
7133
7664
|
"status": {},
|
7134
7665
|
"stoppedAt": {
|
7135
|
-
"shape": "
|
7666
|
+
"shape": "S5r"
|
7136
7667
|
},
|
7137
7668
|
"type": {},
|
7138
7669
|
"updatedAt": {
|
7139
|
-
"shape": "
|
7670
|
+
"shape": "S5r"
|
7140
7671
|
}
|
7141
7672
|
}
|
7142
7673
|
},
|
@@ -7165,7 +7696,7 @@
|
|
7165
7696
|
},
|
7166
7697
|
"owningProjectIdentifier": {},
|
7167
7698
|
"target": {
|
7168
|
-
"shape": "
|
7699
|
+
"shape": "Sd1"
|
7169
7700
|
},
|
7170
7701
|
"type": {}
|
7171
7702
|
}
|
@@ -7207,7 +7738,7 @@
|
|
7207
7738
|
"locationName": "resourceArn"
|
7208
7739
|
},
|
7209
7740
|
"tags": {
|
7210
|
-
"shape": "
|
7741
|
+
"shape": "S63"
|
7211
7742
|
}
|
7212
7743
|
}
|
7213
7744
|
},
|
@@ -7266,10 +7797,10 @@
|
|
7266
7797
|
"locationName": "assetIdentifier"
|
7267
7798
|
},
|
7268
7799
|
"configuration": {
|
7269
|
-
"shape": "
|
7800
|
+
"shape": "S3h"
|
7270
7801
|
},
|
7271
7802
|
"description": {
|
7272
|
-
"shape": "
|
7803
|
+
"shape": "Su"
|
7273
7804
|
},
|
7274
7805
|
"domainIdentifier": {
|
7275
7806
|
"location": "uri",
|
@@ -7294,23 +7825,23 @@
|
|
7294
7825
|
"members": {
|
7295
7826
|
"assetId": {},
|
7296
7827
|
"configuration": {
|
7297
|
-
"shape": "
|
7828
|
+
"shape": "S3h"
|
7298
7829
|
},
|
7299
7830
|
"createdAt": {
|
7300
7831
|
"type": "timestamp"
|
7301
7832
|
},
|
7302
7833
|
"description": {
|
7303
|
-
"shape": "
|
7834
|
+
"shape": "Su"
|
7304
7835
|
},
|
7305
7836
|
"domainId": {},
|
7306
7837
|
"effectiveColumnNames": {
|
7307
|
-
"shape": "
|
7838
|
+
"shape": "S3j"
|
7308
7839
|
},
|
7309
7840
|
"effectiveRowFilter": {},
|
7310
7841
|
"errorMessage": {},
|
7311
7842
|
"id": {},
|
7312
7843
|
"name": {
|
7313
|
-
"shape": "
|
7844
|
+
"shape": "S41"
|
7314
7845
|
},
|
7315
7846
|
"status": {}
|
7316
7847
|
}
|
@@ -7331,13 +7862,13 @@
|
|
7331
7862
|
],
|
7332
7863
|
"members": {
|
7333
7864
|
"assetFormsInput": {
|
7334
|
-
"shape": "
|
7865
|
+
"shape": "S2t"
|
7335
7866
|
},
|
7336
7867
|
"configuration": {
|
7337
|
-
"shape": "
|
7868
|
+
"shape": "S4q"
|
7338
7869
|
},
|
7339
7870
|
"description": {
|
7340
|
-
"shape": "
|
7871
|
+
"shape": "Su"
|
7341
7872
|
},
|
7342
7873
|
"domainIdentifier": {
|
7343
7874
|
"location": "uri",
|
@@ -7349,19 +7880,19 @@
|
|
7349
7880
|
"locationName": "identifier"
|
7350
7881
|
},
|
7351
7882
|
"name": {
|
7352
|
-
"shape": "
|
7883
|
+
"shape": "S5b"
|
7353
7884
|
},
|
7354
7885
|
"publishOnImport": {
|
7355
7886
|
"type": "boolean"
|
7356
7887
|
},
|
7357
7888
|
"recommendation": {
|
7358
|
-
"shape": "
|
7889
|
+
"shape": "S5c"
|
7359
7890
|
},
|
7360
7891
|
"retainPermissionsOnRevokeFailure": {
|
7361
7892
|
"type": "boolean"
|
7362
7893
|
},
|
7363
7894
|
"schedule": {
|
7364
|
-
"shape": "
|
7895
|
+
"shape": "S5d"
|
7365
7896
|
}
|
7366
7897
|
}
|
7367
7898
|
},
|
@@ -7376,54 +7907,54 @@
|
|
7376
7907
|
],
|
7377
7908
|
"members": {
|
7378
7909
|
"assetFormsOutput": {
|
7379
|
-
"shape": "
|
7910
|
+
"shape": "S35"
|
7380
7911
|
},
|
7381
7912
|
"configuration": {
|
7382
|
-
"shape": "
|
7913
|
+
"shape": "S5i"
|
7383
7914
|
},
|
7384
7915
|
"createdAt": {
|
7385
|
-
"shape": "
|
7916
|
+
"shape": "S5r"
|
7386
7917
|
},
|
7387
7918
|
"description": {
|
7388
|
-
"shape": "
|
7919
|
+
"shape": "Su"
|
7389
7920
|
},
|
7390
7921
|
"domainId": {},
|
7391
7922
|
"enableSetting": {},
|
7392
7923
|
"environmentId": {},
|
7393
7924
|
"errorMessage": {
|
7394
|
-
"shape": "
|
7925
|
+
"shape": "S5s"
|
7395
7926
|
},
|
7396
7927
|
"id": {},
|
7397
7928
|
"lastRunAt": {
|
7398
|
-
"shape": "
|
7929
|
+
"shape": "S5r"
|
7399
7930
|
},
|
7400
7931
|
"lastRunErrorMessage": {
|
7401
|
-
"shape": "
|
7932
|
+
"shape": "S5s"
|
7402
7933
|
},
|
7403
7934
|
"lastRunStatus": {},
|
7404
7935
|
"name": {
|
7405
|
-
"shape": "
|
7936
|
+
"shape": "S5b"
|
7406
7937
|
},
|
7407
7938
|
"projectId": {},
|
7408
7939
|
"publishOnImport": {
|
7409
7940
|
"type": "boolean"
|
7410
7941
|
},
|
7411
7942
|
"recommendation": {
|
7412
|
-
"shape": "
|
7943
|
+
"shape": "S5c"
|
7413
7944
|
},
|
7414
7945
|
"retainPermissionsOnRevokeFailure": {
|
7415
7946
|
"type": "boolean"
|
7416
7947
|
},
|
7417
7948
|
"schedule": {
|
7418
|
-
"shape": "
|
7949
|
+
"shape": "S5d"
|
7419
7950
|
},
|
7420
7951
|
"selfGrantStatus": {
|
7421
|
-
"shape": "
|
7952
|
+
"shape": "Sa2"
|
7422
7953
|
},
|
7423
7954
|
"status": {},
|
7424
7955
|
"type": {},
|
7425
7956
|
"updatedAt": {
|
7426
|
-
"shape": "
|
7957
|
+
"shape": "S5r"
|
7427
7958
|
}
|
7428
7959
|
}
|
7429
7960
|
},
|
@@ -7454,7 +7985,7 @@
|
|
7454
7985
|
},
|
7455
7986
|
"name": {},
|
7456
7987
|
"singleSignOn": {
|
7457
|
-
"shape": "
|
7988
|
+
"shape": "S60"
|
7458
7989
|
}
|
7459
7990
|
}
|
7460
7991
|
},
|
@@ -7471,13 +8002,76 @@
|
|
7471
8002
|
"type": "timestamp"
|
7472
8003
|
},
|
7473
8004
|
"name": {},
|
8005
|
+
"rootDomainUnitId": {},
|
7474
8006
|
"singleSignOn": {
|
7475
|
-
"shape": "
|
8007
|
+
"shape": "S60"
|
7476
8008
|
}
|
7477
8009
|
}
|
7478
8010
|
},
|
7479
8011
|
"idempotent": true
|
7480
8012
|
},
|
8013
|
+
"UpdateDomainUnit": {
|
8014
|
+
"http": {
|
8015
|
+
"method": "PUT",
|
8016
|
+
"requestUri": "/v2/domains/{domainIdentifier}/domain-units/{identifier}",
|
8017
|
+
"responseCode": 200
|
8018
|
+
},
|
8019
|
+
"input": {
|
8020
|
+
"type": "structure",
|
8021
|
+
"required": [
|
8022
|
+
"domainIdentifier",
|
8023
|
+
"identifier"
|
8024
|
+
],
|
8025
|
+
"members": {
|
8026
|
+
"description": {
|
8027
|
+
"shape": "S69"
|
8028
|
+
},
|
8029
|
+
"domainIdentifier": {
|
8030
|
+
"location": "uri",
|
8031
|
+
"locationName": "domainIdentifier"
|
8032
|
+
},
|
8033
|
+
"identifier": {
|
8034
|
+
"location": "uri",
|
8035
|
+
"locationName": "identifier"
|
8036
|
+
},
|
8037
|
+
"name": {
|
8038
|
+
"shape": "S6a"
|
8039
|
+
}
|
8040
|
+
}
|
8041
|
+
},
|
8042
|
+
"output": {
|
8043
|
+
"type": "structure",
|
8044
|
+
"required": [
|
8045
|
+
"domainId",
|
8046
|
+
"id",
|
8047
|
+
"name",
|
8048
|
+
"owners"
|
8049
|
+
],
|
8050
|
+
"members": {
|
8051
|
+
"createdAt": {
|
8052
|
+
"type": "timestamp"
|
8053
|
+
},
|
8054
|
+
"createdBy": {},
|
8055
|
+
"description": {
|
8056
|
+
"shape": "S69"
|
8057
|
+
},
|
8058
|
+
"domainId": {},
|
8059
|
+
"id": {},
|
8060
|
+
"lastUpdatedAt": {
|
8061
|
+
"type": "timestamp"
|
8062
|
+
},
|
8063
|
+
"lastUpdatedBy": {},
|
8064
|
+
"name": {
|
8065
|
+
"shape": "S6a"
|
8066
|
+
},
|
8067
|
+
"owners": {
|
8068
|
+
"shape": "S6d"
|
8069
|
+
},
|
8070
|
+
"parentDomainUnitId": {}
|
8071
|
+
}
|
8072
|
+
},
|
8073
|
+
"idempotent": true
|
8074
|
+
},
|
7481
8075
|
"UpdateEnvironment": {
|
7482
8076
|
"http": {
|
7483
8077
|
"method": "PATCH",
|
@@ -7497,7 +8091,7 @@
|
|
7497
8091
|
"locationName": "domainIdentifier"
|
7498
8092
|
},
|
7499
8093
|
"glossaryTerms": {
|
7500
|
-
"shape": "
|
8094
|
+
"shape": "S2y"
|
7501
8095
|
},
|
7502
8096
|
"identifier": {
|
7503
8097
|
"location": "uri",
|
@@ -7519,45 +8113,45 @@
|
|
7519
8113
|
"awsAccountId": {},
|
7520
8114
|
"awsAccountRegion": {},
|
7521
8115
|
"createdAt": {
|
7522
|
-
"shape": "
|
8116
|
+
"shape": "S6o"
|
7523
8117
|
},
|
7524
8118
|
"createdBy": {},
|
7525
8119
|
"deploymentProperties": {
|
7526
|
-
"shape": "
|
8120
|
+
"shape": "S6p"
|
7527
8121
|
},
|
7528
8122
|
"description": {
|
7529
|
-
"shape": "
|
8123
|
+
"shape": "Su"
|
7530
8124
|
},
|
7531
8125
|
"domainId": {},
|
7532
8126
|
"environmentActions": {
|
7533
|
-
"shape": "
|
8127
|
+
"shape": "S6s"
|
7534
8128
|
},
|
7535
8129
|
"environmentBlueprintId": {},
|
7536
8130
|
"environmentProfileId": {},
|
7537
8131
|
"glossaryTerms": {
|
7538
|
-
"shape": "
|
8132
|
+
"shape": "S2y"
|
7539
8133
|
},
|
7540
8134
|
"id": {},
|
7541
8135
|
"lastDeployment": {
|
7542
|
-
"shape": "
|
8136
|
+
"shape": "S6y"
|
7543
8137
|
},
|
7544
8138
|
"name": {
|
7545
|
-
"shape": "
|
8139
|
+
"shape": "S74"
|
7546
8140
|
},
|
7547
8141
|
"projectId": {},
|
7548
8142
|
"provider": {},
|
7549
8143
|
"provisionedResources": {
|
7550
|
-
"shape": "
|
8144
|
+
"shape": "S75"
|
7551
8145
|
},
|
7552
8146
|
"provisioningProperties": {
|
7553
|
-
"shape": "
|
8147
|
+
"shape": "S77"
|
7554
8148
|
},
|
7555
8149
|
"status": {},
|
7556
8150
|
"updatedAt": {
|
7557
|
-
"shape": "
|
8151
|
+
"shape": "S6o"
|
7558
8152
|
},
|
7559
8153
|
"userParameters": {
|
7560
|
-
"shape": "
|
8154
|
+
"shape": "S7a"
|
7561
8155
|
}
|
7562
8156
|
}
|
7563
8157
|
}
|
@@ -7591,7 +8185,7 @@
|
|
7591
8185
|
},
|
7592
8186
|
"name": {},
|
7593
8187
|
"parameters": {
|
7594
|
-
"shape": "
|
8188
|
+
"shape": "S7e"
|
7595
8189
|
}
|
7596
8190
|
}
|
7597
8191
|
},
|
@@ -7611,7 +8205,7 @@
|
|
7611
8205
|
"id": {},
|
7612
8206
|
"name": {},
|
7613
8207
|
"parameters": {
|
7614
|
-
"shape": "
|
8208
|
+
"shape": "S7e"
|
7615
8209
|
}
|
7616
8210
|
}
|
7617
8211
|
}
|
@@ -7641,10 +8235,10 @@
|
|
7641
8235
|
"locationName": "identifier"
|
7642
8236
|
},
|
7643
8237
|
"name": {
|
7644
|
-
"shape": "
|
8238
|
+
"shape": "S7j"
|
7645
8239
|
},
|
7646
8240
|
"userParameters": {
|
7647
|
-
"shape": "
|
8241
|
+
"shape": "S6j"
|
7648
8242
|
}
|
7649
8243
|
}
|
7650
8244
|
},
|
@@ -7661,24 +8255,24 @@
|
|
7661
8255
|
"awsAccountId": {},
|
7662
8256
|
"awsAccountRegion": {},
|
7663
8257
|
"createdAt": {
|
7664
|
-
"shape": "
|
8258
|
+
"shape": "S6o"
|
7665
8259
|
},
|
7666
8260
|
"createdBy": {},
|
7667
8261
|
"description": {
|
7668
|
-
"shape": "
|
8262
|
+
"shape": "Su"
|
7669
8263
|
},
|
7670
8264
|
"domainId": {},
|
7671
8265
|
"environmentBlueprintId": {},
|
7672
8266
|
"id": {},
|
7673
8267
|
"name": {
|
7674
|
-
"shape": "
|
8268
|
+
"shape": "S7j"
|
7675
8269
|
},
|
7676
8270
|
"projectId": {},
|
7677
8271
|
"updatedAt": {
|
7678
|
-
"shape": "
|
8272
|
+
"shape": "S6o"
|
7679
8273
|
},
|
7680
8274
|
"userParameters": {
|
7681
|
-
"shape": "
|
8275
|
+
"shape": "S7a"
|
7682
8276
|
}
|
7683
8277
|
}
|
7684
8278
|
}
|
@@ -7700,7 +8294,7 @@
|
|
7700
8294
|
"idempotencyToken": true
|
7701
8295
|
},
|
7702
8296
|
"description": {
|
7703
|
-
"shape": "
|
8297
|
+
"shape": "S7r"
|
7704
8298
|
},
|
7705
8299
|
"domainIdentifier": {
|
7706
8300
|
"location": "uri",
|
@@ -7711,7 +8305,7 @@
|
|
7711
8305
|
"locationName": "identifier"
|
7712
8306
|
},
|
7713
8307
|
"name": {
|
7714
|
-
"shape": "
|
8308
|
+
"shape": "S7s"
|
7715
8309
|
},
|
7716
8310
|
"status": {}
|
7717
8311
|
}
|
@@ -7726,12 +8320,12 @@
|
|
7726
8320
|
],
|
7727
8321
|
"members": {
|
7728
8322
|
"description": {
|
7729
|
-
"shape": "
|
8323
|
+
"shape": "S7r"
|
7730
8324
|
},
|
7731
8325
|
"domainId": {},
|
7732
8326
|
"id": {},
|
7733
8327
|
"name": {
|
7734
|
-
"shape": "
|
8328
|
+
"shape": "S7s"
|
7735
8329
|
},
|
7736
8330
|
"owningProjectId": {},
|
7737
8331
|
"status": {}
|
@@ -7762,17 +8356,17 @@
|
|
7762
8356
|
"locationName": "identifier"
|
7763
8357
|
},
|
7764
8358
|
"longDescription": {
|
7765
|
-
"shape": "
|
8359
|
+
"shape": "S7x"
|
7766
8360
|
},
|
7767
8361
|
"name": {
|
7768
|
-
"shape": "
|
8362
|
+
"shape": "S13"
|
7769
8363
|
},
|
7770
8364
|
"shortDescription": {
|
7771
|
-
"shape": "
|
8365
|
+
"shape": "S14"
|
7772
8366
|
},
|
7773
8367
|
"status": {},
|
7774
8368
|
"termRelations": {
|
7775
|
-
"shape": "
|
8369
|
+
"shape": "S7z"
|
7776
8370
|
}
|
7777
8371
|
}
|
7778
8372
|
},
|
@@ -7790,17 +8384,17 @@
|
|
7790
8384
|
"glossaryId": {},
|
7791
8385
|
"id": {},
|
7792
8386
|
"longDescription": {
|
7793
|
-
"shape": "
|
8387
|
+
"shape": "S7x"
|
7794
8388
|
},
|
7795
8389
|
"name": {
|
7796
|
-
"shape": "
|
8390
|
+
"shape": "S13"
|
7797
8391
|
},
|
7798
8392
|
"shortDescription": {
|
7799
|
-
"shape": "
|
8393
|
+
"shape": "S14"
|
7800
8394
|
},
|
7801
8395
|
"status": {},
|
7802
8396
|
"termRelations": {
|
7803
|
-
"shape": "
|
8397
|
+
"shape": "S7z"
|
7804
8398
|
}
|
7805
8399
|
}
|
7806
8400
|
},
|
@@ -7836,7 +8430,7 @@
|
|
7836
8430
|
"members": {
|
7837
8431
|
"domainId": {},
|
7838
8432
|
"groupName": {
|
7839
|
-
"shape": "
|
8433
|
+
"shape": "S85"
|
7840
8434
|
},
|
7841
8435
|
"id": {},
|
7842
8436
|
"status": {}
|
@@ -7857,21 +8451,21 @@
|
|
7857
8451
|
],
|
7858
8452
|
"members": {
|
7859
8453
|
"description": {
|
7860
|
-
"shape": "
|
8454
|
+
"shape": "Su"
|
7861
8455
|
},
|
7862
8456
|
"domainIdentifier": {
|
7863
8457
|
"location": "uri",
|
7864
8458
|
"locationName": "domainIdentifier"
|
7865
8459
|
},
|
7866
8460
|
"glossaryTerms": {
|
7867
|
-
"shape": "
|
8461
|
+
"shape": "S2y"
|
7868
8462
|
},
|
7869
8463
|
"identifier": {
|
7870
8464
|
"location": "uri",
|
7871
8465
|
"locationName": "identifier"
|
7872
8466
|
},
|
7873
8467
|
"name": {
|
7874
|
-
"shape": "
|
8468
|
+
"shape": "S1d"
|
7875
8469
|
}
|
7876
8470
|
}
|
7877
8471
|
},
|
@@ -7885,25 +8479,26 @@
|
|
7885
8479
|
],
|
7886
8480
|
"members": {
|
7887
8481
|
"createdAt": {
|
7888
|
-
"shape": "
|
8482
|
+
"shape": "S6o"
|
7889
8483
|
},
|
7890
8484
|
"createdBy": {},
|
7891
8485
|
"description": {
|
7892
|
-
"shape": "
|
8486
|
+
"shape": "Su"
|
7893
8487
|
},
|
7894
8488
|
"domainId": {},
|
8489
|
+
"domainUnitId": {},
|
7895
8490
|
"failureReasons": {
|
7896
|
-
"shape": "
|
8491
|
+
"shape": "S8e"
|
7897
8492
|
},
|
7898
8493
|
"glossaryTerms": {
|
7899
|
-
"shape": "
|
8494
|
+
"shape": "S2y"
|
7900
8495
|
},
|
7901
8496
|
"id": {},
|
7902
8497
|
"lastUpdatedAt": {
|
7903
|
-
"shape": "
|
8498
|
+
"shape": "S6o"
|
7904
8499
|
},
|
7905
8500
|
"name": {
|
7906
|
-
"shape": "
|
8501
|
+
"shape": "S1d"
|
7907
8502
|
},
|
7908
8503
|
"projectStatus": {}
|
7909
8504
|
}
|
@@ -7934,7 +8529,7 @@
|
|
7934
8529
|
"locationName": "domainIdentifier"
|
7935
8530
|
},
|
7936
8531
|
"failureCause": {
|
7937
|
-
"shape": "
|
8532
|
+
"shape": "S8u"
|
7938
8533
|
},
|
7939
8534
|
"identifier": {
|
7940
8535
|
"location": "uri",
|
@@ -7958,7 +8553,7 @@
|
|
7958
8553
|
],
|
7959
8554
|
"members": {
|
7960
8555
|
"assets": {
|
7961
|
-
"shape": "
|
8556
|
+
"shape": "S8s"
|
7962
8557
|
},
|
7963
8558
|
"createdAt": {
|
7964
8559
|
"type": "timestamp"
|
@@ -7966,7 +8561,7 @@
|
|
7966
8561
|
"createdBy": {},
|
7967
8562
|
"domainId": {},
|
7968
8563
|
"grantedEntity": {
|
7969
|
-
"shape": "
|
8564
|
+
"shape": "S8w"
|
7970
8565
|
},
|
7971
8566
|
"id": {},
|
7972
8567
|
"status": {},
|
@@ -8006,7 +8601,7 @@
|
|
8006
8601
|
"locationName": "identifier"
|
8007
8602
|
},
|
8008
8603
|
"requestReason": {
|
8009
|
-
"shape": "
|
8604
|
+
"shape": "Sq"
|
8010
8605
|
}
|
8011
8606
|
}
|
8012
8607
|
},
|
@@ -8029,25 +8624,25 @@
|
|
8029
8624
|
},
|
8030
8625
|
"createdBy": {},
|
8031
8626
|
"decisionComment": {
|
8032
|
-
"shape": "
|
8627
|
+
"shape": "Sl"
|
8033
8628
|
},
|
8034
8629
|
"domainId": {},
|
8035
8630
|
"id": {},
|
8036
8631
|
"requestReason": {
|
8037
|
-
"shape": "
|
8632
|
+
"shape": "Sq"
|
8038
8633
|
},
|
8039
8634
|
"reviewerId": {},
|
8040
8635
|
"status": {},
|
8041
8636
|
"subscribedListings": {
|
8042
8637
|
"type": "list",
|
8043
8638
|
"member": {
|
8044
|
-
"shape": "
|
8639
|
+
"shape": "St"
|
8045
8640
|
}
|
8046
8641
|
},
|
8047
8642
|
"subscribedPrincipals": {
|
8048
8643
|
"type": "list",
|
8049
8644
|
"member": {
|
8050
|
-
"shape": "
|
8645
|
+
"shape": "S1b"
|
8051
8646
|
}
|
8052
8647
|
},
|
8053
8648
|
"updatedAt": {
|
@@ -8073,10 +8668,10 @@
|
|
8073
8668
|
],
|
8074
8669
|
"members": {
|
8075
8670
|
"applicableAssetTypes": {
|
8076
|
-
"shape": "
|
8671
|
+
"shape": "S9a"
|
8077
8672
|
},
|
8078
8673
|
"authorizedPrincipals": {
|
8079
|
-
"shape": "
|
8674
|
+
"shape": "S9b"
|
8080
8675
|
},
|
8081
8676
|
"domainIdentifier": {
|
8082
8677
|
"location": "uri",
|
@@ -8092,11 +8687,11 @@
|
|
8092
8687
|
},
|
8093
8688
|
"manageAccessRole": {},
|
8094
8689
|
"name": {
|
8095
|
-
"shape": "
|
8690
|
+
"shape": "S9d"
|
8096
8691
|
},
|
8097
8692
|
"provider": {},
|
8098
8693
|
"subscriptionTargetConfig": {
|
8099
|
-
"shape": "
|
8694
|
+
"shape": "S9e"
|
8100
8695
|
}
|
8101
8696
|
}
|
8102
8697
|
},
|
@@ -8119,10 +8714,10 @@
|
|
8119
8714
|
],
|
8120
8715
|
"members": {
|
8121
8716
|
"applicableAssetTypes": {
|
8122
|
-
"shape": "
|
8717
|
+
"shape": "S9a"
|
8123
8718
|
},
|
8124
8719
|
"authorizedPrincipals": {
|
8125
|
-
"shape": "
|
8720
|
+
"shape": "S9b"
|
8126
8721
|
},
|
8127
8722
|
"createdAt": {
|
8128
8723
|
"type": "timestamp"
|
@@ -8133,12 +8728,12 @@
|
|
8133
8728
|
"id": {},
|
8134
8729
|
"manageAccessRole": {},
|
8135
8730
|
"name": {
|
8136
|
-
"shape": "
|
8731
|
+
"shape": "S9d"
|
8137
8732
|
},
|
8138
8733
|
"projectId": {},
|
8139
8734
|
"provider": {},
|
8140
8735
|
"subscriptionTargetConfig": {
|
8141
|
-
"shape": "
|
8736
|
+
"shape": "S9e"
|
8142
8737
|
},
|
8143
8738
|
"type": {},
|
8144
8739
|
"updatedAt": {
|
@@ -8179,7 +8774,7 @@
|
|
8179
8774
|
"type": "structure",
|
8180
8775
|
"members": {
|
8181
8776
|
"details": {
|
8182
|
-
"shape": "
|
8777
|
+
"shape": "S9k"
|
8183
8778
|
},
|
8184
8779
|
"domainId": {},
|
8185
8780
|
"id": {},
|
@@ -8190,15 +8785,19 @@
|
|
8190
8785
|
}
|
8191
8786
|
},
|
8192
8787
|
"shapes": {
|
8193
|
-
"
|
8788
|
+
"Sj": {
|
8789
|
+
"type": "list",
|
8790
|
+
"member": {}
|
8791
|
+
},
|
8792
|
+
"Sl": {
|
8194
8793
|
"type": "string",
|
8195
8794
|
"sensitive": true
|
8196
8795
|
},
|
8197
|
-
"
|
8796
|
+
"Sq": {
|
8198
8797
|
"type": "string",
|
8199
8798
|
"sensitive": true
|
8200
8799
|
},
|
8201
|
-
"
|
8800
|
+
"St": {
|
8202
8801
|
"type": "structure",
|
8203
8802
|
"required": [
|
8204
8803
|
"description",
|
@@ -8209,7 +8808,7 @@
|
|
8209
8808
|
],
|
8210
8809
|
"members": {
|
8211
8810
|
"description": {
|
8212
|
-
"shape": "
|
8811
|
+
"shape": "Su"
|
8213
8812
|
},
|
8214
8813
|
"id": {},
|
8215
8814
|
"item": {
|
@@ -8218,12 +8817,15 @@
|
|
8218
8817
|
"assetListing": {
|
8219
8818
|
"type": "structure",
|
8220
8819
|
"members": {
|
8820
|
+
"assetScope": {
|
8821
|
+
"shape": "Sy"
|
8822
|
+
},
|
8221
8823
|
"entityId": {},
|
8222
8824
|
"entityRevision": {},
|
8223
8825
|
"entityType": {},
|
8224
8826
|
"forms": {},
|
8225
8827
|
"glossaryTerms": {
|
8226
|
-
"shape": "
|
8828
|
+
"shape": "S11"
|
8227
8829
|
}
|
8228
8830
|
}
|
8229
8831
|
},
|
@@ -8245,7 +8847,7 @@
|
|
8245
8847
|
"entityId": {},
|
8246
8848
|
"entityRevision": {},
|
8247
8849
|
"glossaryTerms": {
|
8248
|
-
"shape": "
|
8850
|
+
"shape": "S11"
|
8249
8851
|
},
|
8250
8852
|
"name": {}
|
8251
8853
|
}
|
@@ -8259,33 +8861,49 @@
|
|
8259
8861
|
"revision": {}
|
8260
8862
|
}
|
8261
8863
|
},
|
8262
|
-
"
|
8864
|
+
"Su": {
|
8263
8865
|
"type": "string",
|
8264
8866
|
"sensitive": true
|
8265
8867
|
},
|
8266
|
-
"
|
8868
|
+
"Sy": {
|
8869
|
+
"type": "structure",
|
8870
|
+
"required": [
|
8871
|
+
"assetId",
|
8872
|
+
"filterIds",
|
8873
|
+
"status"
|
8874
|
+
],
|
8875
|
+
"members": {
|
8876
|
+
"assetId": {},
|
8877
|
+
"errorMessage": {},
|
8878
|
+
"filterIds": {
|
8879
|
+
"shape": "Sj"
|
8880
|
+
},
|
8881
|
+
"status": {}
|
8882
|
+
}
|
8883
|
+
},
|
8884
|
+
"S11": {
|
8267
8885
|
"type": "list",
|
8268
8886
|
"member": {
|
8269
8887
|
"type": "structure",
|
8270
8888
|
"members": {
|
8271
8889
|
"name": {
|
8272
|
-
"shape": "
|
8890
|
+
"shape": "S13"
|
8273
8891
|
},
|
8274
8892
|
"shortDescription": {
|
8275
|
-
"shape": "
|
8893
|
+
"shape": "S14"
|
8276
8894
|
}
|
8277
8895
|
}
|
8278
8896
|
}
|
8279
8897
|
},
|
8280
|
-
"
|
8898
|
+
"S13": {
|
8281
8899
|
"type": "string",
|
8282
8900
|
"sensitive": true
|
8283
8901
|
},
|
8284
|
-
"
|
8902
|
+
"S14": {
|
8285
8903
|
"type": "string",
|
8286
8904
|
"sensitive": true
|
8287
8905
|
},
|
8288
|
-
"
|
8906
|
+
"S1b": {
|
8289
8907
|
"type": "structure",
|
8290
8908
|
"members": {
|
8291
8909
|
"project": {
|
@@ -8293,22 +8911,204 @@
|
|
8293
8911
|
"members": {
|
8294
8912
|
"id": {},
|
8295
8913
|
"name": {
|
8296
|
-
"shape": "
|
8914
|
+
"shape": "S1d"
|
8297
8915
|
}
|
8298
8916
|
}
|
8299
8917
|
}
|
8300
8918
|
},
|
8301
8919
|
"union": true
|
8302
8920
|
},
|
8303
|
-
"
|
8921
|
+
"S1d": {
|
8304
8922
|
"type": "string",
|
8305
8923
|
"sensitive": true
|
8306
8924
|
},
|
8307
|
-
"
|
8925
|
+
"S1i": {
|
8926
|
+
"type": "structure",
|
8927
|
+
"members": {
|
8928
|
+
"group": {
|
8929
|
+
"type": "structure",
|
8930
|
+
"required": [
|
8931
|
+
"groupIdentifier"
|
8932
|
+
],
|
8933
|
+
"members": {
|
8934
|
+
"groupIdentifier": {}
|
8935
|
+
}
|
8936
|
+
},
|
8937
|
+
"user": {
|
8938
|
+
"type": "structure",
|
8939
|
+
"required": [
|
8940
|
+
"userIdentifier"
|
8941
|
+
],
|
8942
|
+
"members": {
|
8943
|
+
"userIdentifier": {}
|
8944
|
+
}
|
8945
|
+
}
|
8946
|
+
},
|
8947
|
+
"union": true
|
8948
|
+
},
|
8949
|
+
"S1p": {
|
8950
|
+
"type": "structure",
|
8951
|
+
"members": {
|
8952
|
+
"addToProjectMemberPool": {
|
8953
|
+
"type": "structure",
|
8954
|
+
"members": {
|
8955
|
+
"includeChildDomainUnits": {
|
8956
|
+
"type": "boolean"
|
8957
|
+
}
|
8958
|
+
}
|
8959
|
+
},
|
8960
|
+
"createAssetType": {
|
8961
|
+
"type": "structure",
|
8962
|
+
"members": {
|
8963
|
+
"includeChildDomainUnits": {
|
8964
|
+
"type": "boolean"
|
8965
|
+
}
|
8966
|
+
}
|
8967
|
+
},
|
8968
|
+
"createDomainUnit": {
|
8969
|
+
"type": "structure",
|
8970
|
+
"members": {
|
8971
|
+
"includeChildDomainUnits": {
|
8972
|
+
"type": "boolean"
|
8973
|
+
}
|
8974
|
+
}
|
8975
|
+
},
|
8976
|
+
"createEnvironment": {
|
8977
|
+
"shape": "S1u"
|
8978
|
+
},
|
8979
|
+
"createEnvironmentProfile": {
|
8980
|
+
"type": "structure",
|
8981
|
+
"members": {
|
8982
|
+
"domainUnitId": {}
|
8983
|
+
}
|
8984
|
+
},
|
8985
|
+
"createFormType": {
|
8986
|
+
"type": "structure",
|
8987
|
+
"members": {
|
8988
|
+
"includeChildDomainUnits": {
|
8989
|
+
"type": "boolean"
|
8990
|
+
}
|
8991
|
+
}
|
8992
|
+
},
|
8993
|
+
"createGlossary": {
|
8994
|
+
"type": "structure",
|
8995
|
+
"members": {
|
8996
|
+
"includeChildDomainUnits": {
|
8997
|
+
"type": "boolean"
|
8998
|
+
}
|
8999
|
+
}
|
9000
|
+
},
|
9001
|
+
"createProject": {
|
9002
|
+
"type": "structure",
|
9003
|
+
"members": {
|
9004
|
+
"includeChildDomainUnits": {
|
9005
|
+
"type": "boolean"
|
9006
|
+
}
|
9007
|
+
}
|
9008
|
+
},
|
9009
|
+
"delegateCreateEnvironmentProfile": {
|
9010
|
+
"shape": "S1u"
|
9011
|
+
},
|
9012
|
+
"overrideDomainUnitOwners": {
|
9013
|
+
"type": "structure",
|
9014
|
+
"members": {
|
9015
|
+
"includeChildDomainUnits": {
|
9016
|
+
"type": "boolean"
|
9017
|
+
}
|
9018
|
+
}
|
9019
|
+
},
|
9020
|
+
"overrideProjectOwners": {
|
9021
|
+
"type": "structure",
|
9022
|
+
"members": {
|
9023
|
+
"includeChildDomainUnits": {
|
9024
|
+
"type": "boolean"
|
9025
|
+
}
|
9026
|
+
}
|
9027
|
+
}
|
9028
|
+
},
|
9029
|
+
"union": true
|
9030
|
+
},
|
9031
|
+
"S1u": {
|
9032
|
+
"type": "structure",
|
9033
|
+
"members": {}
|
9034
|
+
},
|
9035
|
+
"S24": {
|
9036
|
+
"type": "structure",
|
9037
|
+
"members": {
|
9038
|
+
"domainUnit": {
|
9039
|
+
"type": "structure",
|
9040
|
+
"required": [
|
9041
|
+
"domainUnitDesignation"
|
9042
|
+
],
|
9043
|
+
"members": {
|
9044
|
+
"domainUnitDesignation": {},
|
9045
|
+
"domainUnitGrantFilter": {
|
9046
|
+
"type": "structure",
|
9047
|
+
"members": {
|
9048
|
+
"allDomainUnitsGrantFilter": {
|
9049
|
+
"type": "structure",
|
9050
|
+
"members": {}
|
9051
|
+
}
|
9052
|
+
},
|
9053
|
+
"union": true
|
9054
|
+
},
|
9055
|
+
"domainUnitIdentifier": {}
|
9056
|
+
}
|
9057
|
+
},
|
9058
|
+
"group": {
|
9059
|
+
"type": "structure",
|
9060
|
+
"members": {
|
9061
|
+
"groupIdentifier": {}
|
9062
|
+
},
|
9063
|
+
"union": true
|
9064
|
+
},
|
9065
|
+
"project": {
|
9066
|
+
"type": "structure",
|
9067
|
+
"required": [
|
9068
|
+
"projectDesignation"
|
9069
|
+
],
|
9070
|
+
"members": {
|
9071
|
+
"projectDesignation": {},
|
9072
|
+
"projectGrantFilter": {
|
9073
|
+
"type": "structure",
|
9074
|
+
"members": {
|
9075
|
+
"domainUnitFilter": {
|
9076
|
+
"type": "structure",
|
9077
|
+
"required": [
|
9078
|
+
"domainUnit"
|
9079
|
+
],
|
9080
|
+
"members": {
|
9081
|
+
"domainUnit": {},
|
9082
|
+
"includeChildDomainUnits": {
|
9083
|
+
"type": "boolean"
|
9084
|
+
}
|
9085
|
+
}
|
9086
|
+
}
|
9087
|
+
},
|
9088
|
+
"union": true
|
9089
|
+
},
|
9090
|
+
"projectIdentifier": {}
|
9091
|
+
}
|
9092
|
+
},
|
9093
|
+
"user": {
|
9094
|
+
"type": "structure",
|
9095
|
+
"members": {
|
9096
|
+
"allUsersGrantFilter": {
|
9097
|
+
"type": "structure",
|
9098
|
+
"members": {}
|
9099
|
+
},
|
9100
|
+
"userIdentifier": {}
|
9101
|
+
},
|
9102
|
+
"union": true
|
9103
|
+
}
|
9104
|
+
},
|
9105
|
+
"union": true
|
9106
|
+
},
|
9107
|
+
"S2s": {
|
8308
9108
|
"type": "string",
|
8309
9109
|
"sensitive": true
|
8310
9110
|
},
|
8311
|
-
"
|
9111
|
+
"S2t": {
|
8312
9112
|
"type": "list",
|
8313
9113
|
"member": {
|
8314
9114
|
"type": "structure",
|
@@ -8325,15 +9125,15 @@
|
|
8325
9125
|
},
|
8326
9126
|
"sensitive": true
|
8327
9127
|
},
|
8328
|
-
"
|
9128
|
+
"S2y": {
|
8329
9129
|
"type": "list",
|
8330
9130
|
"member": {}
|
8331
9131
|
},
|
8332
|
-
"
|
9132
|
+
"S30": {
|
8333
9133
|
"type": "string",
|
8334
9134
|
"sensitive": true
|
8335
9135
|
},
|
8336
|
-
"
|
9136
|
+
"S31": {
|
8337
9137
|
"type": "structure",
|
8338
9138
|
"members": {
|
8339
9139
|
"businessNameGeneration": {
|
@@ -8346,7 +9146,7 @@
|
|
8346
9146
|
}
|
8347
9147
|
}
|
8348
9148
|
},
|
8349
|
-
"
|
9149
|
+
"S35": {
|
8350
9150
|
"type": "list",
|
8351
9151
|
"member": {
|
8352
9152
|
"type": "structure",
|
@@ -8357,17 +9157,17 @@
|
|
8357
9157
|
"content": {},
|
8358
9158
|
"formName": {},
|
8359
9159
|
"typeName": {
|
8360
|
-
"shape": "
|
9160
|
+
"shape": "S37"
|
8361
9161
|
},
|
8362
9162
|
"typeRevision": {}
|
8363
9163
|
}
|
8364
9164
|
}
|
8365
9165
|
},
|
8366
|
-
"
|
9166
|
+
"S37": {
|
8367
9167
|
"type": "string",
|
8368
9168
|
"sensitive": true
|
8369
9169
|
},
|
8370
|
-
"
|
9170
|
+
"S38": {
|
8371
9171
|
"type": "list",
|
8372
9172
|
"member": {
|
8373
9173
|
"type": "structure",
|
@@ -8388,7 +9188,7 @@
|
|
8388
9188
|
}
|
8389
9189
|
}
|
8390
9190
|
},
|
8391
|
-
"
|
9191
|
+
"S3e": {
|
8392
9192
|
"type": "structure",
|
8393
9193
|
"required": [
|
8394
9194
|
"listingId",
|
@@ -8399,14 +9199,14 @@
|
|
8399
9199
|
"listingStatus": {}
|
8400
9200
|
}
|
8401
9201
|
},
|
8402
|
-
"
|
9202
|
+
"S3h": {
|
8403
9203
|
"type": "structure",
|
8404
9204
|
"members": {
|
8405
9205
|
"columnConfiguration": {
|
8406
9206
|
"type": "structure",
|
8407
9207
|
"members": {
|
8408
9208
|
"includedColumnNames": {
|
8409
|
-
"shape": "
|
9209
|
+
"shape": "S3j"
|
8410
9210
|
}
|
8411
9211
|
}
|
8412
9212
|
},
|
@@ -8417,7 +9217,7 @@
|
|
8417
9217
|
],
|
8418
9218
|
"members": {
|
8419
9219
|
"rowFilter": {
|
8420
|
-
"shape": "
|
9220
|
+
"shape": "S3l"
|
8421
9221
|
},
|
8422
9222
|
"sensitive": {
|
8423
9223
|
"type": "boolean"
|
@@ -8427,15 +9227,15 @@
|
|
8427
9227
|
},
|
8428
9228
|
"union": true
|
8429
9229
|
},
|
8430
|
-
"
|
9230
|
+
"S3j": {
|
8431
9231
|
"type": "list",
|
8432
9232
|
"member": {}
|
8433
9233
|
},
|
8434
|
-
"
|
9234
|
+
"S3l": {
|
8435
9235
|
"type": "structure",
|
8436
9236
|
"members": {
|
8437
9237
|
"and": {
|
8438
|
-
"shape": "
|
9238
|
+
"shape": "S3m"
|
8439
9239
|
},
|
8440
9240
|
"expression": {
|
8441
9241
|
"type": "structure",
|
@@ -8482,7 +9282,7 @@
|
|
8482
9282
|
"members": {
|
8483
9283
|
"columnName": {},
|
8484
9284
|
"values": {
|
8485
|
-
"shape": "
|
9285
|
+
"shape": "S3s"
|
8486
9286
|
}
|
8487
9287
|
}
|
8488
9288
|
},
|
@@ -8557,7 +9357,7 @@
|
|
8557
9357
|
"members": {
|
8558
9358
|
"columnName": {},
|
8559
9359
|
"values": {
|
8560
|
-
"shape": "
|
9360
|
+
"shape": "S3s"
|
8561
9361
|
}
|
8562
9362
|
}
|
8563
9363
|
},
|
@@ -8576,26 +9376,26 @@
|
|
8576
9376
|
"union": true
|
8577
9377
|
},
|
8578
9378
|
"or": {
|
8579
|
-
"shape": "
|
9379
|
+
"shape": "S3m"
|
8580
9380
|
}
|
8581
9381
|
},
|
8582
9382
|
"union": true
|
8583
9383
|
},
|
8584
|
-
"
|
9384
|
+
"S3m": {
|
8585
9385
|
"type": "list",
|
8586
9386
|
"member": {
|
8587
|
-
"shape": "
|
9387
|
+
"shape": "S3l"
|
8588
9388
|
}
|
8589
9389
|
},
|
8590
|
-
"
|
9390
|
+
"S3s": {
|
8591
9391
|
"type": "list",
|
8592
9392
|
"member": {}
|
8593
9393
|
},
|
8594
|
-
"
|
9394
|
+
"S41": {
|
8595
9395
|
"type": "string",
|
8596
9396
|
"sensitive": true
|
8597
9397
|
},
|
8598
|
-
"
|
9398
|
+
"S4a": {
|
8599
9399
|
"type": "map",
|
8600
9400
|
"key": {},
|
8601
9401
|
"value": {
|
@@ -8609,17 +9409,17 @@
|
|
8609
9409
|
"type": "boolean"
|
8610
9410
|
},
|
8611
9411
|
"typeName": {
|
8612
|
-
"shape": "
|
9412
|
+
"shape": "S37"
|
8613
9413
|
},
|
8614
9414
|
"typeRevision": {}
|
8615
9415
|
}
|
8616
9416
|
}
|
8617
9417
|
},
|
8618
|
-
"
|
9418
|
+
"S4d": {
|
8619
9419
|
"type": "string",
|
8620
9420
|
"sensitive": true
|
8621
9421
|
},
|
8622
|
-
"
|
9422
|
+
"S4e": {
|
8623
9423
|
"type": "list",
|
8624
9424
|
"member": {
|
8625
9425
|
"type": "structure",
|
@@ -8638,11 +9438,11 @@
|
|
8638
9438
|
}
|
8639
9439
|
}
|
8640
9440
|
},
|
8641
|
-
"
|
9441
|
+
"S4j": {
|
8642
9442
|
"type": "string",
|
8643
9443
|
"sensitive": true
|
8644
9444
|
},
|
8645
|
-
"
|
9445
|
+
"S4q": {
|
8646
9446
|
"type": "structure",
|
8647
9447
|
"members": {
|
8648
9448
|
"glueRunConfiguration": {
|
@@ -8656,7 +9456,7 @@
|
|
8656
9456
|
},
|
8657
9457
|
"dataAccessRole": {},
|
8658
9458
|
"relationalFilterConfigurations": {
|
8659
|
-
"shape": "
|
9459
|
+
"shape": "S4t"
|
8660
9460
|
}
|
8661
9461
|
}
|
8662
9462
|
},
|
@@ -8670,20 +9470,20 @@
|
|
8670
9470
|
"members": {
|
8671
9471
|
"dataAccessRole": {},
|
8672
9472
|
"redshiftCredentialConfiguration": {
|
8673
|
-
"shape": "
|
9473
|
+
"shape": "S53"
|
8674
9474
|
},
|
8675
9475
|
"redshiftStorage": {
|
8676
|
-
"shape": "
|
9476
|
+
"shape": "S55"
|
8677
9477
|
},
|
8678
9478
|
"relationalFilterConfigurations": {
|
8679
|
-
"shape": "
|
9479
|
+
"shape": "S4t"
|
8680
9480
|
}
|
8681
9481
|
}
|
8682
9482
|
}
|
8683
9483
|
},
|
8684
9484
|
"union": true
|
8685
9485
|
},
|
8686
|
-
"
|
9486
|
+
"S4t": {
|
8687
9487
|
"type": "list",
|
8688
9488
|
"member": {
|
8689
9489
|
"type": "structure",
|
@@ -8710,7 +9510,7 @@
|
|
8710
9510
|
}
|
8711
9511
|
}
|
8712
9512
|
},
|
8713
|
-
"
|
9513
|
+
"S53": {
|
8714
9514
|
"type": "structure",
|
8715
9515
|
"required": [
|
8716
9516
|
"secretManagerArn"
|
@@ -8719,7 +9519,7 @@
|
|
8719
9519
|
"secretManagerArn": {}
|
8720
9520
|
}
|
8721
9521
|
},
|
8722
|
-
"
|
9522
|
+
"S55": {
|
8723
9523
|
"type": "structure",
|
8724
9524
|
"members": {
|
8725
9525
|
"redshiftClusterSource": {
|
@@ -8743,11 +9543,11 @@
|
|
8743
9543
|
},
|
8744
9544
|
"union": true
|
8745
9545
|
},
|
8746
|
-
"
|
9546
|
+
"S5b": {
|
8747
9547
|
"type": "string",
|
8748
9548
|
"sensitive": true
|
8749
9549
|
},
|
8750
|
-
"
|
9550
|
+
"S5c": {
|
8751
9551
|
"type": "structure",
|
8752
9552
|
"members": {
|
8753
9553
|
"enableBusinessNameGeneration": {
|
@@ -8755,7 +9555,7 @@
|
|
8755
9555
|
}
|
8756
9556
|
}
|
8757
9557
|
},
|
8758
|
-
"
|
9558
|
+
"S5d": {
|
8759
9559
|
"type": "structure",
|
8760
9560
|
"members": {
|
8761
9561
|
"schedule": {},
|
@@ -8763,7 +9563,7 @@
|
|
8763
9563
|
},
|
8764
9564
|
"sensitive": true
|
8765
9565
|
},
|
8766
|
-
"
|
9566
|
+
"S5i": {
|
8767
9567
|
"type": "structure",
|
8768
9568
|
"members": {
|
8769
9569
|
"glueRunConfiguration": {
|
@@ -8779,7 +9579,7 @@
|
|
8779
9579
|
"dataAccessRole": {},
|
8780
9580
|
"region": {},
|
8781
9581
|
"relationalFilterConfigurations": {
|
8782
|
-
"shape": "
|
9582
|
+
"shape": "S4t"
|
8783
9583
|
}
|
8784
9584
|
}
|
8785
9585
|
},
|
@@ -8794,25 +9594,25 @@
|
|
8794
9594
|
"accountId": {},
|
8795
9595
|
"dataAccessRole": {},
|
8796
9596
|
"redshiftCredentialConfiguration": {
|
8797
|
-
"shape": "
|
9597
|
+
"shape": "S53"
|
8798
9598
|
},
|
8799
9599
|
"redshiftStorage": {
|
8800
|
-
"shape": "
|
9600
|
+
"shape": "S55"
|
8801
9601
|
},
|
8802
9602
|
"region": {},
|
8803
9603
|
"relationalFilterConfigurations": {
|
8804
|
-
"shape": "
|
9604
|
+
"shape": "S4t"
|
8805
9605
|
}
|
8806
9606
|
}
|
8807
9607
|
}
|
8808
9608
|
},
|
8809
9609
|
"union": true
|
8810
9610
|
},
|
8811
|
-
"
|
9611
|
+
"S5r": {
|
8812
9612
|
"type": "timestamp",
|
8813
9613
|
"timestampFormat": "iso8601"
|
8814
9614
|
},
|
8815
|
-
"
|
9615
|
+
"S5s": {
|
8816
9616
|
"type": "structure",
|
8817
9617
|
"required": [
|
8818
9618
|
"errorType"
|
@@ -8822,19 +9622,48 @@
|
|
8822
9622
|
"errorType": {}
|
8823
9623
|
}
|
8824
9624
|
},
|
8825
|
-
"
|
9625
|
+
"S60": {
|
8826
9626
|
"type": "structure",
|
8827
9627
|
"members": {
|
8828
9628
|
"type": {},
|
8829
9629
|
"userAssignment": {}
|
8830
9630
|
}
|
8831
9631
|
},
|
8832
|
-
"
|
9632
|
+
"S63": {
|
8833
9633
|
"type": "map",
|
8834
9634
|
"key": {},
|
8835
9635
|
"value": {}
|
8836
9636
|
},
|
8837
|
-
"
|
9637
|
+
"S69": {
|
9638
|
+
"type": "string",
|
9639
|
+
"sensitive": true
|
9640
|
+
},
|
9641
|
+
"S6a": {
|
9642
|
+
"type": "string",
|
9643
|
+
"sensitive": true
|
9644
|
+
},
|
9645
|
+
"S6d": {
|
9646
|
+
"type": "list",
|
9647
|
+
"member": {
|
9648
|
+
"type": "structure",
|
9649
|
+
"members": {
|
9650
|
+
"group": {
|
9651
|
+
"type": "structure",
|
9652
|
+
"members": {
|
9653
|
+
"groupId": {}
|
9654
|
+
}
|
9655
|
+
},
|
9656
|
+
"user": {
|
9657
|
+
"type": "structure",
|
9658
|
+
"members": {
|
9659
|
+
"userId": {}
|
9660
|
+
}
|
9661
|
+
}
|
9662
|
+
},
|
9663
|
+
"union": true
|
9664
|
+
}
|
9665
|
+
},
|
9666
|
+
"S6j": {
|
8838
9667
|
"type": "list",
|
8839
9668
|
"member": {
|
8840
9669
|
"type": "structure",
|
@@ -8844,11 +9673,11 @@
|
|
8844
9673
|
}
|
8845
9674
|
}
|
8846
9675
|
},
|
8847
|
-
"
|
9676
|
+
"S6o": {
|
8848
9677
|
"type": "timestamp",
|
8849
9678
|
"timestampFormat": "iso8601"
|
8850
9679
|
},
|
8851
|
-
"
|
9680
|
+
"S6p": {
|
8852
9681
|
"type": "structure",
|
8853
9682
|
"members": {
|
8854
9683
|
"endTimeoutMinutes": {
|
@@ -8859,7 +9688,7 @@
|
|
8859
9688
|
}
|
8860
9689
|
}
|
8861
9690
|
},
|
8862
|
-
"
|
9691
|
+
"S6s": {
|
8863
9692
|
"type": "list",
|
8864
9693
|
"member": {
|
8865
9694
|
"type": "structure",
|
@@ -8883,7 +9712,7 @@
|
|
8883
9712
|
}
|
8884
9713
|
}
|
8885
9714
|
},
|
8886
|
-
"
|
9715
|
+
"S6y": {
|
8887
9716
|
"type": "structure",
|
8888
9717
|
"members": {
|
8889
9718
|
"deploymentId": {},
|
@@ -8908,11 +9737,11 @@
|
|
8908
9737
|
}
|
8909
9738
|
}
|
8910
9739
|
},
|
8911
|
-
"
|
9740
|
+
"S74": {
|
8912
9741
|
"type": "string",
|
8913
9742
|
"sensitive": true
|
8914
9743
|
},
|
8915
|
-
"
|
9744
|
+
"S75": {
|
8916
9745
|
"type": "list",
|
8917
9746
|
"member": {
|
8918
9747
|
"type": "structure",
|
@@ -8928,7 +9757,7 @@
|
|
8928
9757
|
}
|
8929
9758
|
}
|
8930
9759
|
},
|
8931
|
-
"
|
9760
|
+
"S77": {
|
8932
9761
|
"type": "structure",
|
8933
9762
|
"members": {
|
8934
9763
|
"cloudFormation": {
|
@@ -8943,7 +9772,7 @@
|
|
8943
9772
|
},
|
8944
9773
|
"union": true
|
8945
9774
|
},
|
8946
|
-
"
|
9775
|
+
"S7a": {
|
8947
9776
|
"type": "list",
|
8948
9777
|
"member": {
|
8949
9778
|
"type": "structure",
|
@@ -8954,7 +9783,7 @@
|
|
8954
9783
|
"members": {
|
8955
9784
|
"defaultValue": {},
|
8956
9785
|
"description": {
|
8957
|
-
"shape": "
|
9786
|
+
"shape": "Su"
|
8958
9787
|
},
|
8959
9788
|
"fieldType": {},
|
8960
9789
|
"isEditable": {
|
@@ -8967,7 +9796,7 @@
|
|
8967
9796
|
}
|
8968
9797
|
}
|
8969
9798
|
},
|
8970
|
-
"
|
9799
|
+
"S7e": {
|
8971
9800
|
"type": "structure",
|
8972
9801
|
"members": {
|
8973
9802
|
"awsConsoleLink": {
|
@@ -8979,11 +9808,11 @@
|
|
8979
9808
|
},
|
8980
9809
|
"union": true
|
8981
9810
|
},
|
8982
|
-
"
|
9811
|
+
"S7j": {
|
8983
9812
|
"type": "string",
|
8984
9813
|
"sensitive": true
|
8985
9814
|
},
|
8986
|
-
"
|
9815
|
+
"S7m": {
|
8987
9816
|
"type": "structure",
|
8988
9817
|
"members": {
|
8989
9818
|
"smithy": {}
|
@@ -8991,19 +9820,19 @@
|
|
8991
9820
|
"sensitive": true,
|
8992
9821
|
"union": true
|
8993
9822
|
},
|
8994
|
-
"
|
9823
|
+
"S7r": {
|
8995
9824
|
"type": "string",
|
8996
9825
|
"sensitive": true
|
8997
9826
|
},
|
8998
|
-
"
|
9827
|
+
"S7s": {
|
8999
9828
|
"type": "string",
|
9000
9829
|
"sensitive": true
|
9001
9830
|
},
|
9002
|
-
"
|
9831
|
+
"S7x": {
|
9003
9832
|
"type": "string",
|
9004
9833
|
"sensitive": true
|
9005
9834
|
},
|
9006
|
-
"
|
9835
|
+
"S7z": {
|
9007
9836
|
"type": "structure",
|
9008
9837
|
"members": {
|
9009
9838
|
"classifies": {
|
@@ -9016,11 +9845,11 @@
|
|
9016
9845
|
}
|
9017
9846
|
}
|
9018
9847
|
},
|
9019
|
-
"
|
9848
|
+
"S85": {
|
9020
9849
|
"type": "string",
|
9021
9850
|
"sensitive": true
|
9022
9851
|
},
|
9023
|
-
"
|
9852
|
+
"S8e": {
|
9024
9853
|
"type": "list",
|
9025
9854
|
"member": {
|
9026
9855
|
"type": "structure",
|
@@ -9030,7 +9859,7 @@
|
|
9030
9859
|
}
|
9031
9860
|
}
|
9032
9861
|
},
|
9033
|
-
"
|
9862
|
+
"S8j": {
|
9034
9863
|
"type": "structure",
|
9035
9864
|
"members": {
|
9036
9865
|
"groupIdentifier": {},
|
@@ -9038,7 +9867,7 @@
|
|
9038
9867
|
},
|
9039
9868
|
"union": true
|
9040
9869
|
},
|
9041
|
-
"
|
9870
|
+
"S8s": {
|
9042
9871
|
"type": "list",
|
9043
9872
|
"member": {
|
9044
9873
|
"type": "structure",
|
@@ -9050,8 +9879,11 @@
|
|
9050
9879
|
"members": {
|
9051
9880
|
"assetId": {},
|
9052
9881
|
"assetRevision": {},
|
9882
|
+
"assetScope": {
|
9883
|
+
"shape": "Sy"
|
9884
|
+
},
|
9053
9885
|
"failureCause": {
|
9054
|
-
"shape": "
|
9886
|
+
"shape": "S8u"
|
9055
9887
|
},
|
9056
9888
|
"failureTimestamp": {
|
9057
9889
|
"type": "timestamp"
|
@@ -9064,13 +9896,13 @@
|
|
9064
9896
|
}
|
9065
9897
|
}
|
9066
9898
|
},
|
9067
|
-
"
|
9899
|
+
"S8u": {
|
9068
9900
|
"type": "structure",
|
9069
9901
|
"members": {
|
9070
9902
|
"message": {}
|
9071
9903
|
}
|
9072
9904
|
},
|
9073
|
-
"
|
9905
|
+
"S8w": {
|
9074
9906
|
"type": "structure",
|
9075
9907
|
"members": {
|
9076
9908
|
"listing": {
|
@@ -9087,19 +9919,19 @@
|
|
9087
9919
|
},
|
9088
9920
|
"union": true
|
9089
9921
|
},
|
9090
|
-
"
|
9922
|
+
"S9a": {
|
9091
9923
|
"type": "list",
|
9092
9924
|
"member": {}
|
9093
9925
|
},
|
9094
|
-
"
|
9926
|
+
"S9b": {
|
9095
9927
|
"type": "list",
|
9096
9928
|
"member": {}
|
9097
9929
|
},
|
9098
|
-
"
|
9930
|
+
"S9d": {
|
9099
9931
|
"type": "string",
|
9100
9932
|
"sensitive": true
|
9101
9933
|
},
|
9102
|
-
"
|
9934
|
+
"S9e": {
|
9103
9935
|
"type": "list",
|
9104
9936
|
"member": {
|
9105
9937
|
"type": "structure",
|
@@ -9113,7 +9945,7 @@
|
|
9113
9945
|
}
|
9114
9946
|
}
|
9115
9947
|
},
|
9116
|
-
"
|
9948
|
+
"S9k": {
|
9117
9949
|
"type": "structure",
|
9118
9950
|
"members": {
|
9119
9951
|
"iam": {
|
@@ -9142,7 +9974,7 @@
|
|
9142
9974
|
},
|
9143
9975
|
"union": true
|
9144
9976
|
},
|
9145
|
-
"
|
9977
|
+
"Sa2": {
|
9146
9978
|
"type": "structure",
|
9147
9979
|
"members": {
|
9148
9980
|
"glueSelfGrantStatus": {
|
@@ -9152,7 +9984,7 @@
|
|
9152
9984
|
],
|
9153
9985
|
"members": {
|
9154
9986
|
"selfGrantStatusDetails": {
|
9155
|
-
"shape": "
|
9987
|
+
"shape": "Sa4"
|
9156
9988
|
}
|
9157
9989
|
}
|
9158
9990
|
},
|
@@ -9163,14 +9995,14 @@
|
|
9163
9995
|
],
|
9164
9996
|
"members": {
|
9165
9997
|
"selfGrantStatusDetails": {
|
9166
|
-
"shape": "
|
9998
|
+
"shape": "Sa4"
|
9167
9999
|
}
|
9168
10000
|
}
|
9169
10001
|
}
|
9170
10002
|
},
|
9171
10003
|
"union": true
|
9172
10004
|
},
|
9173
|
-
"
|
10005
|
+
"Sa4": {
|
9174
10006
|
"type": "list",
|
9175
10007
|
"member": {
|
9176
10008
|
"type": "structure",
|
@@ -9186,7 +10018,7 @@
|
|
9186
10018
|
}
|
9187
10019
|
}
|
9188
10020
|
},
|
9189
|
-
"
|
10021
|
+
"Sbh": {
|
9190
10022
|
"type": "structure",
|
9191
10023
|
"members": {
|
9192
10024
|
"added": {
|
@@ -9206,11 +10038,11 @@
|
|
9206
10038
|
}
|
9207
10039
|
}
|
9208
10040
|
},
|
9209
|
-
"
|
10041
|
+
"Sbw": {
|
9210
10042
|
"type": "list",
|
9211
10043
|
"member": {}
|
9212
10044
|
},
|
9213
|
-
"
|
10045
|
+
"Sby": {
|
9214
10046
|
"type": "list",
|
9215
10047
|
"member": {
|
9216
10048
|
"type": "structure",
|
@@ -9229,7 +10061,7 @@
|
|
9229
10061
|
"union": true
|
9230
10062
|
}
|
9231
10063
|
},
|
9232
|
-
"
|
10064
|
+
"Sc3": {
|
9233
10065
|
"type": "map",
|
9234
10066
|
"key": {},
|
9235
10067
|
"value": {
|
@@ -9238,7 +10070,7 @@
|
|
9238
10070
|
"value": {}
|
9239
10071
|
}
|
9240
10072
|
},
|
9241
|
-
"
|
10073
|
+
"Scb": {
|
9242
10074
|
"type": "list",
|
9243
10075
|
"member": {
|
9244
10076
|
"type": "structure",
|
@@ -9248,13 +10080,13 @@
|
|
9248
10080
|
],
|
9249
10081
|
"members": {
|
9250
10082
|
"name": {
|
9251
|
-
"shape": "
|
10083
|
+
"shape": "S37"
|
9252
10084
|
},
|
9253
10085
|
"revision": {}
|
9254
10086
|
}
|
9255
10087
|
}
|
9256
10088
|
},
|
9257
|
-
"
|
10089
|
+
"Sco": {
|
9258
10090
|
"type": "list",
|
9259
10091
|
"member": {
|
9260
10092
|
"type": "structure",
|
@@ -9266,7 +10098,7 @@
|
|
9266
10098
|
}
|
9267
10099
|
}
|
9268
10100
|
},
|
9269
|
-
"
|
10101
|
+
"Sd1": {
|
9270
10102
|
"type": "structure",
|
9271
10103
|
"required": [
|
9272
10104
|
"identifier",
|
@@ -9278,7 +10110,7 @@
|
|
9278
10110
|
"type": {}
|
9279
10111
|
}
|
9280
10112
|
},
|
9281
|
-
"
|
10113
|
+
"Sdk": {
|
9282
10114
|
"type": "structure",
|
9283
10115
|
"required": [
|
9284
10116
|
"formName",
|
@@ -9296,15 +10128,15 @@
|
|
9296
10128
|
"typeRevision": {}
|
9297
10129
|
}
|
9298
10130
|
},
|
9299
|
-
"
|
10131
|
+
"Si2": {
|
9300
10132
|
"type": "list",
|
9301
10133
|
"member": {}
|
9302
10134
|
},
|
9303
|
-
"
|
10135
|
+
"Si4": {
|
9304
10136
|
"type": "structure",
|
9305
10137
|
"members": {
|
9306
10138
|
"and": {
|
9307
|
-
"shape": "
|
10139
|
+
"shape": "Si5"
|
9308
10140
|
},
|
9309
10141
|
"filter": {
|
9310
10142
|
"type": "structure",
|
@@ -9318,18 +10150,18 @@
|
|
9318
10150
|
}
|
9319
10151
|
},
|
9320
10152
|
"or": {
|
9321
|
-
"shape": "
|
10153
|
+
"shape": "Si5"
|
9322
10154
|
}
|
9323
10155
|
},
|
9324
10156
|
"union": true
|
9325
10157
|
},
|
9326
|
-
"
|
10158
|
+
"Si5": {
|
9327
10159
|
"type": "list",
|
9328
10160
|
"member": {
|
9329
|
-
"shape": "
|
10161
|
+
"shape": "Si4"
|
9330
10162
|
}
|
9331
10163
|
},
|
9332
|
-
"
|
10164
|
+
"Si9": {
|
9333
10165
|
"type": "list",
|
9334
10166
|
"member": {
|
9335
10167
|
"type": "structure",
|
@@ -9341,7 +10173,7 @@
|
|
9341
10173
|
}
|
9342
10174
|
}
|
9343
10175
|
},
|
9344
|
-
"
|
10176
|
+
"Sid": {
|
9345
10177
|
"type": "structure",
|
9346
10178
|
"required": [
|
9347
10179
|
"attribute"
|