aws-sdk 2.1012.0 → 2.1016.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +27 -1
  2. package/README.md +1 -1
  3. package/apis/auditmanager-2017-07-25.min.json +168 -12
  4. package/apis/auditmanager-2017-07-25.paginators.json +5 -0
  5. package/apis/autoscaling-2011-01-01.min.json +240 -94
  6. package/apis/chime-2018-05-01.min.json +4 -2
  7. package/apis/chime-sdk-identity-2021-04-20.min.json +362 -13
  8. package/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
  9. package/apis/chime-sdk-messaging-2021-05-15.min.json +180 -29
  10. package/apis/ec2-2016-11-15.min.json +1331 -800
  11. package/apis/ec2-2016-11-15.paginators.json +12 -0
  12. package/apis/emr-containers-2020-10-01.min.json +18 -6
  13. package/apis/quicksight-2018-04-01.min.json +27 -21
  14. package/apis/rds-2014-10-31.min.json +412 -317
  15. package/apis/route53resolver-2018-04-01.min.json +85 -13
  16. package/apis/route53resolver-2018-04-01.paginators.json +6 -0
  17. package/apis/sagemaker-2017-07-24.min.json +924 -792
  18. package/apis/textract-2018-06-27.min.json +107 -43
  19. package/clients/auditmanager.d.ts +486 -305
  20. package/clients/autoscaling.d.ts +217 -15
  21. package/clients/chime.d.ts +8 -0
  22. package/clients/chimesdkidentity.d.ts +314 -2
  23. package/clients/chimesdkmessaging.d.ts +146 -15
  24. package/clients/connect.d.ts +11 -11
  25. package/clients/ec2.d.ts +548 -4
  26. package/clients/eks.d.ts +1 -1
  27. package/clients/emrcontainers.d.ts +18 -3
  28. package/clients/finspace.js +0 -1
  29. package/clients/finspacedata.js +0 -1
  30. package/clients/lexmodelsv2.js +0 -1
  31. package/clients/lookoutmetrics.js +0 -1
  32. package/clients/quicksight.d.ts +12 -2
  33. package/clients/rds.d.ts +361 -200
  34. package/clients/route53resolver.d.ts +94 -0
  35. package/clients/sagemaker.d.ts +152 -8
  36. package/clients/textract.d.ts +98 -6
  37. package/dist/aws-sdk-core-react-native.js +57 -22
  38. package/dist/aws-sdk-react-native.js +299 -340
  39. package/dist/aws-sdk.js +2134 -1234
  40. package/dist/aws-sdk.min.js +87 -87
  41. package/lib/core.js +1 -1
  42. package/lib/protocol/rest_json.js +6 -12
  43. package/lib/region_config.js +44 -1
  44. package/lib/region_config_data.json +81 -0
  45. package/lib/request.js +4 -6
  46. package/lib/service.js +1 -1
  47. package/package.json +2 -2
  48. package/scripts/region-checker/allowlist.js +4 -0
  49. package/lib/services/finspace.js +0 -23
  50. package/lib/services/finspacedata.js +0 -23
  51. package/lib/services/lexmodelsv2.js +0 -23
  52. package/lib/services/lookoutmetrics.js +0 -22
@@ -7006,7 +7006,8 @@
7006
7006
  },
7007
7007
  "UpdatedTimestamp": {
7008
7008
  "shape": "S2a"
7009
- }
7009
+ },
7010
+ "VoiceConnectorArn": {}
7010
7011
  }
7011
7012
  },
7012
7013
  "S5v": {
@@ -7038,7 +7039,8 @@
7038
7039
  },
7039
7040
  "UpdatedTimestamp": {
7040
7041
  "shape": "S2a"
7041
- }
7042
+ },
7043
+ "VoiceConnectorGroupArn": {}
7042
7044
  }
7043
7045
  },
7044
7046
  "S6u": {
@@ -177,6 +177,32 @@
177
177
  }
178
178
  }
179
179
  },
180
+ "DeregisterAppInstanceUserEndpoint": {
181
+ "http": {
182
+ "method": "DELETE",
183
+ "requestUri": "/app-instance-users/{appInstanceUserArn}/endpoints/{endpointId}",
184
+ "responseCode": 204
185
+ },
186
+ "input": {
187
+ "type": "structure",
188
+ "required": [
189
+ "AppInstanceUserArn",
190
+ "EndpointId"
191
+ ],
192
+ "members": {
193
+ "AppInstanceUserArn": {
194
+ "shape": "Sn",
195
+ "location": "uri",
196
+ "locationName": "appInstanceUserArn"
197
+ },
198
+ "EndpointId": {
199
+ "shape": "So",
200
+ "location": "uri",
201
+ "locationName": "endpointId"
202
+ }
203
+ }
204
+ }
205
+ },
180
206
  "DescribeAppInstance": {
181
207
  "http": {
182
208
  "method": "GET",
@@ -300,6 +326,68 @@
300
326
  }
301
327
  }
