Skip to content

Commit

Permalink
Release v1.40.47 (2021-09-22) (#4106)
Browse files Browse the repository at this point in the history
Release v1.40.47 (2021-09-22)
===

### Service Client Updates
* `service/iam`: Updates service documentation
  * Added changes to OIDC API about not using port numbers in the URL.
* `service/imagebuilder`: Updates service API and documentation
* `service/license-manager`: Updates service API and documentation
* `service/mediapackage-vod`: Updates service API and documentation
* `service/mediatailor`: Updates service API and documentation
* `service/models.lex.v2`: Updates service API, documentation, and paginators
* `service/wafv2`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored Sep 22, 2021
1 parent dec8867 commit 9f2d852
Show file tree
Hide file tree
Showing 31 changed files with 4,606 additions and 782 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.40.47 (2021-09-22)
===

### Service Client Updates
* `service/iam`: Updates service documentation
* Added changes to OIDC API about not using port numbers in the URL.
* `service/imagebuilder`: Updates service API and documentation
* `service/license-manager`: Updates service API and documentation
* `service/mediapackage-vod`: Updates service API and documentation
* `service/mediatailor`: Updates service API and documentation
* `service/models.lex.v2`: Updates service API, documentation, and paginators
* `service/wafv2`: Updates service API and documentation

Release v1.40.46 (2021-09-21)
===

Expand Down
24 changes: 24 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.46"
const SDKVersion = "1.40.47"
106 changes: 53 additions & 53 deletions models/apis/iam/2010-05-08/docs-2.json

Large diffs are not rendered by default.

44 changes: 41 additions & 3 deletions models/apis/imagebuilder/2019-12-02/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1019,6 +1019,7 @@
"type":{"shape":"ComponentType"},
"platform":{"shape":"Platform"},
"supportedOsVersions":{"shape":"OsVersionList"},
"state":{"shape":"ComponentState"},
"parameters":{"shape":"ComponentParameterDetailList"},
"owner":{"shape":"NonEmptyString"},
"data":{"shape":"ComponentData"},
Expand Down Expand Up @@ -1110,6 +1111,17 @@
"type":"list",
"member":{"shape":"ComponentParameterValue"}
},
"ComponentState":{
"type":"structure",
"members":{
"status":{"shape":"ComponentStatus"},
"reason":{"shape":"NonEmptyString"}
}
},
"ComponentStatus":{
"type":"string",
"enum":["DEPRECATED"]
},
"ComponentSummary":{
"type":"structure",
"members":{
Expand All @@ -1118,6 +1130,7 @@
"version":{"shape":"VersionNumber"},
"platform":{"shape":"Platform"},
"supportedOsVersions":{"shape":"OsVersionList"},
"state":{"shape":"ComponentState"},
"type":{"shape":"ComponentType"},
"owner":{"shape":"NonEmptyString"},
"description":{"shape":"NonEmptyString"},
Expand Down Expand Up @@ -1447,6 +1460,7 @@
"terminateInstanceOnFailure":{"shape":"NullableBoolean"},
"snsTopicArn":{"shape":"SnsTopicArn"},
"resourceTags":{"shape":"ResourceTagMap"},
"instanceMetadataOptions":{"shape":"InstanceMetadataOptions"},
"tags":{"shape":"TagMap"},
"clientToken":{
"shape":"ClientToken",
Expand Down Expand Up @@ -1653,19 +1667,25 @@
"kmsKeyId":{"shape":"NonEmptyString"},
"snapshotId":{"shape":"NonEmptyString"},
"volumeSize":{"shape":"EbsVolumeSizeInteger"},
"volumeType":{"shape":"EbsVolumeType"}
"volumeType":{"shape":"EbsVolumeType"},
"throughput":{"shape":"EbsVolumeThroughput"}
}
},
"EbsIopsInteger":{
"type":"integer",
"max":10000,
"max":64000,
"min":100
},
"EbsVolumeSizeInteger":{
"type":"integer",
"max":16000,
"min":1
},
"EbsVolumeThroughput":{
"type":"integer",
"max":1000,
"min":125
},
"EbsVolumeType":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -1917,6 +1937,15 @@
"infrastructureConfiguration":{"shape":"InfrastructureConfiguration"}
}
},
"HttpPutResponseHopLimit":{
"type":"integer",
"max":64,
"min":1
},
"HttpTokens":{
"type":"string",
"pattern":"optional|required"
},
"IdempotentParameterMismatchException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2176,6 +2205,7 @@
"dateCreated":{"shape":"DateTime"},
"dateUpdated":{"shape":"DateTime"},
"resourceTags":{"shape":"ResourceTagMap"},
"instanceMetadataOptions":{"shape":"InstanceMetadataOptions"},
"tags":{"shape":"TagMap"}
}
},
Expand Down Expand Up @@ -2233,6 +2263,13 @@
"blockDeviceMappings":{"shape":"InstanceBlockDeviceMappings"}
}
},
"InstanceMetadataOptions":{
"type":"structure",
"members":{
"httpTokens":{"shape":"HttpTokens"},
"httpPutResponseHopLimit":{"shape":"HttpPutResponseHopLimit"}
}
},
"InstanceProfileNameType":{
"type":"string",
"max":256,
Expand Down Expand Up @@ -3001,7 +3038,8 @@
"shape":"ClientToken",
"idempotencyToken":true
},
"resourceTags":{"shape":"ResourceTagMap"}
"resourceTags":{"shape":"ResourceTagMap"},
"instanceMetadataOptions":{"shape":"InstanceMetadataOptions"}
}
},
"UpdateInfrastructureConfigurationResponse":{
Expand Down
Loading

0 comments on commit 9f2d852

Please sign in to comment.