Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.43.39 #4361

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Release v1.43.39 (2022-04-13)
===

### Service Client Updates
* `service/fsx`: Updates service API, documentation, and paginators
* `service/monitoring`: Updates service API and documentation
* Adds support for additional statistics in CloudWatch Metric Streams.

Release v1.43.38 (2022-04-12)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.43.38"
const SDKVersion = "1.43.39"
5 changes: 4 additions & 1 deletion models/apis/fsx/2018-03-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2392,7 +2392,10 @@
},
"OntapDeploymentType":{
"type":"string",
"enum":["MULTI_AZ_1"]
"enum":[
"MULTI_AZ_1",
"SINGLE_AZ_1"
]
},
"OntapEndpointIpAddresses":{
"type":"list",
Expand Down
12 changes: 6 additions & 6 deletions models/apis/fsx/2018-03-01/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1342,8 +1342,8 @@
"IpAddressRange": {
"base": null,
"refs": {
"CreateFileSystemOntapConfiguration$EndpointIpAddressRange": "<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>",
"OntapFileSystemConfiguration$EndpointIpAddressRange": "<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>"
"CreateFileSystemOntapConfiguration$EndpointIpAddressRange": "<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>",
"OntapFileSystemConfiguration$EndpointIpAddressRange": "<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>"
}
},
"JunctionPath": {
Expand Down Expand Up @@ -1537,8 +1537,8 @@
"OntapDeploymentType": {
"base": null,
"refs": {
"CreateFileSystemOntapConfiguration$DeploymentType": "<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>",
"OntapFileSystemConfiguration$DeploymentType": "<p>The ONTAP file system deployment type.</p>"
"CreateFileSystemOntapConfiguration$DeploymentType": "<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>",
"OntapFileSystemConfiguration$DeploymentType": "<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>"
}
},
"OntapEndpointIpAddresses": {
Expand Down Expand Up @@ -1819,8 +1819,8 @@
"RouteTableIds": {
"base": null,
"refs": {
"CreateFileSystemOntapConfiguration$RouteTableIds": "<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>",
"OntapFileSystemConfiguration$RouteTableIds": "<p>The VPC route tables in which your file system's endpoints are created.</p>"
"CreateFileSystemOntapConfiguration$RouteTableIds": "<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>",
"OntapFileSystemConfiguration$RouteTableIds": "<p>(Multi-AZ only) The VPC route tables in which your file system's endpoints are created.</p>"
}
},
"S3DataRepositoryConfiguration": {
Expand Down
6 changes: 4 additions & 2 deletions models/apis/fsx/2018-03-01/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,14 @@
"DescribeStorageVirtualMachines": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults"
"limit_key": "MaxResults",
"result_key": "StorageVirtualMachines"
},
"DescribeVolumes": {
"input_token": "NextToken",
"output_token": "NextToken",
"limit_key": "MaxResults"
"limit_key": "MaxResults",
"result_key": "Volumes"
},
"ListTagsForResource": {
"input_token": "NextToken",
Expand Down
41 changes: 39 additions & 2 deletions models/apis/monitoring/2010-08-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,8 @@
"State":{"shape":"MetricStreamState"},
"CreationDate":{"shape":"Timestamp"},
"LastUpdateDate":{"shape":"Timestamp"},
"OutputFormat":{"shape":"MetricStreamOutputFormat"}
"OutputFormat":{"shape":"MetricStreamOutputFormat"},
"StatisticsConfigurations":{"shape":"MetricStreamStatisticsConfigurations"}
}
},
"GetMetricWidgetImageInput":{
Expand Down Expand Up @@ -1843,6 +1844,41 @@
"min":1
},
"MetricStreamState":{"type":"string"},
"MetricStreamStatistic":{"type":"string"},
"MetricStreamStatisticsAdditionalStatistics":{
"type":"list",
"member":{"shape":"MetricStreamStatistic"}
},
"MetricStreamStatisticsConfiguration":{
"type":"structure",
"required":[
"IncludeMetrics",
"AdditionalStatistics"
],
"members":{
"IncludeMetrics":{"shape":"MetricStreamStatisticsIncludeMetrics"},
"AdditionalStatistics":{"shape":"MetricStreamStatisticsAdditionalStatistics"}
}
},
"MetricStreamStatisticsConfigurations":{
"type":"list",
"member":{"shape":"MetricStreamStatisticsConfiguration"}
},
"MetricStreamStatisticsIncludeMetrics":{
"type":"list",
"member":{"shape":"MetricStreamStatisticsMetric"}
},
"MetricStreamStatisticsMetric":{
"type":"structure",
"required":[
"Namespace",
"MetricName"
],
"members":{
"Namespace":{"shape":"Namespace"},
"MetricName":{"shape":"MetricName"}
}
},
"MetricWidget":{"type":"string"},
"MetricWidgetImage":{"type":"blob"},
"Metrics":{
Expand Down Expand Up @@ -2026,7 +2062,8 @@
"FirehoseArn":{"shape":"AmazonResourceName"},
"RoleArn":{"shape":"AmazonResourceName"},
"OutputFormat":{"shape":"MetricStreamOutputFormat"},
"Tags":{"shape":"TagList"}
"Tags":{"shape":"TagList"},
"StatisticsConfigurations":{"shape":"MetricStreamStatisticsConfigurations"}
}
},
"PutMetricStreamOutput":{
Expand Down
Loading