Skip to content

Commit f1c962a

Browse files
author
awstools
committed
Updates SDK to v2.1194.0
1 parent a403e62 commit f1c962a

23 files changed

+1608
-276
lines changed

.changes/2.1194.0.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Amp",
5+
"description": "This release adds log APIs that allow customers to manage logging for their Amazon Managed Service for Prometheus workspaces."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "ChimeSDKMessaging",
10+
"description": "The Amazon Chime SDK now supports channels with up to one million participants with elastic channels."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "IVS",
15+
"description": "Updates various list api MaxResults ranges"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "PersonalizeRuntime",
20+
"description": "This release provides support for promotions in AWS Personalize runtime."
21+
}
22+
]

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1193.0-->
2+
<!--LATEST=2.1194.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1194.0
6+
* feature: Amp: This release adds log APIs that allow customers to manage logging for their Amazon Managed Service for Prometheus workspaces.
7+
* feature: ChimeSDKMessaging: The Amazon Chime SDK now supports channels with up to one million participants with elastic channels.
8+
* feature: IVS: Updates various list api MaxResults ranges
9+
* feature: PersonalizeRuntime: This release provides support for promotions in AWS Personalize runtime.
10+
511
## 2.1193.0
612
* feature: BackupStorage: This is the first public release of AWS Backup Storage. We are exposing some previously-internal APIs for use by external services. These APIs are not meant to be used directly by customers.
713
* feature: Glue: Add support for Python 3.9 AWS Glue Python Shell jobs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1193.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1194.0.min.js"></script>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/amp-2020-08-01.min.json