302
328
  },
329
+ "DescribeAppInstanceUserEndpoint": {
330
+ "http": {
331
+ "method": "GET",
332
+ "requestUri": "/app-instance-users/{appInstanceUserArn}/endpoints/{endpointId}",
333
+ "responseCode": 200
334
+ },
335
+ "input": {
336
+ "type": "structure",
337
+ "required": [
338
+ "AppInstanceUserArn",
339
+ "EndpointId"
340
+ ],
341
+ "members": {
342
+ "AppInstanceUserArn": {
343
+ "shape": "S10",
344
+ "location": "uri",
345
+ "locationName": "appInstanceUserArn"
346
+ },
347
+ "EndpointId": {
348
+ "shape": "So",
349
+ "location": "uri",
350
+ "locationName": "endpointId"
351
+ }
352
+ }
353
+ },
354
+ "output": {
355
+ "type": "structure",
356
+ "members": {
357
+ "AppInstanceUserEndpoint": {
358
+ "type": "structure",
359
+ "members": {
360
+ "AppInstanceUserArn": {
361
+ "shape": "Sn"
362
+ },
363
+ "EndpointId": {
364
+ "shape": "So"
365
+ },
366
+ "Name": {
367
+ "shape": "S10"
368
+ },
369
+ "Type": {},
370
+ "ResourceArn": {
371
+ "shape": "Sn"
372
+ },
373
+ "EndpointAttributes": {
374
+ "shape": "S14"
375
+ },
376
+ "CreatedTimestamp": {
377
+ "type": "timestamp"
378
+ },
379
+ "LastUpdatedTimestamp": {
380
+ "type": "timestamp"
381
+ },
382
+ "AllowMessages": {},
383
+ "EndpointState": {
384
+ "shape": "S17"
385
+ }
386
+ }
387
+ }
388
+ }
389
+ }
390
+ },
303
391
  "GetAppInstanceRetentionSettings": {
304
392
  "http": {
305
393
  "method": "GET",
@@ -322,7 +410,7 @@
322
410
  "type": "structure",
323
411
  "members": {
324
412
  "AppInstanceRetentionSettings": {
325
- "shape": "Sy"
413
+ "shape": "S1c"
326
414
  },
327
415
  "InitiateDeletionTimestamp": {
328
416
  "type": "timestamp"
@@ -352,7 +440,7 @@
352
440
  "type": "integer"
353
441
  },
354
442
  "NextToken": {
355
- "shape": "S13",
443
+ "shape": "S1h",
356
444
  "location": "querystring",
357
445
  "locationName": "next-token"
358
446
  }
@@ -374,7 +462,67 @@
374
462
  }
375
463
  },
376
464
  "NextToken": {
377
- "shape": "S13"
465
+ "shape": "S1h"
466
+ }
467
+ }
468
+ }
469
+ },
470
+ "ListAppInstanceUserEndpoints": {
471
+ "http": {
472
+ "method": "GET",
473
+ "requestUri": "/app-instance-users/{appInstanceUserArn}/endpoints",
474
+ "responseCode": 200
475
+ },
476
+ "input": {
477
+ "type": "structure",
478
+ "required": [
479
+ "AppInstanceUserArn"
480
+ ],
481
+ "members": {
482
+ "AppInstanceUserArn": {
483
+ "shape": "Sn",
484
+ "location": "uri",
485
+ "locationName": "appInstanceUserArn"
486
+ },
487
+ "MaxResults": {
488
+ "location": "querystring",
489
+ "locationName": "max-results",
490
+ "type": "integer"
491
+ },
492
+ "NextToken": {
493
+ "shape": "S1h",
494
+ "location": "querystring",
495
+ "locationName": "next-token"
496
+ }
497
+ }
498
+ },
499
+ "output": {
500
+ "type": "structure",
501
+ "members": {
502
+ "AppInstanceUserEndpoints": {
503
+ "type": "list",
504
+ "member": {
505
+ "type": "structure",
506
+ "members": {
507
+ "AppInstanceUserArn": {
508
+ "shape": "Sn"
509
+ },
510
+ "EndpointId": {
511
+ "shape": "So"
512
+ },
513
+ "Name": {
514
+ "shape": "S10"
515
+ },
516
+ "Type": {},
517
+ "AllowMessages": {},
518
+ "EndpointState": {
519
+ "shape": "S17"
520
+ }
521
+ }
522
+ }
523
+ },
524
+ "NextToken": {
525
+ "shape": "S1h"
378
526
  }
379
527
  }
380
528
  }
@@ -400,7 +548,7 @@
400
548
  "type": "integer"
401
549
  },
