Skip to content

Commit

Permalink
Release v1.40.58 (2021-10-07) (#4126)
Browse files Browse the repository at this point in the history
Release v1.40.58 (2021-10-07)
===

### Service Client Updates
* `service/backup`: Updates service API and documentation
* `service/chime`: Updates service API and documentation
  * This release enables customers to configure Chime MediaCapturePipeline via API.
* `service/firehose`: Updates service API and documentation
  * Allow support for Amazon Opensearch Service(successor to Amazon Elasticsearch Service) as a Kinesis Data Firehose delivery destination.
* `service/grafana`: Updates service API, documentation, paginators, and examples
* `service/kendra`: Updates service API and documentation
  * Amazon Kendra now supports indexing and querying documents in different languages.
* `service/schemas`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Oct 7, 2021
1 parent 5089b45 commit 0a01aef
Show file tree
Hide file tree
Showing 28 changed files with 9,028 additions and 163 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release v1.40.58 (2021-10-07)
===

### Service Client Updates
* `service/backup`: Updates service API and documentation
* `service/chime`: Updates service API and documentation
* This release enables customers to configure Chime MediaCapturePipeline via API.
* `service/firehose`: Updates service API and documentation
* Allow support for Amazon Opensearch Service(successor to Amazon Elasticsearch Service) as a Kinesis Data Firehose delivery destination.
* `service/grafana`: Updates service API, documentation, paginators, and examples
* `service/kendra`: Updates service API and documentation
* Amazon Kendra now supports indexing and querying documents in different languages.
* `service/schemas`: Updates service API and documentation

Release v1.40.57 (2021-10-06)
===

Expand Down
65 changes: 65 additions & 0 deletions 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.40.57"
const SDKVersion = "1.40.58"
69 changes: 67 additions & 2 deletions models/apis/backup/2018-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,22 @@
],
"idempotent":true
},
"DeleteBackupVaultLockConfiguration":{
"name":"DeleteBackupVaultLockConfiguration",
"http":{
"method":"DELETE",
"requestUri":"/backup-vaults/{backupVaultName}/vault-lock"
},
"input":{"shape":"DeleteBackupVaultLockConfigurationInput"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParameterValueException"},
{"shape":"MissingParameterValueException"},
{"shape":"InvalidRequestException"},
{"shape":"ServiceUnavailableException"}
],
"idempotent":true
},
"DeleteBackupVaultNotifications":{
"name":"DeleteBackupVaultNotifications",
"http":{
Expand Down Expand Up @@ -777,6 +793,22 @@
],
"idempotent":true
},
"PutBackupVaultLockConfiguration":{
"name":"PutBackupVaultLockConfiguration",
"http":{
"method":"PUT",
"requestUri":"/backup-vaults/{backupVaultName}/vault-lock"
},
"input":{"shape":"PutBackupVaultLockConfigurationInput"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParameterValueException"},
{"shape":"MissingParameterValueException"},
{"shape":"InvalidRequestException"},
{"shape":"ServiceUnavailableException"}
],
"idempotent":true
},
"PutBackupVaultNotifications":{
"name":"PutBackupVaultNotifications",
"http":{
Expand Down Expand Up @@ -1261,7 +1293,11 @@
"CreationDate":{"shape":"timestamp"},
"EncryptionKeyArn":{"shape":"ARN"},
"CreatorRequestId":{"shape":"string"},
"NumberOfRecoveryPoints":{"shape":"long"}
"NumberOfRecoveryPoints":{"shape":"long"},
"Locked":{"shape":"Boolean"},
"MinRetentionDays":{"shape":"Long"},
"MaxRetentionDays":{"shape":"Long"},
"LockDate":{"shape":"timestamp"}
}
},
"BackupVaultName":{
Expand Down Expand Up @@ -1554,6 +1590,17 @@
}
}
},
"DeleteBackupVaultLockConfigurationInput":{
"type":"structure",
"required":["BackupVaultName"],
"members":{
"BackupVaultName":{
"shape":"BackupVaultName",
"location":"uri",
"locationName":"backupVaultName"
}
}
},
"DeleteBackupVaultNotificationsInput":{
"type":"structure",
"required":["BackupVaultName"],
Expand Down Expand Up @@ -1672,7 +1719,11 @@
"EncryptionKeyArn":{"shape":"ARN"},
"CreationDate":{"shape":"timestamp"},
"CreatorRequestId":{"shape":"string"},
"NumberOfRecoveryPoints":{"shape":"long"}
"NumberOfRecoveryPoints":{"shape":"long"},
"Locked":{"shape":"Boolean"},
"MinRetentionDays":{"shape":"Long"},
"MaxRetentionDays":{"shape":"Long"},
"LockDate":{"shape":"timestamp"}
}
},
"DescribeCopyJobInput":{
Expand Down Expand Up @@ -2721,6 +2772,20 @@
"Policy":{"shape":"IAMPolicy"}
}
},
"PutBackupVaultLockConfigurationInput":{
"type":"structure",
"required":["BackupVaultName"],
"members":{
"BackupVaultName":{
"shape":"BackupVaultName",
"location":"uri",
"locationName":"backupVaultName"
},
"MinRetentionDays":{"shape":"Long"},
"MaxRetentionDays":{"shape":"Long"},
"ChangeableForDays":{"shape":"Long"}
}
},
"PutBackupVaultNotificationsInput":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit 0a01aef

Please sign in to comment.