Skip to content

Commit 750203f

Browse files
author
awstools
committed
Updates SDK to v2.1114.0
1 parent 6ec235d commit 750203f

15 files changed

+294
-106
lines changed

.changes/2.1114.0.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "CloudWatch",
5+
"description": "Adds support for additional statistics in CloudWatch Metric Streams."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "FSx",
10+
"description": "This release adds support for deploying FSx for ONTAP file systems in a single Availability Zone."
11+
}
12+
]

CHANGELOG.md

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

5+
## 2.1114.0
6+
* feature: CloudWatch: Adds support for additional statistics in CloudWatch Metric Streams.
7+
* feature: FSx: This release adds support for deploying FSx for ONTAP file systems in a single Availability Zone.
8+
59
## 2.1113.0
610
* feature: DevOpsGuru: This release adds new APIs DeleteInsight to deletes the insight along with the associated anomalies, events and recommendations.
711
* feature: EC2: X2idn and X2iedn instances are powered by 3rd generation Intel Xeon Scalable processors with an all-core turbo frequency up to 3.5 GHzAmazon EC2. C6a instances are powered by 3rd generation AMD EPYC processors.

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.1113.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1114.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/fsx-2018-03-01.normal.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -1913,11 +1913,11 @@
19131913
},
19141914
"DeploymentType": {
19151915
"shape": "OntapDeploymentType",
1916-
"documentation": "<p>Specifies the FSx for ONTAP file system deployment type to use in creating the file system. <code>MULTI_AZ_1</code> is the supported ONTAP deployment type.</p>"
1916+
"documentation": "<p>Specifies the FSx for ONTAP file system deployment type to use in creating the file system. </p> <ul> <li> <p> <code>MULTI_AZ_1</code> - (Default) A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. </p> </li> <li> <p> <code>SINGLE_AZ_1</code> - A file system configured for Single-AZ redundancy.</p> </li> </ul> <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to <a href=\"https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html\">Choosing Multi-AZ or Single-AZ file system deployment</a>. </p>"
19171917
},
19181918
"EndpointIpAddressRange": {
19191919
"shape": "IpAddressRange",
1920-
"documentation": "<p>Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.</p> <important> <p>The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger.</p> </important>"
1920+
"documentation": "<p>(Multi-AZ only) Specifies the IP address range in which the endpoints to access your file system will be created. By default, Amazon FSx selects an unused IP address range for you from the 198.19.* range.</p> <important> <p>The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger.</p> </important>"
19211921
},
19221922
"FsxAdminPassword": {
19231923
"shape": "AdminPassword",
@@ -1933,7 +1933,7 @@
19331933
},
19341934
"RouteTableIds": {
19351935
"shape": "RouteTableIds",
1936-
"documentation": "<p>Specifies the virtual private cloud (VPC) route tables in which your file system's endpoints will be created. You should specify all VPC route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table.</p>"
1936+
"documentation": "<p>(Multi-AZ only) Specifies the virtual private cloud (VPC) route tables in which your file system's endpoints will be created. You should specify all VPC route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table.</p>"
19371937
},
19381938
"ThroughputCapacity": {
19391939
"shape": "MegabytesPerSecond",
@@ -3962,7 +3962,8 @@
39623962
"OntapDeploymentType": {
39633963
"type": "string",
39643964
"enum": [
3965-
"MULTI_AZ_1"
3965+
"MULTI_AZ_1",
3966+
"SINGLE_AZ_1"
39663967
]
39673968
},
39683969
"OntapEndpointIpAddresses": {
@@ -3984,11 +3985,11 @@
39843985
},
39853986
"DeploymentType": {
39863987
"shape": "OntapDeploymentType",
3987-
"documentation": "<p>The ONTAP file system deployment type.</p>"
3988+
"documentation": "<p>Specifies the FSx for ONTAP file system deployment type in use in the file system. </p> <ul> <li> <p> <code>MULTI_AZ_1</code> - (Default) A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. </p> </li> <li> <p> <code>SINGLE_AZ_1</code> - A file system configured for Single-AZ redundancy.</p> </li> </ul> <p>For information about the use cases for Multi-AZ and Single-AZ deployments, refer to <a href=\"https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html\">Choosing Multi-AZ or Single-AZ file system deployment</a>. </p>"
39883989
},
39893990
"EndpointIpAddressRange": {
39903991
"shape": "IpAddressRange",
3991-
"documentation": "<p>The IP address range in which the endpoints to access your file system are created.</p> <important> <p>The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger. If you do not specify this optional parameter, Amazon FSx will automatically select a CIDR block for you.</p> </important>"
3992+
"documentation": "<p>(Multi-AZ only) The IP address range in which the endpoints to access your file system are created.</p> <important> <p>The Endpoint IP address range you select for your file system must exist outside the VPC's CIDR range and must be at least /30 or larger. If you do not specify this optional parameter, Amazon FSx will automatically select a CIDR block for you.</p> </important>"
39923993
},
39933994
"Endpoints": {
39943995
"shape": "FileSystemEndpoints",
@@ -4003,7 +4004,7 @@
40034004
},
40044005
"RouteTableIds": {
40054006
"shape": "RouteTableIds",
4006-
"documentation": "<p>The VPC route tables in which your file system's endpoints are created.</p>"
4007+
"documentation": "<p>(Multi-AZ only) The VPC route tables in which your file system's endpoints are created.</p>"
40074008
},
40084009
"ThroughputCapacity": {
40094010
"shape": "MegabytesPerSecond"

apis/fsx-2018-03-01.paginators.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@
3333
"DescribeStorageVirtualMachines": {
3434
"input_token": "NextToken",
3535
"output_token": "NextToken",
36-
"limit_key": "MaxResults"
36+
"limit_key": "MaxResults",
37+
"result_key": "StorageVirtualMachines"
3738
},
3839
"DescribeVolumes": {
3940
"input_token": "NextToken",
4041
"output_token": "NextToken",
41-
"limit_key": "MaxResults"
42+
"limit_key": "MaxResults",
43+
"result_key": "Volumes"
4244
},
4345
"ListTagsForResource": {
4446
"input_token": "NextToken",

apis/monitoring-2010-08-01.min.json

+47-11
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,10 @@
770770
"LastUpdateDate": {
771771
"type": "timestamp"
772772
},
773-
"OutputFormat": {}
773+
"OutputFormat": {},
774+
"StatisticsConfigurations": {
775+
"shape": "S4i"
776+
}
774777
}
775778
}
776779
},
@@ -920,7 +923,7 @@
920923
"type": "structure",
921924
"members": {
922925
"Tags": {
923-
"shape": "S57"
926+
"shape": "S5d"
924927
}
925928
}
926929
}
@@ -987,7 +990,7 @@
987990
"shape": "S1t"
988991
},
989992
"Tags": {
990-
"shape": "S57"
993+
"shape": "S5d"
991994
}
992995
}
993996
}
@@ -1033,7 +1036,7 @@
10331036
"RuleState": {},
10341037
"RuleDefinition": {},
10351038
"Tags": {
1036-
"shape": "S57"
1039+
"shape": "S5d"
10371040
}
10381041
}
10391042
},
@@ -1093,7 +1096,7 @@
10931096
"shape": "Se"
10941097
},
10951098
"Tags": {
1096-
"shape": "S57"
1099+
"shape": "S5d"
10971100
},
10981101
"ThresholdMetricId": {}
10991102
}
@@ -1192,7 +1195,10 @@
11921195
"RoleArn": {},
11931196
"OutputFormat": {},
11941197
"Tags": {
1195-
"shape": "S57"
1198+
"shape": "S5d"
1199+
},
1200+
"StatisticsConfigurations": {
1201+
"shape": "S4i"
11961202
}
11971203
}
11981204
},
@@ -1228,7 +1234,7 @@
12281234
],
12291235
"members": {
12301236
"Names": {
1231-
"shape": "S5y"
1237+
"shape": "S64"
12321238
}
12331239
}
12341240
},
@@ -1246,7 +1252,7 @@
12461252
],
12471253
"members": {
12481254
"Names": {
1249-
"shape": "S5y"
1255+
"shape": "S64"
12501256
}
12511257
}
12521258
},
@@ -1266,7 +1272,7 @@
12661272
"members": {
12671273
"ResourceARN": {},
12681274
"Tags": {
1269-
"shape": "S57"
1275+
"shape": "S5d"
12701276
}
12711277
}
12721278
},
@@ -1553,7 +1559,37 @@
15531559
}
15541560
}
15551561
},
1556-
"S57": {
1562+
"S4i": {
1563+
"type": "list",
1564+
"member": {
1565+
"type": "structure",
1566+
"required": [
1567+
"IncludeMetrics",
1568+
"AdditionalStatistics"
1569+
],
1570+
"members": {
1571+
"IncludeMetrics": {
1572+
"type": "list",
1573+
"member": {
1574+
"type": "structure",
1575+
"required": [
1576+
"Namespace",
1577+
"MetricName"
1578+
],
1579+
"members": {
1580+
"Namespace": {},
1581+
"MetricName": {}
1582+
}
1583+
}
1584+
},
1585+
"AdditionalStatistics": {
1586+
"type": "list",
1587+
"member": {}
1588+
}
1589+
}
1590+
}
1591+
},
1592+
"S5d": {
15571593
"type": "list",
15581594
"member": {
15591595
"type": "structure",
@@ -1567,7 +1603,7 @@
15671603
}
15681604
}
15691605
},
1570-
"S5y": {
1606+
"S64": {
15711607
"type": "list",
15721608
"member": {}
15731609
}

0 commit comments

Comments
 (0)