402
550
  "NextToken": {
403
- "shape": "S13",
551
+ "shape": "S1h",
404
552
  "location": "querystring",
405
553
  "locationName": "next-token"
406
554
  }
@@ -426,7 +574,7 @@
426
574
  }
427
575
  },
428
576
  "NextToken": {
429
- "shape": "S13"
577
+ "shape": "S1h"
430
578
  }
431
579
  }
432
580
  }
@@ -445,7 +593,7 @@
445
593
  "type": "integer"
446
594
  },
447
595
  "NextToken": {
448
- "shape": "S13",
596
+ "shape": "S1h",
449
597
  "location": "querystring",
450
598
  "locationName": "next-token"
451
599
  }
@@ -470,7 +618,34 @@
470
618
  }
471
619
  },
472
620
  "NextToken": {
473
- "shape": "S13"
621
+ "shape": "S1h"
622
+ }
623
+ }
624
+ }
625
+ },
626
+ "ListTagsForResource": {
627
+ "http": {
628
+ "method": "GET",
629
+ "requestUri": "/tags",
630
+ "responseCode": 200
631
+ },
632
+ "input": {
633
+ "type": "structure",
634
+ "required": [
635
+ "ResourceARN"
636
+ ],
637
+ "members": {
638
+ "ResourceARN": {
639
+ "location": "querystring",
640
+ "locationName": "arn"
641
+ }
642
+ }
643
+ },
644
+ "output": {
645
+ "type": "structure",
646
+ "members": {
647
+ "Tags": {
648
+ "shape": "S5"
474
649
  }
475
650
  }
476
651
  }
@@ -493,7 +668,7 @@
493
668
  "locationName": "appInstanceArn"
494
669
  },
495
670
  "AppInstanceRetentionSettings": {
496
- "shape": "Sy"
671
+ "shape": "S1c"
497
672
  }
498
673
  }
499
674
  },
@@ -501,7 +676,7 @@
501
676
  "type": "structure",
502
677
  "members": {
503
678
  "AppInstanceRetentionSettings": {
504
- "shape": "Sy"
679
+ "shape": "S1c"
505
680
  },
506
681
  "InitiateDeletionTimestamp": {
507
682
  "type": "timestamp"
@@ -509,6 +684,96 @@
509
684
  }
510
685
  }
511
686
  },
687
+ "RegisterAppInstanceUserEndpoint": {
688
+ "http": {
689
+ "requestUri": "/app-instance-users/{appInstanceUserArn}/endpoints",
690
+ "responseCode": 201
691
+ },
692
+ "input": {
693
+ "type": "structure",
694
+ "required": [
695
+ "AppInstanceUserArn",
696
+ "Type",
697
+ "ResourceArn",
698
+ "EndpointAttributes",
699
+ "ClientRequestToken"
700
+ ],
701
+ "members": {
702
+ "AppInstanceUserArn": {
703
+ "shape": "Sn",
704
+ "location": "uri",
705
+ "locationName": "appInstanceUserArn"
706
+ },
707
+ "Name": {
708
+ "shape": "S10"
709
+ },
710
+ "Type": {},
711
+ "ResourceArn": {
712
+ "shape": "Sn"
713
+ },
714
+ "EndpointAttributes": {
715
+ "shape": "S14"
716
+ },
717
+ "ClientRequestToken": {
718
+ "shape": "S4",
719
+ "idempotencyToken": true
720
+ },
721
+ "AllowMessages": {}
722
+ }
723
+ },
724
+ "output": {
725
+ "type": "structure",
726
+ "members": {
727
+ "AppInstanceUserArn": {
728
+ "shape": "Sn"
729
+ },
730
+ "EndpointId": {
731
+ "shape": "So"
732
+ }
733
+ }
734
+ }
735
+ },
736
+ "TagResource": {
737
+ "http": {
738
+ "requestUri": "/tags?operation=tag-resource",
739
+ "responseCode": 204
740
+ },
741
+ "input": {
742
+ "type": "structure",
743
+ "required": [
744
+ "ResourceARN",
745
+ "Tags"
746
+ ],
747
+ "members": {
748
+ "ResourceARN": {},
749
+ "Tags": {
750
+ "shape": "S5"
751
+ }
752
+ }
753
+ }
754
+ },
755
+ "UntagResource": {
756
+ "http": {
757
+ "requestUri": "/tags?operation=untag-resource",
758
+ "responseCode": 204
759
+ },
760
+ "input": {
761
+ "type": "structure",
762
+ "required": [
763
+ "ResourceARN",
764
+ "TagKeys"
765
+ ],
766
+ "members": {
767
+ "ResourceARN": {},
768
+ "TagKeys": {
769
+ "type": "list",
770
+ "member": {
771
+ "shape": "S7"
772
+ }
773
+ }
774
+ }
775
+ }
776
+ },
512
777
  "UpdateAppInstance": {
513
778
  "http": {
514
779
  "method": "PUT",
@@ -574,6 +839,47 @@
574
839
  "AppInstanceUserArn": {}
575
840
  }
576
841
  }
