aws-sdk 2.1104.0 → 2.1107.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/CHANGELOG.md +17 -1
- package/README.md +1 -1
- package/apis/grafana-2020-08-18.min.json +117 -19
- package/apis/iot-2015-05-28.min.json +274 -202
- package/apis/iot-2015-05-28.paginators.json +6 -0
- package/apis/metadata.json +4 -0
- package/apis/pinpoint-sms-voice-v2-2022-03-31.examples.json +5 -0
- package/apis/pinpoint-sms-voice-v2-2022-03-31.min.json +1681 -0
- package/apis/pinpoint-sms-voice-v2-2022-03-31.paginators.json +70 -0
- package/apis/pinpoint-sms-voice-v2-2022-03-31.waiters2.json +5 -0
- package/apis/proton-2020-07-20.min.json +4 -1
- package/apis/route53-recovery-cluster-2019-12-02.min.json +39 -4
- package/apis/route53-recovery-cluster-2019-12-02.paginators.json +6 -0
- package/apis/servicecatalog-2015-12-10.min.json +16 -8
- package/apis/workspaces-2015-04-08.min.json +195 -27
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/auditmanager.d.ts +4 -4
- package/clients/cloudcontrol.d.ts +22 -22
- package/clients/connect.d.ts +3 -3
- package/clients/databrew.d.ts +3 -3
- package/clients/grafana.d.ts +81 -5
- package/clients/iot.d.ts +66 -3
- package/clients/pinpointsmsvoicev2.d.ts +2367 -0
- package/clients/pinpointsmsvoicev2.js +19 -0
- package/clients/proton.d.ts +105 -101
- package/clients/route53recoverycluster.d.ts +75 -12
- package/clients/servicecatalog.d.ts +4 -0
- package/clients/workspaces.d.ts +239 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +56 -12
- package/dist/aws-sdk.js +303 -213
- package/dist/aws-sdk.min.js +45 -45
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1107.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1107.0
|
|
6
|
+
* feature: Iot: AWS IoT - AWS IoT Device Defender adds support to list metric datapoints collected for IoT devices through the ListMetricValues API
|
|
7
|
+
* feature: Proton: SDK release to support tagging for AWS Proton Repository resource
|
|
8
|
+
* feature: ServiceCatalog: This release adds ProvisioningArtifictOutputKeys to DescribeProvisioningParameters to reference the outputs of a Provisioned Product and deprecates ProvisioningArtifactOutputs.
|
|
9
|
+
|
|
10
|
+
## 2.1106.0
|
|
11
|
+
* feature: Connect: This release updates these APIs: UpdateInstanceAttribute, DescribeInstanceAttribute and ListInstanceAttributes. You can use it to programmatically enable/disable multi-party conferencing using attribute type MULTI_PARTY_CONFERENCING on the specified Amazon Connect instance.
|
|
12
|
+
|
|
13
|
+
## 2.1105.0
|
|
14
|
+
* feature: CloudControl: SDK release for Cloud Control API in Amazon Web Services China (Beijing) Region, operated by Sinnet, and Amazon Web Services China (Ningxia) Region, operated by NWCD
|
|
15
|
+
* feature: DataBrew: This AWS Glue Databrew release adds feature to support ORC as an input format.
|
|
16
|
+
* feature: Grafana: This release adds tagging support to the Managed Grafana service. New APIs: TagResource, UntagResource and ListTagsForResource. Updates: add optional field tags to support tagging while calling CreateWorkspace.
|
|
17
|
+
* feature: PinpointSMSVoiceV2: Amazon Pinpoint now offers a version 2.0 suite of SMS and voice APIs, providing increased control over sending and configuration. This release is a new SDK for sending SMS and voice messages called PinpointSMSVoiceV2.
|
|
18
|
+
* feature: Route53RecoveryCluster: This release adds a new API "ListRoutingControls" to list routing control states using the highly reliable Route 53 ARC data plane endpoints.
|
|
19
|
+
* feature: WorkSpaces: Added APIs that allow you to customize the logo, login message, and help links in the WorkSpaces client login page. To learn more, visit https://docs.aws.amazon.com/workspaces/latest/adminguide/customize-branding.html
|
|
20
|
+
|
|
5
21
|
## 2.1104.0
|
|
6
22
|
* feature: EC2: This release simplifies the auto-recovery configuration process enabling customers to set the recovery behavior to disabled or default
|
|
7
23
|
* feature: FMS: AWS Firewall Manager now supports the configuration of third-party policies that can use either the centralized or distributed deployment models.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1107.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -71,6 +71,9 @@
|
|
|
71
71
|
},
|
|
72
72
|
"permissionType": {},
|
|
73
73
|
"stackSetName": {},
|
|
74
|
+
"tags": {
|
|
75
|
+
"shape": "Sr"
|
|
76
|
+
},
|
|
74
77
|
"workspaceDataSources": {
|
|
75
78
|
"shape": "Sc"
|
|
76
79
|
},
|
|
@@ -87,7 +90,7 @@
|
|
|
87
90
|
"shape": "Sm"
|
|
88
91
|
},
|
|
89
92
|
"workspaceRoleArn": {
|
|
90
|
-
"shape": "
|
|
93
|
+
"shape": "Su"
|
|
91
94
|
}
|
|
92
95
|
}
|
|
93
96
|
},
|
|
@@ -190,7 +193,7 @@
|
|
|
190
193
|
],
|
|
191
194
|
"members": {
|
|
192
195
|
"authentication": {
|
|
193
|
-
"shape": "
|
|
196
|
+
"shape": "S14"
|
|
194
197
|
}
|
|
195
198
|
}
|
|
196
199
|
}
|
|
@@ -287,7 +290,7 @@
|
|
|
287
290
|
"members": {
|
|
288
291
|
"role": {},
|
|
289
292
|
"user": {
|
|
290
|
-
"shape": "
|
|
293
|
+
"shape": "S1v"
|
|
291
294
|
}
|
|
292
295
|
}
|
|
293
296
|
}
|
|
@@ -295,6 +298,33 @@
|
|
|
295
298
|
}
|
|
296
299
|
}
|
|
297
300
|
},
|
|
301
|
+
"ListTagsForResource": {
|
|
302
|
+
"http": {
|
|
303
|
+
"method": "GET",
|
|
304
|
+
"requestUri": "/tags/{resourceArn}",
|
|
305
|
+
"responseCode": 200
|
|
306
|
+
},
|
|
307
|
+
"input": {
|
|
308
|
+
"type": "structure",
|
|
309
|
+
"required": [
|
|
310
|
+
"resourceArn"
|
|
311
|
+
],
|
|
312
|
+
"members": {
|
|
313
|
+
"resourceArn": {
|
|
314
|
+
"location": "uri",
|
|
315
|
+
"locationName": "resourceArn"
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"output": {
|
|
320
|
+
"type": "structure",
|
|
321
|
+
"members": {
|
|
322
|
+
"tags": {
|
|
323
|
+
"shape": "Sr"
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
},
|
|
298
328
|
"ListWorkspaces": {
|
|
299
329
|
"http": {
|
|
300
330
|
"method": "GET",
|
|
@@ -357,13 +387,73 @@
|
|
|
357
387
|
"notificationDestinations": {
|
|
358
388
|
"shape": "Sj"
|
|
359
389
|
},
|
|
360
|
-
"status": {}
|
|
390
|
+
"status": {},
|
|
391
|
+
"tags": {
|
|
392
|
+
"shape": "Sr"
|
|
393
|
+
}
|
|
361
394
|
}
|
|
362
395
|
}
|
|
363
396
|
}
|
|
364
397
|
}
|
|
365
398
|
}
|
|
366
399
|
},
|
|
400
|
+
"TagResource": {
|
|
401
|
+
"http": {
|
|
402
|
+
"requestUri": "/tags/{resourceArn}",
|
|
403
|
+
"responseCode": 200
|
|
404
|
+
},
|
|
405
|
+
"input": {
|
|
406
|
+
"type": "structure",
|
|
407
|
+
"required": [
|
|
408
|
+
"resourceArn",
|
|
409
|
+
"tags"
|
|
410
|
+
],
|
|
411
|
+
"members": {
|
|
412
|
+
"resourceArn": {
|
|
413
|
+
"location": "uri",
|
|
414
|
+
"locationName": "resourceArn"
|
|
415
|
+
},
|
|
416
|
+
"tags": {
|
|
417
|
+
"shape": "Sr"
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"output": {
|
|
422
|
+
"type": "structure",
|
|
423
|
+
"members": {}
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"UntagResource": {
|
|
427
|
+
"http": {
|
|
428
|
+
"method": "DELETE",
|
|
429
|
+
"requestUri": "/tags/{resourceArn}",
|
|
430
|
+
"responseCode": 200
|
|
431
|
+
},
|
|
432
|
+
"input": {
|
|
433
|
+
"type": "structure",
|
|
434
|
+
"required": [
|
|
435
|
+
"resourceArn",
|
|
436
|
+
"tagKeys"
|
|
437
|
+
],
|
|
438
|
+
"members": {
|
|
439
|
+
"resourceArn": {
|
|
440
|
+
"location": "uri",
|
|
441
|
+
"locationName": "resourceArn"
|
|
442
|
+
},
|
|
443
|
+
"tagKeys": {
|
|
444
|
+
"location": "querystring",
|
|
445
|
+
"locationName": "tagKeys",
|
|
446
|
+
"type": "list",
|
|
447
|
+
"member": {}
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"output": {
|
|
452
|
+
"type": "structure",
|
|
453
|
+
"members": {}
|
|
454
|
+
},
|
|
455
|
+
"idempotent": true
|
|
456
|
+
},
|
|
367
457
|
"UpdatePermissions": {
|
|
368
458
|
"http": {
|
|
369
459
|
"method": "PATCH",
|
|
@@ -380,7 +470,7 @@
|
|
|
380
470
|
"updateInstructionBatch": {
|
|
381
471
|
"type": "list",
|
|
382
472
|
"member": {
|
|
383
|
-
"shape": "
|
|
473
|
+
"shape": "S2a"
|
|
384
474
|
}
|
|
385
475
|
},
|
|
386
476
|
"workspaceId": {
|
|
@@ -406,7 +496,7 @@
|
|
|
406
496
|
],
|
|
407
497
|
"members": {
|
|
408
498
|
"causedBy": {
|
|
409
|
-
"shape": "
|
|
499
|
+
"shape": "S2a"
|
|
410
500
|
},
|
|
411
501
|
"code": {
|
|
412
502
|
"type": "integer"
|
|
@@ -456,7 +546,7 @@
|
|
|
456
546
|
"shape": "Sm"
|
|
457
547
|
},
|
|
458
548
|
"workspaceRoleArn": {
|
|
459
|
-
"shape": "
|
|
549
|
+
"shape": "Su"
|
|
460
550
|
}
|
|
461
551
|
}
|
|
462
552
|
},
|
|
@@ -488,7 +578,7 @@
|
|
|
488
578
|
"shape": "S8"
|
|
489
579
|
},
|
|
490
580
|
"samlConfiguration": {
|
|
491
|
-
"shape": "
|
|
581
|
+
"shape": "S18"
|
|
492
582
|
},
|
|
493
583
|
"workspaceId": {
|
|
494
584
|
"location": "uri",
|
|
@@ -503,7 +593,7 @@
|
|
|
503
593
|
],
|
|
504
594
|
"members": {
|
|
505
595
|
"authentication": {
|
|
506
|
-
"shape": "
|
|
596
|
+
"shape": "S14"
|
|
507
597
|
}
|
|
508
598
|
}
|
|
509
599
|
}
|
|
@@ -567,8 +657,11 @@
|
|
|
567
657
|
"permissionType": {},
|
|
568
658
|
"stackSetName": {},
|
|
569
659
|
"status": {},
|
|
570
|
-
"
|
|
660
|
+
"tags": {
|
|
571
661
|
"shape": "Sr"
|
|
662
|
+
},
|
|
663
|
+
"workspaceRoleArn": {
|
|
664
|
+
"shape": "Su"
|
|
572
665
|
}
|
|
573
666
|
}
|
|
574
667
|
},
|
|
@@ -614,10 +707,15 @@
|
|
|
614
707
|
"sensitive": true
|
|
615
708
|
},
|
|
616
709
|
"Sr": {
|
|
710
|
+
"type": "map",
|
|
711
|
+
"key": {},
|
|
712
|
+
"value": {}
|
|
713
|
+
},
|
|
714
|
+
"Su": {
|
|
617
715
|
"type": "string",
|
|
618
716
|
"sensitive": true
|
|
619
717
|
},
|
|
620
|
-
"
|
|
718
|
+
"S14": {
|
|
621
719
|
"type": "structure",
|
|
622
720
|
"required": [
|
|
623
721
|
"providers"
|
|
@@ -639,14 +737,14 @@
|
|
|
639
737
|
],
|
|
640
738
|
"members": {
|
|
641
739
|
"configuration": {
|
|
642
|
-
"shape": "
|
|
740
|
+
"shape": "S18"
|
|
643
741
|
},
|
|
644
742
|
"status": {}
|
|
645
743
|
}
|
|
646
744
|
}
|
|
647
745
|
}
|
|
648
746
|
},
|
|
649
|
-
"
|
|
747
|
+
"S18": {
|
|
650
748
|
"type": "structure",
|
|
651
749
|
"required": [
|
|
652
750
|
"idpMetadata"
|
|
@@ -682,20 +780,20 @@
|
|
|
682
780
|
"type": "structure",
|
|
683
781
|
"members": {
|
|
684
782
|
"admin": {
|
|
685
|
-
"shape": "
|
|
783
|
+
"shape": "S1i"
|
|
686
784
|
},
|
|
687
785
|
"editor": {
|
|
688
|
-
"shape": "
|
|
786
|
+
"shape": "S1i"
|
|
689
787
|
}
|
|
690
788
|
}
|
|
691
789
|
}
|
|
692
790
|
}
|
|
693
791
|
},
|
|
694
|
-
"
|
|
792
|
+
"S1i": {
|
|
695
793
|
"type": "list",
|
|
696
794
|
"member": {}
|
|
697
795
|
},
|
|
698
|
-
"
|
|
796
|
+
"S1v": {
|
|
699
797
|
"type": "structure",
|
|
700
798
|
"required": [
|
|
701
799
|
"id",
|
|
@@ -706,7 +804,7 @@
|
|
|
706
804
|
"type": {}
|
|
707
805
|
}
|
|
708
806
|
},
|
|
709
|
-
"
|
|
807
|
+
"S2a": {
|
|
710
808
|
"type": "structure",
|
|
711
809
|
"required": [
|
|
712
810
|
"action",
|
|
@@ -719,7 +817,7 @@
|
|
|
719
817
|
"users": {
|
|
720
818
|
"type": "list",
|
|
721
819
|
"member": {
|
|
722
|
-
"shape": "
|
|
820
|
+
"shape": "S1v"
|
|
723
821
|
}
|
|
724
822
|
}
|
|
725
823
|
}
|