Skip to content

Commit 596b038

Browse files
Update models for release
1 parent 27d59c2 commit 596b038

21 files changed

+480
-66
lines changed

.changes/3.300.5

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "api-change",
4+
"category": "KafkaConnect",
5+
"description": "Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API."
6+
},
7+
{
8+
"type": "api-change",
9+
"category": "RDS",
10+
"description": "This release adds support for gp3 data volumes for Multi-AZ DB Clusters."
11+
},
12+
{
13+
"type": "api-change",
14+
"category": "drs",
15+
"description": "Added volume status to DescribeSourceServer replicated volumes."
16+
},
17+
{
18+
"type": "enhancement",
19+
"category": "APIGateway",
20+
"description": "Documentation updates for Amazon API Gateway."
21+
}
22+
]

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## next release
4+
5+
* `Aws\KafkaConnect` - Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API.
6+
* `Aws\RDS` - This release adds support for gp3 data volumes for Multi-AZ DB Clusters.
7+
* `Aws\drs` - Added volume status to DescribeSourceServer replicated volumes.
8+
* `Aws\APIGateway` - Documentation updates for Amazon API Gateway.
9+
310
## 3.300.4 - 2024-02-23
411

512
* `Aws\QLDB` - Clarify possible values for KmsKeyArn and EncryptionDescription.

src/KafkaConnect/KafkaConnectClient.php

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* @method \GuzzleHttp\Promise\Promise deleteConnectorAsync(array $args = [])
1616
* @method \Aws\Result deleteCustomPlugin(array $args = [])
1717
* @method \GuzzleHttp\Promise\Promise deleteCustomPluginAsync(array $args = [])
18+
* @method \Aws\Result deleteWorkerConfiguration(array $args = [])
19+
* @method \GuzzleHttp\Promise\Promise deleteWorkerConfigurationAsync(array $args = [])
1820
* @method \Aws\Result describeConnector(array $args = [])
1921
* @method \GuzzleHttp\Promise\Promise describeConnectorAsync(array $args = [])
2022
* @method \Aws\Result describeCustomPlugin(array $args = [])
@@ -25,8 +27,14 @@
2527
* @method \GuzzleHttp\Promise\Promise listConnectorsAsync(array $args = [])
2628
* @method \Aws\Result listCustomPlugins(array $args = [])
2729
* @method \GuzzleHttp\Promise\Promise listCustomPluginsAsync(array $args = [])
30+
* @method \Aws\Result listTagsForResource(array $args = [])
31+
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
2832
* @method \Aws\Result listWorkerConfigurations(array $args = [])
2933
* @method \GuzzleHttp\Promise\Promise listWorkerConfigurationsAsync(array $args = [])
34+
* @method \Aws\Result tagResource(array $args = [])
35+
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
36+
* @method \Aws\Result untagResource(array $args = [])
37+
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
3038
* @method \Aws\Result updateConnector(array $args = [])
3139
* @method \GuzzleHttp\Promise\Promise updateConnectorAsync(array $args = [])
3240
*/

src/data/apigateway/2015-07-09/docs-2.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"UpdateIntegrationResponse": "<p>Represents an update integration response.</p>",
115115
"UpdateMethod": "<p>Updates an existing Method resource.</p>",
116116
"UpdateMethodResponse": "<p>Updates an existing MethodResponse resource.</p>",
117-
"UpdateModel": "<p>Changes information about a model.</p>",
117+
"UpdateModel": "<p>Changes information about a model. The maximum size of the model is 400 KB.</p>",
118118
"UpdateRequestValidator": "<p>Updates a RequestValidator of a given RestApi.</p>",
119119
"UpdateResource": "<p>Changes information about a Resource resource.</p>",
120120
"UpdateRestApi": "<p>Changes information about the specified API.</p>",
@@ -245,7 +245,7 @@
245245
"RequestValidator$validateRequestParameters": "<p>A Boolean flag to indicate whether to validate request parameters (<code>true</code>) or not (<code>false</code>).</p>",
246246
"RestApi$disableExecuteApiEndpoint": "<p>Specifies whether clients can invoke your API by using the default <code>execute-api</code> endpoint. By default, clients can invoke your API with the default <code>https://{api_id}.execute-api.{region}.amazonaws.com</code> endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.</p>",
247247
"SdkConfigurationProperty$required": "<p>A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (<code>true</code>) or not (<code>false</code>).</p>",
248-
"Stage$cacheClusterEnabled": "<p>Specifies whether a cache cluster is enabled for the stage.</p>",
248+
"Stage$cacheClusterEnabled": "<p>Specifies whether a cache cluster is enabled for the stage. To activate a method-level cache, set <code>CachingEnabled</code> to <code>true</code> for a method. </p>",
249249
"Stage$tracingEnabled": "<p>Specifies whether active tracing with X-ray is enabled for the Stage.</p>",
250250
"TlsConfig$insecureSkipVerification": "<p>Specifies whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and presence of a root certificate authority. Supported only for <code>HTTP</code> and <code>HTTP_PROXY</code> integrations.</p> <important> <p>Enabling <code>insecureSkipVerification</code> isn't recommended, especially for integrations with public HTTPS endpoints. If you enable <code>insecureSkipVerification</code>, you increase the risk of man-in-the-middle attacks.</p> </important>"
251251
}
@@ -1583,7 +1583,7 @@
15831583
"CreateModelRequest$restApiId": "<p>The RestApi identifier under which the Model will be created.</p>",
15841584
"CreateModelRequest$name": "<p>The name of the model. Must be alphanumeric.</p>",
15851585
"CreateModelRequest$description": "<p>The description of the model.</p>",
1586-
"CreateModelRequest$schema": "<p>The schema for the model. For <code>application/json</code> models, this should be JSON schema draft 4 model.</p>",
1586+
"CreateModelRequest$schema": "<p>The schema for the model. For <code>application/json</code> models, this should be JSON schema draft 4 model. The maximum size of the model is 400 KB.</p>",
15871587
"CreateModelRequest$contentType": "<p>The content-type for the model.</p>",
15881588
"CreateRequestValidatorRequest$restApiId": "<p>The string identifier of the associated RestApi.</p>",
15891589
"CreateRequestValidatorRequest$name": "<p>The name of the to-be-created RequestValidator.</p>",

