Skip to content

Commit

Permalink
Release v1.37.23 (2021-03-03) (#3808)
Browse files Browse the repository at this point in the history
Release v1.37.23 (2021-03-03)
===

### Service Client Updates
* `service/acm`: Updates service API and documentation
  * Adds 2 new APIs to add and retrieve account configuration in AWS Certificate Manager.
* `service/codebuild`: Updates service API and documentation
  * AWS CodeBuild now supports Session Manager debugging for batch builds.
* `service/es`: Updates service API and documentation
  * AWS ElasticSearch Feature : Support for adding tags in elastic search domain during domain creation
* `service/events`: Updates service API and documentation
  * Adds TraceHeader to PutEventsRequestEntry to support AWS X-Ray trace-ids on events generated using the PutEvents operation.
* `service/forecast`: Updates service API and documentation
* `service/macie2`: Updates service API and documentation
* `service/secretsmanager`: Updates service API and documentation
  * Added support for multi-Region secrets APIs ReplicateSecretToRegions, RemoveRegionsFromReplication, and StopReplicationToReplica
* `service/wellarchitected`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Mar 3, 2021
1 parent 6a1e783 commit 27d5e03
Show file tree
Hide file tree
Showing 34 changed files with 3,154 additions and 275 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
Release v1.37.23 (2021-03-03)
===

### Service Client Updates
* `service/acm`: Updates service API and documentation
* Adds 2 new APIs to add and retrieve account configuration in AWS Certificate Manager.
* `service/codebuild`: Updates service API and documentation
* AWS CodeBuild now supports Session Manager debugging for batch builds.
* `service/es`: Updates service API and documentation
* AWS ElasticSearch Feature : Support for adding tags in elastic search domain during domain creation
* `service/events`: Updates service API and documentation
* Adds TraceHeader to PutEventsRequestEntry to support AWS X-Ray trace-ids on events generated using the PutEvents operation.
* `service/forecast`: Updates service API and documentation
* `service/macie2`: Updates service API and documentation
* `service/secretsmanager`: Updates service API and documentation
* Added support for multi-Region secrets APIs ReplicateSecretToRegions, RemoveRegionsFromReplication, and StopReplicationToReplica
* `service/wellarchitected`: Updates service API and documentation

Release v1.37.22 (2021-03-02)
===

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.37.22"
const SDKVersion = "1.37.23"
93 changes: 90 additions & 3 deletions models/apis/acm/2015-12-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
{"shape":"InvalidTagException"},
{"shape":"TooManyTagsException"},
{"shape":"TagPolicyException"},
{"shape":"InvalidParameterException"}
{"shape":"InvalidParameterException"},
{"shape":"ThrottlingException"}
]
},
"DeleteCertificate":{
Expand Down Expand Up @@ -69,6 +70,18 @@
{"shape":"InvalidArnException"}
]
},
"GetAccountConfiguration":{
"name":"GetAccountConfiguration",
"http":{
"method":"POST",
"requestUri":"/"
},
"output":{"shape":"GetAccountConfigurationResponse"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ThrottlingException"}
]
},
"GetCertificate":{
"name":"GetCertificate",
"http":{
Expand Down Expand Up @@ -97,7 +110,8 @@
{"shape":"InvalidTagException"},
{"shape":"TooManyTagsException"},
{"shape":"TagPolicyException"},
{"shape":"InvalidParameterException"}
{"shape":"InvalidParameterException"},
{"shape":"InvalidArnException"}
]
},
"ListCertificates":{
Expand Down Expand Up @@ -125,6 +139,20 @@
{"shape":"InvalidArnException"}
]
},
"PutAccountConfiguration":{
"name":"PutAccountConfiguration",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutAccountConfigurationRequest"},
"errors":[
{"shape":"ValidationException"},
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"}
]
},
"RemoveTagsFromCertificate":{
"name":"RemoveTagsFromCertificate",
"http":{
Expand All @@ -137,7 +165,8 @@
{"shape":"InvalidArnException"},
{"shape":"InvalidTagException"},
{"shape":"TagPolicyException"},
{"shape":"InvalidParameterException"}
{"shape":"InvalidParameterException"},
{"shape":"ThrottlingException"}
]
},
"RenewCertificate":{
Expand Down Expand Up @@ -200,6 +229,14 @@
}
},
"shapes":{
"AccessDeniedException":{
"type":"structure",
"members":{
"Message":{"shape":"ServiceErrorMessage"}
},
"exception":true,
"synthetic":true
},
"AddTagsToCertificateRequest":{
"type":"structure",
"required":[
Expand All @@ -217,6 +254,7 @@
"min":20,
"pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]+:[\\w+=,.@-]+(/[\\w+=,.@-]+)*"
},
"AvailabilityErrorMessage":{"type":"string"},
"CertificateBody":{
"type":"string",
"max":32768,
Expand Down Expand Up @@ -318,6 +356,13 @@
"PRIVATE"
]
},
"ConflictException":{
"type":"structure",
"members":{
"message":{"shape":"String"}
},
"exception":true
},
"DeleteCertificateRequest":{
"type":"structure",
"required":["CertificateArn"],
Expand Down Expand Up @@ -393,6 +438,12 @@
"max":100,
"min":1
},
"ExpiryEventsConfiguration":{
"type":"structure",
"members":{
"DaysBeforeExpiry":{"shape":"PositiveInteger"}
}
},
"ExportCertificateRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -474,6 +525,12 @@
"keyTypes":{"shape":"KeyAlgorithmList"}
}
},
"GetAccountConfigurationResponse":{
"type":"structure",
"members":{
"ExpiryEvents":{"shape":"ExpiryEventsConfiguration"}
}
},
"GetCertificateRequest":{
"type":"structure",
"required":["CertificateArn"],
Expand Down Expand Up @@ -658,6 +715,10 @@
"min":4,
"sensitive":true
},
"PositiveInteger":{
"type":"integer",
"min":1
},
"PrivateKey":{
"type":"string",
"max":524288,
Expand All @@ -671,6 +732,14 @@
"min":1,
"sensitive":true
},
"PutAccountConfigurationRequest":{
"type":"structure",
"required":["IdempotencyToken"],
"members":{
"ExpiryEvents":{"shape":"ExpiryEventsConfiguration"},
"IdempotencyToken":{"shape":"IdempotencyToken"}
}
},
"RecordType":{
"type":"string",
"enum":["CNAME"]
Expand Down Expand Up @@ -805,6 +874,7 @@
"A_A_COMPROMISE"
]
},
"ServiceErrorMessage":{"type":"string"},
"String":{"type":"string"},
"TStamp":{"type":"timestamp"},
"Tag":{
Expand Down Expand Up @@ -840,6 +910,14 @@
"min":0,
"pattern":"[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]*"
},
"ThrottlingException":{
"type":"structure",
"members":{
"message":{"shape":"AvailabilityErrorMessage"}
},
"exception":true,
"synthetic":true
},
"TooManyTagsException":{
"type":"structure",
"members":{
Expand All @@ -862,6 +940,15 @@
"type":"list",
"member":{"shape":"String"}
},
"ValidationException":{
"type":"structure",
"members":{
"message":{"shape":"ValidationExceptionMessage"}
},
"exception":true,
"synthetic":true
},
"ValidationExceptionMessage":{"type":"string"},
"ValidationMethod":{
"type":"string",
"enum":[
Expand Down
Loading

0 comments on commit 27d5e03

Please sign in to comment.