Skip to content

Commit

Permalink
Release v1.40.23 (2021-08-16) (#4060)
Browse files Browse the repository at this point in the history
Release v1.40.23 (2021-08-16)
===

### Service Client Updates
* `service/codebuild`: Updates service API and documentation
  * CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
* `service/config`: Updates service API
* `service/ds`: Updates service API and documentation
  * This release adds support for describing client authentication settings.
* `service/iotsitewise`: Updates service API and documentation
* `service/license-manager`: Updates service API
* `service/s3`: Updates service documentation and examples
  * Documentation updates for Amazon S3
  • Loading branch information
aws-sdk-go-automation authored Aug 16, 2021
1 parent c41acdc commit 8b73af7
Show file tree
Hide file tree
Showing 26 changed files with 2,078 additions and 1,282 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.23 (2021-08-16)
===

### Service Client Updates
* `service/codebuild`: Updates service API and documentation
* CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
* `service/config`: Updates service API
* `service/ds`: Updates service API and documentation
* This release adds support for describing client authentication settings.
* `service/iotsitewise`: Updates service API and documentation
* `service/license-manager`: Updates service API
* `service/s3`: Updates service documentation and examples
* Documentation updates for Amazon S3

Release v1.40.22 (2021-08-13)
===

Expand Down
54 changes: 48 additions & 6 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.22"
const SDKVersion = "1.40.23"
10 changes: 9 additions & 1 deletion models/apis/codebuild/2016-10-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,13 @@
"reportsNotFound":{"shape":"ReportArns"}
}
},
"BatchReportModeType":{
"type":"string",
"enum":[
"REPORT_INDIVIDUAL_BUILDS",
"REPORT_AGGREGATED_BATCH"
]
},
"BatchRestrictions":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1769,7 +1776,8 @@
"serviceRole":{"shape":"NonEmptyString"},
"combineArtifacts":{"shape":"WrapperBoolean"},
"restrictions":{"shape":"BatchRestrictions"},
"timeoutInMins":{"shape":"WrapperInt"}
"timeoutInMins":{"shape":"WrapperInt"},
"batchReportMode":{"shape":"BatchReportModeType"}
}
},
"ProjectCache":{
Expand Down
6 changes: 6 additions & 0 deletions models/apis/codebuild/2016-10-06/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@
"refs": {
}
},
"BatchReportModeType": {
"base": null,
"refs": {
"ProjectBuildBatchConfig$batchReportMode": "<p>Specifies how build status reports are sent to the source provider for the batch build. This property is only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is configured to report build statuses to the source provider.</p> <dl> <dt>REPORT_AGGREGATED_BATCH</dt> <dd> <p>(Default) Aggregate all of the build statuses into a single status report.</p> </dd> <dt>REPORT_INDIVIDUAL_BUILDS</dt> <dd> <p>Send a separate status report for each individual build.</p> </dd> </dl>"
}
},
"BatchRestrictions": {
"base": "<p>Specifies restrictions for the batch build.</p>",
"refs": {
Expand Down
13 changes: 12 additions & 1 deletion models/apis/config/2014-11-12/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4355,7 +4355,18 @@
"AWS::QLDB::Ledger",
"AWS::SecretsManager::Secret",
"AWS::SNS::Topic",
"AWS::SSM::FileData"
"AWS::SSM::FileData",
"AWS::Backup::BackupPlan",
"AWS::Backup::BackupSelection",
"AWS::Backup::BackupVault",
"AWS::Backup::RecoveryPoint",
"AWS::ECR::Repository",
"AWS::ECS::Cluster",
"AWS::ECS::Service",
"AWS::ECS::TaskDefinition",
"AWS::EFS::AccessPoint",
"AWS::EFS::FileSystem",
"AWS::EKS::Cluster"
]
},
"ResourceTypeList":{
Expand Down
56 changes: 55 additions & 1 deletion models/apis/ds/2015-04-16/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,23 @@
{"shape":"ServiceException"}
]
},
"DescribeClientAuthenticationSettings":{
"name":"DescribeClientAuthenticationSettings",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeClientAuthenticationSettingsRequest"},
"output":{"shape":"DescribeClientAuthenticationSettingsResult"},
"errors":[
{"shape":"DirectoryDoesNotExistException"},
{"shape":"UnsupportedOperationException"},
{"shape":"AccessDeniedException"},
{"shape":"InvalidParameterException"},
{"shape":"ClientException"},
{"shape":"ServiceException"}
]
},
"DescribeConditionalForwarders":{
"name":"DescribeConditionalForwarders",
"http":{
Expand Down Expand Up @@ -1121,7 +1138,7 @@
"type":"string",
"max":62,
"min":1,
"pattern":"^(?!d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*"
"pattern":"^(?!D-|d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*"
},
"Attribute":{
"type":"structure",
Expand Down Expand Up @@ -1266,6 +1283,25 @@
"type":"list",
"member":{"shape":"CidrIp"}
},
"ClientAuthenticationSettingInfo":{
"type":"structure",
"members":{
"Type":{"shape":"ClientAuthenticationType"},
"Status":{"shape":"ClientAuthenticationStatus"},
"LastUpdatedDateTime":{"shape":"LastUpdatedDateTime"}
}
},
"ClientAuthenticationSettingsInfo":{
"type":"list",
"member":{"shape":"ClientAuthenticationSettingInfo"}
},
"ClientAuthenticationStatus":{
"type":"string",
"enum":[
"Enabled",
"Disabled"
]
},
"ClientAuthenticationType":{
"type":"string",
"enum":["SmartCard"]
Expand Down Expand Up @@ -1635,6 +1671,23 @@
"Certificate":{"shape":"Certificate"}
}
},
"DescribeClientAuthenticationSettingsRequest":{
"type":"structure",
"required":["DirectoryId"],
"members":{
"DirectoryId":{"shape":"DirectoryId"},
"Type":{"shape":"ClientAuthenticationType"},
"NextToken":{"shape":"NextToken"},
"Limit":{"shape":"PageLimit"}
}
},
"DescribeClientAuthenticationSettingsResult":{
"type":"structure",
"members":{
"ClientAuthenticationSettingsInfo":{"shape":"ClientAuthenticationSettingsInfo"},
"NextToken":{"shape":"NextToken"}
}
},
"DescribeConditionalForwardersRequest":{
"type":"structure",
"required":["DirectoryId"],
Expand Down Expand Up @@ -2559,6 +2612,7 @@
"type":"string",
"max":512,
"min":8,
"pattern":"^(\\p{LD}|\\p{Punct}| )+$",
"sensitive":true
},
"RadiusStatus":{
Expand Down
Loading

0 comments on commit 8b73af7

Please sign in to comment.