Skip to content

Commit

Permalink
Update models for release
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-php-automation committed May 22, 2024
1 parent 806ad75 commit 5ac64d3
Show file tree
Hide file tree
Showing 25 changed files with 442 additions and 39 deletions.
27 changes: 27 additions & 0 deletions .changes/3.308.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "api-change",
"category": "KMS",
"description": "This release includes feature to import customer's asymmetric (RSA, ECC and SM2) and HMAC keys into KMS in China."
},
{
"type": "api-change",
"category": "CloudFormation",
"description": "Added DeletionMode FORCE_DELETE_STACK for deleting a stack that is stuck in DELETE_FAILED state due to resource deletion failure."
},
{
"type": "api-change",
"category": "WAFV2",
"description": "You can now use Security Lake to collect web ACL traffic data."
},
{
"type": "api-change",
"category": "Chatbot",
"description": "This change adds support for tagging Chatbot configurations."
},
{
"type": "api-change",
"category": "OpenSearchService",
"description": "This release adds support for enabling or disabling a data source configured as part of Zero-ETL integration with Amazon S3, by setting its status."
}
]
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## next release

* `Aws\KMS` - This release includes feature to import customer's asymmetric (RSA, ECC and SM2) and HMAC keys into KMS in China.
* `Aws\CloudFormation` - Added DeletionMode FORCE_DELETE_STACK for deleting a stack that is stuck in DELETE_FAILED state due to resource deletion failure.
* `Aws\WAFV2` - You can now use Security Lake to collect web ACL traffic data.
* `Aws\Chatbot` - This change adds support for tagging Chatbot configurations.
* `Aws\OpenSearchService` - This release adds support for enabling or disabling a data source configured as part of Zero-ETL integration with Amazon S3, by setting its status.

## 3.308.0 - 2024-05-21

