Skip to content

Commit f9d8cb4

Browse files
author
awstools
committed
Updates SDK to v2.1452.0
1 parent ecd7c9c commit f9d8cb4

22 files changed

+436
-307
lines changed

.changes/2.1452.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": "Appflow",
5+
"description": "Adding OAuth2.0 support for servicenow connector."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "EC2",
10+
"description": "This release adds 'outpost' location type to the DescribeInstanceTypeOfferings API, allowing customers that have been allowlisted for outpost to query their offerings in the API."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "MediaLive",
15+
"description": "Adds advanced Output Locking options for Epoch Locking: Custom Epoch and Jam Sync Time"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "WAFV2",
20+
"description": "The targeted protection level of the Bot Control managed rule group now provides optional, machine-learning analysis of traffic statistics to detect some bot-related activity. You can enable or disable the machine learning functionality through the API."
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.1451.0-->
2+
<!--LATEST=2.1452.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1452.0
6+
* feature: Appflow: Adding OAuth2.0 support for servicenow connector.
7+
* feature: EC2: This release adds 'outpost' location type to the DescribeInstanceTypeOfferings API, allowing customers that have been allowlisted for outpost to query their offerings in the API.
8+
* feature: MediaLive: Adds advanced Output Locking options for Epoch Locking: Custom Epoch and Jam Sync Time
9+
* feature: WAFV2: The targeted protection level of the Bot Control managed rule group now provides optional, machine-learning analysis of traffic statistics to detect some bot-related activity. You can enable or disable the machine learning functionality through the API.
10+
511
## 2.1451.0
612
* feature: Billingconductor: This release adds support for line item filtering in for the custom line item resource.
713
* feature: ComputeOptimizer: This release adds support to provide recommendations for G4dn and P3 instances that use NVIDIA GPUs.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
7171
To use the SDK in the browser, simply add the following script tag to your
7272
HTML pages:
7373

74-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1451.0.min.js"></script>
74+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1452.0.min.js"></script>
7575

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

apis/appflow-2020-08-23.min.json

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,14 +1099,13 @@
10991099
},
11001100
"ServiceNow": {
11011101
"type": "structure",
1102-
"required": [
1103-
"username",
1104-
"password"
1105-
],
11061102
"members": {
11071103
"username": {},
11081104
"password": {
11091105
"shape": "S2j"
1106+
},
1107+
"oAuth2Credentials": {
1108+
"shape": "S2o"
11101109
}
11111110
}
11121111
},
@@ -1160,7 +1159,7 @@
11601159
],
11611160
"members": {
11621161
"apiSecretKey": {
1163-
"shape": "S2s"
1162+
"shape": "S2t"
11641163
}
11651164
}
11661165
},
@@ -1200,7 +1199,7 @@
12001199
"type": "structure",
12011200
"members": {
12021201
"basicAuthCredentials": {
1203-
"shape": "S2w"
1202+
"shape": "S2x"
12041203
},
12051204
"oAuthCredentials": {
12061205
"type": "structure",
@@ -1232,23 +1231,10 @@
12321231
"members": {
12331232
"authenticationType": {},
12341233
"basic": {
1235-
"shape": "S2w"
1234+
"shape": "S2x"
12361235
},
12371236
"oauth2": {
1238-
"type": "structure",
1239-
"members": {
1240-
"clientId": {},
1241-
"clientSecret": {
1242-
"shape": "S25"
1243-
},
1244-
"accessToken": {
1245-
"shape": "S26"
1246-
},
1247-
"refreshToken": {},
1248-
"oAuthRequest": {
1249-
"shape": "S28"
1250-
}
1251-
}
1237+
"shape": "S2o"
12521238
},
12531239
"apiKey": {
12541240
"type": "structure",
@@ -1260,7 +1246,7 @@
12601246
"shape": "S1x"
12611247
},
12621248
"apiSecretKey": {
1263-
"shape": "S2s"
1249+
"shape": "S2t"
12641250
}
12651251
}
12661252
},
@@ -1555,11 +1541,27 @@
15551541
"type": "string",
15561542
"sensitive": true
15571543
},
1558-
"S2s": {
1544+
"S2o": {
1545+
"type": "structure",
1546+
"members": {
1547+
"clientId": {},
1548+
"clientSecret": {
1549+
"shape": "S25"
1550+
},
1551+
"accessToken": {
1552+
"shape": "S26"
1553+
},
1554+
"refreshToken": {},
1555+
"oAuthRequest": {
1556+
"shape": "S28"
1557+
}
1558+
}
1559+
},
1560+
"S2t": {
15591561
"type": "string",
15601562
"sensitive": true
15611563
},
1562-
"S2w": {
1564+
"S2x": {
15631565
"type": "structure",
15641566
"required": [
15651567
"username",

apis/appflow-2020-08-23.normal.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5096,10 +5096,6 @@
50965096
},
50975097
"ServiceNowConnectorProfileCredentials": {
50985098
"type": "structure",
5099-
"required": [
5100-
"username",
5101-
"password"
5102-
],
51035099
"members": {
51045100
"username": {
51055101
"shape": "Username",
@@ -5108,6 +5104,10 @@
51085104
"password": {
51095105
"shape": "Password",
51105106
"documentation": "<p> The password that corresponds to the user name. </p>"
5107+
},
5108+
"oAuth2Credentials": {
5109+
"shape": "OAuth2Credentials",
5110+
"documentation": "<p> The OAuth 2.0 credentials required to authenticate the user. </p>"
51115111
}
51125112
},
51135113
"documentation": "<p> The connector-specific profile credentials required when using ServiceNow. </p>"

apis/ec2-2016-11-15.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42242,7 +42242,8 @@
4224242242
"enum": [
4224342243
"region",
4224442244
"availability-zone",
42245-
"availability-zone-id"
42245+
"availability-zone-id",
42246+
"outpost"
4224642247
]
4224742248
},
4224842249
"LogDestinationType": {

apis/elasticloadbalancingv2-2015-12-01.normal.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)