Skip to content

Commit 68891a9

Browse files
author
awstools
committed
Updates SDK to v2.1049.0
1 parent fa30c62 commit 68891a9

24 files changed

+1933
-597
lines changed

.changes/2.1049.0.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Detective",
5+
"description": "Added and updated API operations to support the Detective integration with AWS Organizations. New actions are used to manage the delegated administrator account and the integration configuration."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "GreengrassV2",
10+
"description": "This release adds the API operations to manage the Greengrass role associated with your account and to manage the core device connectivity information. Greengrass V2 customers can now depend solely on Greengrass V2 SDK for all the API operations needed to manage their fleets."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "MediaConvert",
15+
"description": "AWS Elemental MediaConvert SDK has added strength levels to the Sharpness Filter and now permits OGG files to be specified as sidecar audio inputs."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "SageMaker",
20+
"description": "The release allows users to pass pipeline definitions as Amazon S3 locations and control the pipeline execution concurrency using ParallelismConfiguration. It also adds support of EMR jobs as pipeline steps."
21+
}
22+
]

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1048.0-->
2+
<!--LATEST=2.1049.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1049.0
6+
* feature: Detective: Added and updated API operations to support the Detective integration with AWS Organizations. New actions are used to manage the delegated administrator account and the integration configuration.
7+
* feature: GreengrassV2: This release adds the API operations to manage the Greengrass role associated with your account and to manage the core device connectivity information. Greengrass V2 customers can now depend solely on Greengrass V2 SDK for all the API operations needed to manage their fleets.
8+
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added strength levels to the Sharpness Filter and now permits OGG files to be specified as sidecar audio inputs.
9+
* feature: SageMaker: The release allows users to pass pipeline definitions as Amazon S3 locations and control the pipeline execution concurrency using ParallelismConfiguration. It also adds support of EMR jobs as pipeline steps.
10+
511
## 2.1048.0
612
* feature: ChimeSDKMessaging: The Amazon Chime SDK now supports updating message attributes via channel flows
713
* feature: LookoutMetrics: This release adds support for Causal Relationships. Added new ListAnomalyGroupRelatedMetrics API operation and InterMetricImpactDetails API data type

README.md

+1-1
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.1048.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1049.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/detective-2018-10-26.min.json

+101-9
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"shape": "Sg"
8686
},
8787
"UnprocessedAccounts": {
88-
"shape": "Sn"
88+
"shape": "So"
8989
}
9090
}
9191
}
@@ -117,22 +117,49 @@
117117
"members": {
118118
"GraphArn": {},
119119
"AccountIds": {
120-
"shape": "Ss"
120+
"shape": "St"
121121
}
122122
}
123123
},
124124
"output": {
125125
"type": "structure",
126126
"members": {
127127
"AccountIds": {
128-
"shape": "Ss"
128+
"shape": "St"
129129
},
130130
"UnprocessedAccounts": {
131-
"shape": "Sn"
131+
"shape": "So"
132132
}
133133
}
134134
}
135135
},
136+
"DescribeOrganizationConfiguration": {
137+
"http": {
138+
"requestUri": "/orgs/describeOrganizationConfiguration"
139+
},
140+
"input": {
141+
"type": "structure",
142+
"required": [
143+
"GraphArn"
144+
],
145+
"members": {
146+
"GraphArn": {}
147+
}
148+
},
149+
"output": {
150+
"type": "structure",
151+
"members": {
152+
"AutoEnable": {
153+
"type": "boolean"
154+
}
155+
}
156+
}
157+
},
158+
"DisableOrganizationAdminAccount": {
159+
"http": {
160+
"requestUri": "/orgs/disableAdminAccount"
161+
}
162+
},
136163
"DisassociateMembership": {
137164
"http": {
138165
"requestUri": "/membership/removal"
@@ -147,6 +174,20 @@
147174
}
148175
}
149176
},
177+
"EnableOrganizationAdminAccount": {
178+
"http": {
179+
"requestUri": "/orgs/enableAdminAccount"
180+
},
181+
"input": {
182+
"type": "structure",
183+
"required": [
184+
"AccountId"
185+
],
186+
"members": {
187+
"AccountId": {}
188+
}
189+
}
190+
},
150191
"GetMembers": {
151192
"http": {
152193
"requestUri": "/graph/members/get"
@@ -160,7 +201,7 @@
160201
"members": {
161202
"GraphArn": {},
162203
"AccountIds": {
163-
"shape": "Ss"
204+
"shape": "St"
164205
}
165206
}
166207
},
@@ -171,7 +212,7 @@
171212
"shape": "Sg"
172213
},
173214
"UnprocessedAccounts": {
174-
"shape": "Sn"
215+
"shape": "So"
175216
}
176217
}
177218
}
@@ -258,6 +299,39 @@
258299
}
259300
}
260301
},
302+
"ListOrganizationAdminAccounts": {
303+
"http": {
304+
"requestUri": "/orgs/adminAccountslist"
305+
},
306+
"input": {
307+
"type": "structure",
308+
"members": {
309+
"NextToken": {},
310+
"MaxResults": {
311+
"type": "integer"
312+
}
313+
}
314+
},
315+
"output": {
316+
"type": "structure",
317+
"members": {
318+
"Administrators": {
319+
"type": "list",
320+
"member": {
321+
"type": "structure",
322+
"members": {
323+
"AccountId": {},
324+
"GraphArn": {},
325+
"DelegationTime": {
326+
"shape": "Sk"
327+
}
328+
}
329+
}
330+
},
331+
"NextToken": {}
332+
}
333+
}
334+
},
261335
"ListTagsForResource": {
262336
"http": {
263337
"method": "GET",
@@ -370,6 +444,23 @@
370444
"type": "structure",
371445
"members": {}
372446
}
447+
},
448+
"UpdateOrganizationConfiguration": {
449+
"http": {
450+
"requestUri": "/orgs/updateOrganizationConfiguration"
451+
},
452+
"input": {
453+
"type": "structure",
454+
"required": [
455+
"GraphArn"
456+
],
457+
"members": {
458+
"GraphArn": {},
459+
"AutoEnable": {
460+
"type": "boolean"
461+
}
462+
}
463+
}
373464
}
374465
},
375466
"shapes": {
@@ -414,15 +505,16 @@
414505
"shape": "Sk",
415506
"deprecated": true,
416507
"deprecatedMessage": "This property is deprecated. Use VolumeUsageUpdatedTime instead."
417-
}
508+
},
509+
"InvitationType": {}
418510
}
419511
}
420512
},
421513
"Sk": {
422514
"type": "timestamp",
423515
"timestampFormat": "iso8601"
424516
},
425-
"Sn": {
517+
"So": {
426518
"type": "list",
427519
"member": {
428520
"type": "structure",
@@ -432,7 +524,7 @@
432524
}
433525
}
434526
},
435-
"Ss": {
527+
"St": {
436528
"type": "list",
437529
"member": {}
438530
}

0 commit comments

Comments
 (0)