Skip to content

Commit

Permalink
Release v1.42.29 (2022-01-06) (#4231)
Browse files Browse the repository at this point in the history
Release v1.42.29 (2022-01-06)
===

### Service Client Updates
* `service/appsync`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
  * This release introduces On-Demand Capacity Reservation support for Cluster Placement Groups, adds Tags on instance Metadata, and includes documentation updates for Amazon EC2.
* `service/es`: Updates service API and documentation
  * Amazon OpenSearch Service adds support for Fine Grained Access Control for existing domains running Elasticsearch version 6.7 and above
* `service/iotwireless`: Updates service API, documentation, and paginators
* `service/mediatailor`: Updates service API and documentation
* `service/mwaa`: Updates service API and documentation
* `service/opensearch`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Jan 6, 2022
1 parent 4fd4b72 commit 78b45fe
Show file tree
Hide file tree
Showing 31 changed files with 2,894 additions and 1,685 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.42.29 (2022-01-06)
===

### Service Client Updates
* `service/appsync`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
* This release introduces On-Demand Capacity Reservation support for Cluster Placement Groups, adds Tags on instance Metadata, and includes documentation updates for Amazon EC2.
* `service/es`: Updates service API and documentation
* Amazon OpenSearch Service adds support for Fine Grained Access Control for existing domains running Elasticsearch version 6.7 and above
* `service/iotwireless`: Updates service API, documentation, and paginators
* `service/mediatailor`: Updates service API and documentation
* `service/mwaa`: Updates service API and documentation
* `service/opensearch`: Updates service API and documentation

Release v1.42.28 (2022-01-05)
===

Expand Down
21 changes: 21 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.42.28"
const SDKVersion = "1.42.29"
29 changes: 21 additions & 8 deletions models/apis/appsync/2017-07-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,8 @@
"requestMappingTemplate":{"shape":"MappingTemplate"},
"responseMappingTemplate":{"shape":"MappingTemplate"},
"functionVersion":{"shape":"String"},
"syncConfig":{"shape":"SyncConfig"}
"syncConfig":{"shape":"SyncConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"}
}
},
"CreateFunctionResponse":{
Expand Down Expand Up @@ -1192,7 +1193,8 @@
"kind":{"shape":"ResolverKind"},
"pipelineConfig":{"shape":"PipelineConfig"},
"syncConfig":{"shape":"SyncConfig"},
"cachingConfig":{"shape":"CachingConfig"}
"cachingConfig":{"shape":"CachingConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"}
}
},
"CreateResolverResponse":{
Expand Down Expand Up @@ -1548,7 +1550,8 @@
"requestMappingTemplate":{"shape":"MappingTemplate"},
"responseMappingTemplate":{"shape":"MappingTemplate"},
"functionVersion":{"shape":"String"},
"syncConfig":{"shape":"SyncConfig"}
"syncConfig":{"shape":"SyncConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"}
}
},
"Functions":{
Expand Down Expand Up @@ -2138,7 +2141,13 @@
"MappingTemplate":{
"type":"string",
"max":65536,
"min":1
"min":1,
"pattern":"^.*$"
},
"MaxBatchSize":{
"type":"integer",
"max":2000,
"min":0
},
"MaxResults":{
"type":"integer",
Expand Down Expand Up @@ -2226,7 +2235,8 @@
"kind":{"shape":"ResolverKind"},
"pipelineConfig":{"shape":"PipelineConfig"},
"syncConfig":{"shape":"SyncConfig"},
"cachingConfig":{"shape":"CachingConfig"}
"cachingConfig":{"shape":"CachingConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"}
}
},
"ResolverKind":{
Expand Down Expand Up @@ -2339,7 +2349,8 @@
},
"TagValue":{
"type":"string",
"max":256
"max":256,
"pattern":"^[\\s\\w+-=\\.:/@]*$"
},
"Type":{
"type":"structure",
Expand Down Expand Up @@ -2525,7 +2536,8 @@
"requestMappingTemplate":{"shape":"MappingTemplate"},
"responseMappingTemplate":{"shape":"MappingTemplate"},
"functionVersion":{"shape":"String"},
"syncConfig":{"shape":"SyncConfig"}
"syncConfig":{"shape":"SyncConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"}
}
},
"UpdateFunctionResponse":{
Expand Down Expand Up @@ -2591,7 +2603,8 @@
"kind":{"shape":"ResolverKind"},
"pipelineConfig":{"shape":"PipelineConfig"},
"syncConfig":{"shape":"SyncConfig"},
"cachingConfig":{"shape":"CachingConfig"}
"cachingConfig":{"shape":"CachingConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"}
}
},
"UpdateResolverResponse":{
Expand Down
11 changes: 11 additions & 0 deletions models/apis/appsync/2017-07-25/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,17 @@
"UpdateResolverRequest$responseMappingTemplate": "<p>The new response mapping template.</p>"
}
},
"MaxBatchSize": {
"base": null,
"refs": {
"CreateFunctionRequest$maxBatchSize": "<p>The maximum batching size for a resolver.</p>",
"CreateResolverRequest$maxBatchSize": "<p>The maximum batching size for a resolver.</p>",
"FunctionConfiguration$maxBatchSize": "<p>The maximum batching size for a resolver.</p>",
"Resolver$maxBatchSize": "<p>The maximum batching size for a resolver.</p>",
"UpdateFunctionRequest$maxBatchSize": "<p>The maximum batching size for a resolver.</p>",
"UpdateResolverRequest$maxBatchSize": "<p>The maximum batching size for a resolver.</p>"
}
},
"MaxResults": {
"base": null,
"refs": {
Expand Down
Loading

0 comments on commit 78b45fe

Please sign in to comment.