Lines changed: 176 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,41 @@
4949
},
5050
"idempotent": true
5151
},
52+
"CreateLoggingConfiguration": {
53+
"http": {
54+
"requestUri": "/workspaces/{workspaceId}/logging",
55+
"responseCode": 202
56+
},
57+
"input": {
58+
"type": "structure",
59+
"required": [
60+
"logGroupArn",
61+
"workspaceId"
62+
],
63+
"members": {
64+
"clientToken": {
65+
"idempotencyToken": true
66+
},
67+
"logGroupArn": {},
68+
"workspaceId": {
69+
"location": "uri",
70+
"locationName": "workspaceId"
71+
}
72+
}
73+
},
74+
"output": {
75+
"type": "structure",
76+
"required": [
77+
"status"
78+
],
79+
"members": {
80+
"status": {
81+
"shape": "Sc"
82+
}
83+
}
84+
},
85+
"idempotent": true
86+
},
5287
"CreateRuleGroupsNamespace": {
5388
"http": {
5489
"requestUri": "/workspaces/{workspaceId}/rulegroupsnamespaces",
@@ -70,7 +105,7 @@
70105
},
71106
"name": {},
72107
"tags": {
73-
"shape": "Sc"
108+
"shape": "Sh"
74109
},
75110
"workspaceId": {
76111
"location": "uri",
@@ -89,10 +124,10 @@
89124
"arn": {},
90125
"name": {},
91126
"status": {
92-
"shape": "Sh"
127+
"shape": "Sm"
93128
},
94129
"tags": {
95-
"shape": "Sc"
130+
"shape": "Sh"
96131
}
97132
}
98133
},
@@ -111,7 +146,7 @@
111146
"idempotencyToken": true
112147
},
113148
"tags": {
114-
"shape": "Sc"
149+
"shape": "Sh"
115150
}
116151
}
117152
},
@@ -125,10 +160,10 @@
125160
"members": {
126161
"arn": {},
127162
"status": {
128-
"shape": "Sn"
163+
"shape": "Ss"
129164
},
130165
"tags": {
131-
"shape": "Sc"
166+
"shape": "Sh"
132167
},
133168
"workspaceId": {}
134169
}
@@ -160,6 +195,31 @@
160195
},
161196
"idempotent": true
162197
},
198+
"DeleteLoggingConfiguration": {
199+
"http": {
200+
"method": "DELETE",
201+
"requestUri": "/workspaces/{workspaceId}/logging",
202+
"responseCode": 202
203+
},
204+
"input": {
205+
"type": "structure",
206+
"required": [
207+
"workspaceId"
208+
],
209+
"members": {
210+
"clientToken": {
211+
"idempotencyToken": true,
212+
"location": "querystring",
213+
"locationName": "clientToken"
214+
},
215+
"workspaceId": {
216+
"location": "uri",
217+
"locationName": "workspaceId"
218+
}
219+
}
220+
},
221+
"idempotent": true
222+
},
163223
"DeleteRuleGroupsNamespace": {
164224
"http": {
165225
"method": "DELETE",
@@ -265,6 +325,56 @@
265325
}
266326
}
267327
},
328+
"DescribeLoggingConfiguration": {
329+
"http": {
330+
"method": "GET",
331+
"requestUri": "/workspaces/{workspaceId}/logging",
332+
"responseCode": 200
333+
},
334+
"input": {
335+
"type": "structure",
336+
"required": [
337+
"workspaceId"
338+
],
339+
"members": {
340+
"workspaceId": {
341+
"location": "uri",
342+
"locationName": "workspaceId"
343+
}
344+
}
345+
},
346+
"output": {
347+
"type": "structure",
348+
"required": [
349+
"loggingConfiguration"
350+
],
351+
"members": {
352+
"loggingConfiguration": {
353+
"type": "structure",
354+
"required": [
355+
"createdAt",
356+
"logGroupArn",
357+
"modifiedAt",
358+
"status",
359+
"workspace"
360+
],
361+
"members": {
362+
"createdAt": {
363+
"type": "timestamp"
364+
},
365+
"logGroupArn": {},
366+
"modifiedAt": {
367+
"type": "timestamp"
368+
},
369+
"status": {
370+
"shape": "Sc"
371+
},
372+
"workspace": {}
373+
}
374+
}
375+
}
376+
}
377+
},
268378
"DescribeRuleGroupsNamespace": {
269379
"http": {
270380
"method": "GET",
@@ -317,10 +427,10 @@
317427
},
318428
"name": {},
319429
"status": {
320-
"shape": "Sh"
430+
"shape": "Sm"
321431
},
322432
"tags": {
323-
"shape": "Sc"
433+
"shape": "Sh"
324434
}
325435
}
326436
}
@@ -367,10 +477,10 @@
367477
},
368478
"prometheusEndpoint": {},
369479
"status": {
370-
"shape": "Sn"
480+
"shape": "Ss"
371481
},
372482
"tags": {
373-
"shape": "Sc"
483+
"shape": "Sh"
374484
},
375485
"workspaceId": {}
376486
}
@@ -437,10 +547,10 @@
437547
},
438548
"name": {},
439549
"status": {
440-
"shape": "Sh"
550+
"shape": "Sm"
441551
},
442552
"tags": {
443-
"shape": "Sc"
553+
"shape": "Sh"
444554
}
445555
}
446556
}
@@ -470,7 +580,7 @@
470580
"type": "structure",
471581
"members": {
472582
"tags": {
473-
"shape": "Sc"
583+
"shape": "Sh"
474584
}
475585
}
476586
}
@@ -523,10 +633,10 @@
523633
"type": "timestamp"
524634
},
525635
"status": {
526-
"shape": "Sn"
636+
"shape": "Ss"
527637
},
528638
"tags": {
529-
"shape": "Sc"
639+
"shape": "Sh"
530640
},
531641
"workspaceId": {}
532642
}
@@ -614,10 +724,10 @@
614724
"arn": {},
615725
"name": {},
616726
"status": {
617-
"shape": "Sh"
727+
"shape": "Sm"
618728
},
619729
"tags": {
620-
"shape": "Sc"
730+
"shape": "Sh"
621731
}
622732
}
623733
},
@@ -640,7 +750,7 @@
640750
"locationName": "resourceArn"
641751
},
642752
"tags": {
643-
"shape": "Sc"
753+
"shape": "Sh"
644754
}
645755
}
646756
},
@@ -680,6 +790,42 @@
680790
},
681791
"idempotent": true
682792
},
793+
"UpdateLoggingConfiguration": {
794+
"http": {
795+
"method": "PUT",
796+
"requestUri": "/workspaces/{workspaceId}/logging",
797+
"responseCode": 202
798+
},
799+
"input": {
800+
"type": "structure",
801+
"required": [
802+
"logGroupArn",
803+
"workspaceId"
804+
],
805+
"members": {
806+
"clientToken": {
807+
"idempotencyToken": true
808+
},
809+
"logGroupArn": {},
810+
"workspaceId": {
811+
"location": "uri",
812+
"locationName": "workspaceId"
813+
}
814+
}
815+
},
816+
"output": {
817+
"type": "structure",
818+
"required": [
819+
"status"
820+
],
821+
"members": {
822+
"status": {
823+
"shape": "Sc"
824+
}
825+
}
826+
},
827+
"idempotent": true
828+
},
683829
"UpdateWorkspaceAlias": {
684830
"http": {
685831
"requestUri": "/workspaces/{workspaceId}/alias",
@@ -716,11 +862,21 @@
716862
}
717863
},
718864
"Sc": {
865+
"type": "structure",
866+
"required": [
867+
"statusCode"
868+
],
869+
"members": {
870+
"statusCode": {},
871+
"statusReason": {}
872+
}
873+
},
874+
"Sh": {
719875
"type": "map",
720876
"key": {},
721877
"value": {}
722878
},
723-
"Sh": {
879+
"Sm": {
724880
"type": "structure",
725881
"required": [
726882
"statusCode"
@@ -730,7 +886,7 @@
730886
"statusReason": {}
731887
}
732888
},
733-
"Sn": {
889+
"Ss": {
734890
"type": "structure",
735891
"required": [
736892
"statusCode"

0 commit comments

Comments
 (0)