Skip to content

Commit

Permalink
Release v1.35.31 (2020-11-18) (#3642)
Browse files Browse the repository at this point in the history
Release v1.35.31 (2020-11-18)
===

### Service Client Updates
* `service/backup`: Updates service API and documentation
* `service/cloudformation`: Updates service API and documentation
  * This release adds ChangeSets support for Nested Stacks. ChangeSets offer a preview of how proposed changes to a stack might impact existing resources or create new ones.
* `service/codebuild`: Updates service API and documentation
  * AWS CodeBuild - Adding Status field for Report Group
* `service/ec2`: Updates service documentation
  * EC2 Fleet adds support of DeleteFleets API for instant type fleets. Now you can delete an instant type fleet and terminate all associated instances with a single API call.
* `service/elasticache`: Updates service documentation
  * Adding Memcached 1.6 to parameter family
* `service/outposts`: Updates service API
* `service/s3control`: Updates service API and documentation
  * AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix.

### SDK Enhancements
* Update golang.org/x/net dependency [#3638](#3638)
  * Updates the SDK's dependency on golang.org/x/net module to update the transitive golang.org/x/text module dependency to the latest version of v0.3.3.
  * Fixes [#3457](#3457)
  • Loading branch information
aws-sdk-go-automation authored Nov 18, 2020
1 parent 3340152 commit 8d7ca44
Show file tree
Hide file tree
Showing 25 changed files with 4,314 additions and 621 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
Release v1.35.31 (2020-11-18)
===

### Service Client Updates
* `service/backup`: Updates service API and documentation
* `service/cloudformation`: Updates service API and documentation
* This release adds ChangeSets support for Nested Stacks. ChangeSets offer a preview of how proposed changes to a stack might impact existing resources or create new ones.
* `service/codebuild`: Updates service API and documentation
* AWS CodeBuild - Adding Status field for Report Group
* `service/ec2`: Updates service documentation
* EC2 Fleet adds support of DeleteFleets API for instant type fleets. Now you can delete an instant type fleet and terminate all associated instances with a single API call.
* `service/elasticache`: Updates service documentation
* Adding Memcached 1.6 to parameter family
* `service/outposts`: Updates service API
* `service/s3control`: Updates service API and documentation
* AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix.

### SDK Enhancements
* Update golang.org/x/net dependency [#3638](https://github.com/aws/aws-sdk-go/pull/3638)
* Updates the SDK's dependency on golang.org/x/net module to update the transitive golang.org/x/text module dependency to the latest version of v0.3.3.
* Fixes [#3457](https://github.com/aws/aws-sdk-go/issues/3457)

Release v1.35.30 (2020-11-17)
===

Expand Down
3 changes: 0 additions & 3 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
### SDK Features

### SDK Enhancements
* Update golang.org/x/net dependency [#3638](https://github.com/aws/aws-sdk-go/pull/3638)
* Updates the SDK's dependency on golang.org/x/net module to update the transitive golang.org/x/text module dependency to the latest version of v0.3.3.
* Fixes [#3457](https://github.com/aws/aws-sdk-go/issues/3457)

### SDK Bugs
9 changes: 8 additions & 1 deletion aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.35.30"
const SDKVersion = "1.35.31"
54 changes: 54 additions & 0 deletions models/apis/backup/2018-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,18 @@
],
"idempotent":true
},
"DescribeGlobalSettings":{
"name":"DescribeGlobalSettings",
"http":{
"method":"GET",
"requestUri":"/global-settings"
},
"input":{"shape":"DescribeGlobalSettingsInput"},
"output":{"shape":"DescribeGlobalSettingsOutput"},
"errors":[
{"shape":"ServiceUnavailableException"}
]
},
"DescribeProtectedResource":{
"name":"DescribeProtectedResource",
"http":{
Expand Down Expand Up @@ -626,6 +638,7 @@
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParameterValueException"},
{"shape":"MissingParameterValueException"},
{"shape":"InvalidRequestException"},
{"shape":"ServiceUnavailableException"},
{"shape":"LimitExceededException"}
],
Expand Down Expand Up @@ -726,6 +739,20 @@
],
"idempotent":true
},
"UpdateGlobalSettings":{
"name":"UpdateGlobalSettings",
"http":{
"method":"PUT",
"requestUri":"/global-settings"
},
"input":{"shape":"UpdateGlobalSettingsInput"},
"errors":[
{"shape":"ServiceUnavailableException"},
{"shape":"MissingParameterValueException"},
{"shape":"InvalidParameterValueException"},
{"shape":"InvalidRequestException"}
]
},
"UpdateRecoveryPointLifecycle":{
"name":"UpdateRecoveryPointLifecycle",
"http":{
Expand Down Expand Up @@ -1335,6 +1362,18 @@
"CopyJob":{"shape":"CopyJob"}
}
},
"DescribeGlobalSettingsInput":{
"type":"structure",
"members":{
}
},
"DescribeGlobalSettingsOutput":{
"type":"structure",
"members":{
"GlobalSettings":{"shape":"GlobalSettings"},
"LastUpdateTime":{"shape":"timestamp"}
}
},
"DescribeProtectedResourceInput":{
"type":"structure",
"required":["ResourceArn"],
Expand Down Expand Up @@ -1379,6 +1418,7 @@
"RecoveryPointArn":{"shape":"ARN"},
"BackupVaultName":{"shape":"BackupVaultName"},
"BackupVaultArn":{"shape":"ARN"},
"SourceBackupVaultArn":{"shape":"ARN"},
"ResourceArn":{"shape":"ARN"},
"ResourceType":{"shape":"ResourceType"},
"CreatedBy":{"shape":"RecoveryPointCreator"},
Expand Down Expand Up @@ -1613,6 +1653,13 @@
"ResourceTypes":{"shape":"ResourceTypes"}
}
},
"GlobalSettings":{
"type":"map",
"key":{"shape":"GlobalSettingsName"},
"value":{"shape":"GlobalSettingsValue"}
},
"GlobalSettingsName":{"type":"string"},
"GlobalSettingsValue":{"type":"string"},
"IAMPolicy":{"type":"string"},
"IAMRoleArn":{"type":"string"},
"InvalidParameterValueException":{
Expand Down Expand Up @@ -2142,6 +2189,7 @@
"RecoveryPointArn":{"shape":"ARN"},
"BackupVaultName":{"shape":"BackupVaultName"},
"BackupVaultArn":{"shape":"ARN"},
"SourceBackupVaultArn":{"shape":"ARN"},
"ResourceArn":{"shape":"ARN"},
"ResourceType":{"shape":"ResourceType"},
"CreatedBy":{"shape":"RecoveryPointCreator"},
Expand Down Expand Up @@ -2424,6 +2472,12 @@
"AdvancedBackupSettings":{"shape":"AdvancedBackupSettings"}
}
},
"UpdateGlobalSettingsInput":{
"type":"structure",
"members":{
"GlobalSettings":{"shape":"GlobalSettings"}
}
},
"UpdateRecoveryPointLifecycleInput":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit 8d7ca44

Please sign in to comment.