* `Aws\StorageGateway` - Added new SMBSecurityStrategy enum named MandatoryEncryptionNoAes128, new mode enforces encryption and disables AES 128-bit algorithums.
Expand Down
6 changes: 6 additions & 0 deletions src/Chatbot/ChatbotClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@
* @method \GuzzleHttp\Promise\Promise listMicrosoftTeamsConfiguredTeamsAsync(array $args = [])
* @method \Aws\Result listMicrosoftTeamsUserIdentities(array $args = [])
* @method \GuzzleHttp\Promise\Promise listMicrosoftTeamsUserIdentitiesAsync(array $args = [])
* @method \Aws\Result listTagsForResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
* @method \Aws\Result tagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
* @method \Aws\Result untagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
* @method \Aws\Result updateAccountPreferences(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateAccountPreferencesAsync(array $args = [])
* @method \Aws\Result updateChimeWebhookConfiguration(array $args = [])
Expand Down
174 changes: 168 additions & 6 deletions src/data/chatbot/2017-10-11/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"endpointPrefix":"chatbot",
"jsonVersion":"1.1",
"protocol":"rest-json",
"protocols":["rest-json"],
"serviceFullName":"AWS Chatbot",
"serviceId":"chatbot",
"signatureVersion":"v4",
Expand Down Expand Up @@ -302,6 +303,52 @@
{"shape":"InvalidParameterException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/list-tags-for-resource",
"responseCode":200
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"InternalServiceError"},
{"shape":"ServiceUnavailableException"},
{"shape":"ResourceNotFoundException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/tag-resource",
"responseCode":200
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"InternalServiceError"},
{"shape":"ServiceUnavailableException"},
{"shape":"ResourceNotFoundException"},
{"shape":"TooManyTagsException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/untag-resource",
"responseCode":200
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"InternalServiceError"},
{"shape":"ServiceUnavailableException"},
{"shape":"ResourceNotFoundException"}
]
},
"UpdateAccountPreferences":{
"name":"UpdateAccountPreferences",
"http":{
Expand Down Expand Up @@ -374,6 +421,12 @@
"TrainingDataCollectionEnabled":{"shape":"BooleanAccountPreference"}
}
},
"AmazonResourceName":{
"type":"string",
"max":1011,
"min":1,
"pattern":"^arn:aws:(wheatley|chatbot):[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$"
},
"Arn":{
"type":"string",
"max":1224,
Expand Down Expand Up @@ -407,7 +460,8 @@
"IamRoleArn":{"shape":"Arn"},
"SnsTopicArns":{"shape":"SnsTopicArnList"},
"ConfigurationName":{"shape":"ConfigurationName"},
"LoggingLevel":{"shape":"CustomerCwLogLevel"}
"LoggingLevel":{"shape":"CustomerCwLogLevel"},
"Tags":{"shape":"Tags"}
}
},
"ChimeWebhookConfigurationList":{
Expand Down Expand Up @@ -480,7 +534,8 @@
"SnsTopicArns":{"shape":"SnsTopicArnList"},
"IamRoleArn":{"shape":"Arn"},
"ConfigurationName":{"shape":"ConfigurationName"},
"LoggingLevel":{"shape":"CustomerCwLogLevel"}
"LoggingLevel":{"shape":"CustomerCwLogLevel"},
"Tags":{"shape":"Tags"}
}
},
"CreateChimeWebhookConfigurationResult":{
Expand Down Expand Up @@ -514,7 +569,8 @@
"ConfigurationName":{"shape":"ConfigurationName"},
"LoggingLevel":{"shape":"CustomerCwLogLevel"},
"GuardrailPolicyArns":{"shape":"GuardrailPolicyArnList"},
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"}
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"},
"Tags":{"shape":"Tags"}
}
},
"CreateSlackChannelConfigurationResult":{
Expand Down Expand Up @@ -551,7 +607,8 @@
"ConfigurationName":{"shape":"ConfigurationName"},
"LoggingLevel":{"shape":"CustomerCwLogLevel"},
"GuardrailPolicyArns":{"shape":"GuardrailPolicyArnList"},
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"}
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"},
"Tags":{"shape":"Tags"}
}
},
"CreateTeamsChannelConfigurationResult":{
Expand Down Expand Up @@ -875,6 +932,13 @@
"type":"list",
"member":{"shape":"GuardrailPolicyArn"}
},
"InternalServiceError":{
"type":"structure",
"members":{
},
"error":{"httpStatusCode":500},
"exception":true
},
"InvalidParameterException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -941,6 +1005,19 @@
"NextToken":{"shape":"PaginationToken"}
}
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["ResourceARN"],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"members":{
"Tags":{"shape":"TagList"}
}
},
"ListTeamsChannelConfigurationsException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -991,6 +1068,13 @@
"error":{"httpStatusCode":404},
"exception":true
},
"ServiceUnavailableException":{
"type":"structure",
"members":{
},
"error":{"httpStatusCode":429},
"exception":true
},
"SlackChannelConfiguration":{
"type":"structure",
"required":[
Expand All @@ -1016,7 +1100,8 @@
"ConfigurationName":{"shape":"ConfigurationName"},
"LoggingLevel":{"shape":"CustomerCwLogLevel"},
"GuardrailPolicyArns":{"shape":"GuardrailPolicyArnList"},
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"}
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"},
"Tags":{"shape":"Tags"}
}
},
"SlackChannelConfigurationList":{
Expand Down Expand Up @@ -1091,6 +1176,59 @@
"member":{"shape":"Arn"}
},
"String":{"type":"string"},
"Tag":{
"type":"structure",
"required":[
"TagKey",
"TagValue"
],
"members":{
"TagKey":{"shape":"TagKey"},
"TagValue":{"shape":"TagValue"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"min":0
},
"TagList":{
"type":"list",
"member":{"shape":"Tag"},
"max":200,
"min":0
},
"TagResourceRequest":{
"type":"structure",
"required":[
"ResourceARN",
"Tags"
],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"},
"Tags":{"shape":"TagList"}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":1
},
"Tags":{
"type":"list",
"member":{"shape":"Tag"}
},
"TeamChannelConfigurationsList":{
"type":"list",
"member":{"shape":"TeamsChannelConfiguration"}
Expand Down Expand Up @@ -1126,7 +1264,8 @@
"ConfigurationName":{"shape":"ConfigurationName"},
"LoggingLevel":{"shape":"CustomerCwLogLevel"},
"GuardrailPolicyArns":{"shape":"GuardrailPolicyArnList"},
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"}
"UserAuthorizationRequired":{"shape":"BooleanAccountPreference"},
"Tags":{"shape":"Tags"}
}
},
"TeamsChannelId":{
Expand Down Expand Up @@ -1162,12 +1301,35 @@
"TeamsTenantId":{"shape":"UUID"}
}
},
"TooManyTagsException":{
"type":"structure",
"members":{
},
"error":{"httpStatusCode":400},
"exception":true
},
"UUID":{
"type":"string",
"max":36,
"min":36,
"pattern":"^[0-9A-Fa-f]{8}(?:-[0-9A-Fa-f]{4}){3}-[0-9A-Fa-f]{12}$"
},
"UntagResourceRequest":{
"type":"structure",
"required":[
"ResourceARN",
"TagKeys"
],
"members":{
"ResourceARN":{"shape":"AmazonResourceName"},
"TagKeys":{"shape":"TagKeyList"}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"UpdateAccountPreferencesException":{
"type":"structure",
"members":{
Expand Down
2 changes: 1 addition & 1 deletion src/data/chatbot/2017-10-11/api-2.json.php

Large diffs are not rendered by default.

Loading

0 comments on commit 5ac64d3

Please sign in to comment.