842
+ },
843
+ "UpdateAppInstanceUserEndpoint": {
844
+ "http": {
845
+ "method": "PUT",
846
+ "requestUri": "/app-instance-users/{appInstanceUserArn}/endpoints/{endpointId}",
847
+ "responseCode": 200
848
+ },
849
+ "input": {
850
+ "type": "structure",
851
+ "required": [
852
+ "AppInstanceUserArn",
853
+ "EndpointId"
854
+ ],
855
+ "members": {
856
+ "AppInstanceUserArn": {
857
+ "shape": "Sn",
858
+ "location": "uri",
859
+ "locationName": "appInstanceUserArn"
860
+ },
861
+ "EndpointId": {
862
+ "shape": "So",
863
+ "location": "uri",
864
+ "locationName": "endpointId"
865
+ },
866
+ "Name": {
867
+ "shape": "S10"
868
+ },
869
+ "AllowMessages": {}
870
+ }
871
+ },
872
+ "output": {
873
+ "type": "structure",
874
+ "members": {
875
+ "AppInstanceUserArn": {
876
+ "shape": "Sn"
877
+ },
878
+ "EndpointId": {
879
+ "shape": "So"
880
+ }
881
+ }
882
+ }
577
883
  }
578
884
  },
579
885
  "shapes": {
@@ -599,8 +905,7 @@
599
905
  ],
600
906
  "members": {
601
907
  "Key": {
602
- "type": "string",
603
- "sensitive": true
908
+ "shape": "S7"
604
909
  },
605
910
  "Value": {
606
911
  "type": "string",
@@ -609,6 +914,10 @@
609
914
  }
610
915
  }
611
916
  },
917
+ "S7": {
918
+ "type": "string",
919
+ "sensitive": true
920
+ },
612
921
  "Sd": {
613
922
  "type": "structure",
614
923
  "members": {
@@ -623,7 +932,47 @@
623
932
  "type": "string",
624
933
  "sensitive": true
625
934
  },
626
- "Sy": {
935
+ "Sn": {
936
+ "type": "string",
937
+ "sensitive": true
938
+ },
939
+ "So": {
940
+ "type": "string",
941
+ "sensitive": true
942
+ },
943
+ "S10": {
944
+ "type": "string",
945
+ "sensitive": true
946
+ },
947
+ "S14": {
948
+ "type": "structure",
949
+ "required": [
950
+ "DeviceToken"
951
+ ],
952
+ "members": {
953
+ "DeviceToken": {
954
+ "shape": "S15"
955
+ },
956
+ "VoipDeviceToken": {
957
+ "shape": "S15"
958
+ }
959
+ }
960
+ },
961
+ "S15": {
962
+ "type": "string",
963
+ "sensitive": true
964
+ },
965
+ "S17": {
966
+ "type": "structure",
967
+ "required": [
968
+ "Status"
969
+ ],
970
+ "members": {
971
+ "Status": {},
972
+ "StatusReason": {}
973
+ }
974
+ },
975
+ "S1c": {
627
976
  "type": "structure",
628
977
  "members": {
629
978
  "ChannelRetentionSettings": {
@@ -636,7 +985,7 @@
636
985
  }
637
986
  }
638
987
  },
639
- "S13": {
988
+ "S1h": {
640
989
  "type": "string",
641
990
  "sensitive": true
642
991
  }
@@ -5,6 +5,11 @@
5
5
  "output_token": "NextToken",
6
6
  "limit_key": "MaxResults"
7
7
  },
8
+ "ListAppInstanceUserEndpoints": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
8
13
  "ListAppInstanceUsers": {
9
14
  "input_token": "NextToken",
10
15
  "output_token": "NextToken",