src/data/apigateway/2015-07-09/docs-2.json.php

+1-1
Large diffs are not rendered by default.

src/data/apigateway/2015-07-09/endpoint-rule-set-1.json

+20-20
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
]
4141
}
4242
],
43-
"type": "tree",
4443
"rules": [
4544
{
4645
"conditions": [
@@ -83,7 +82,8 @@
8382
},
8483
"type": "endpoint"
8584
}
86-
]
85+
],
86+
"type": "tree"
8787
},
8888
{
8989
"conditions": [
@@ -96,7 +96,6 @@
9696
]
9797
}
9898
],
99-
"type": "tree",
10099
"rules": [
101100
{
102101
"conditions": [
@@ -110,7 +109,6 @@
110109
"assign": "PartitionResult"
111110
}
112111
],
113-
"type": "tree",
114112
"rules": [
115113
{
116114
"conditions": [
@@ -133,7 +131,6 @@
133131
]
134132
}
135133
],
136-
"type": "tree",
137134
"rules": [
138135
{
139136
"conditions": [
@@ -168,7 +165,6 @@
168165
]
169166
}
170167
],
171-
"type": "tree",
172168
"rules": [
173169
{
174170
"conditions": [],
@@ -179,14 +175,16 @@
179175
},
180176
"type": "endpoint"
181177
}
182-
]
178+
],
179+
"type": "tree"
183180
},
184181
{
185182
"conditions": [],
186183
"error": "FIPS and DualStack are enabled, but this partition does not support one or both",
187184
"type": "error"
188185
}
189-
]
186+
],
187+
"type": "tree"
190188
},
191189
{
192190
"conditions": [
@@ -200,14 +198,12 @@
200198
]
201199
}
202200
],
203-
"type": "tree",
204201
"rules": [
205202
{
206203
"conditions": [
207204
{
208205
"fn": "booleanEquals",
209206
"argv": [
210-
true,
211207
{
212208
"fn": "getAttr",
213209
"argv": [
@@ -216,11 +212,11 @@
216212
},
217213
"supportsFIPS"
218214
]
219-
}
215+
},
216+
true
220217
]
221218
}
222219
],
223-
"type": "tree",
224220
"rules": [
225221
{
226222
"conditions": [],
@@ -231,14 +227,16 @@
231227
},
232228
"type": "endpoint"
233229
}
234-
]
230+
],
231+
"type": "tree"
235232
},
236233
{
237234
"conditions": [],
238235
"error": "FIPS is enabled but this partition does not support FIPS",
239236
"type": "error"
240237
}
241-
]
238+
],
239+
"type": "tree"
242240
},
243241
{
244242
"conditions": [
@@ -252,7 +250,6 @@
252250
]
253251
}
254252
],
255-
"type": "tree",
256253
"rules": [
257254
{
258255
"conditions": [
@@ -272,7 +269,6 @@
272269
]
273270
}
274271
],
275-
"type": "tree",
276272
"rules": [
277273
{
278274
"conditions": [],
@@ -283,14 +279,16 @@
283279
},
284280
"type": "endpoint"
285281
}
286-
]
282+
],
283+
"type": "tree"
287284
},
288285
{
289286
"conditions": [],
290287
"error": "DualStack is enabled but this partition does not support DualStack",
291288
"type": "error"
292289
}
293-
]
290+
],
291+
"type": "tree"
294292
},
295293
{
296294
"conditions": [],
@@ -301,9 +299,11 @@
301299
},
302300
"type": "endpoint"
303301
}
304-
]
302+
],
303+
"type": "tree"
305304
}
306-
]
305+
],
306+
"type": "tree"
307307
},
308308
{
309309
"conditions": [],

0 commit comments

Comments
 (0)