Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.50.27 #5183

Merged
merged 1 commit into from Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
Release v1.50.27 (2024-02-27)
===

### Service Client Updates
* `service/amplifyuibuilder`: Updates service API and documentation

Release v1.50.26 (2024-02-26)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.50.26"
const SDKVersion = "1.50.27"
141 changes: 127 additions & 14 deletions models/apis/amplifyuibuilder/2021-08-11/api-2.json
Expand Up @@ -281,6 +281,23 @@
{"shape":"InvalidParameterException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"GET",
"requestUri":"/tags/{resourceArn}",
"responseCode":200
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResponse"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InternalServerException"},
{"shape":"InvalidParameterException"},
{"shape":"ThrottlingException"},
{"shape":"ResourceNotFoundException"}
]
},
"ListThemes":{
"name":"ListThemes",
"http":{
Expand All @@ -306,7 +323,8 @@
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidParameterException"}
]
],
"idempotent":true
},
"RefreshToken":{
"name":"RefreshToken",
Expand Down Expand Up @@ -336,6 +354,42 @@
{"shape":"ThrottlingException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/tags/{resourceArn}",
"responseCode":200
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResponse"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InternalServerException"},
{"shape":"InvalidParameterException"},
{"shape":"ThrottlingException"},
{"shape":"ResourceNotFoundException"}
],
"idempotent":true
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"DELETE",
"requestUri":"/tags/{resourceArn}",
"responseCode":200
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResponse"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InternalServerException"},
{"shape":"InvalidParameterException"},
{"shape":"ThrottlingException"},
{"shape":"ResourceNotFoundException"}
],
"idempotent":true
},
"UpdateComponent":{
"name":"UpdateComponent",
"http":{
Expand Down Expand Up @@ -1791,11 +1845,6 @@
"nextToken":{"shape":"String"}
}
},
"ListComponentsLimit":{
"type":"integer",
"max":100,
"min":1
},
"ListComponentsRequest":{
"type":"structure",
"required":[
Expand All @@ -1819,7 +1868,7 @@
"locationName":"nextToken"
},
"maxResults":{
"shape":"ListComponentsLimit",
"shape":"ListEntityLimit",
"location":"querystring",
"locationName":"maxResults"
}
Expand All @@ -1833,8 +1882,9 @@
"nextToken":{"shape":"String"}
}
},
"ListFormsLimit":{
"ListEntityLimit":{
"type":"integer",
"box":true,
"max":100,
"min":1
},
Expand All @@ -1861,7 +1911,7 @@
"locationName":"nextToken"
},
"maxResults":{
"shape":"ListFormsLimit",
"shape":"ListEntityLimit",
"location":"querystring",
"locationName":"maxResults"
}
Expand All @@ -1875,10 +1925,23 @@
"nextToken":{"shape":"String"}
}
},
"ListThemesLimit":{
"type":"integer",
"max":100,
"min":1
"ListTagsForResourceRequest":{
"type":"structure",
"required":["resourceArn"],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
}
}
},
"ListTagsForResourceResponse":{
"type":"structure",
"required":["tags"],
"members":{
"tags":{"shape":"Tags"}
}
},
"ListThemesRequest":{
"type":"structure",
Expand All @@ -1903,7 +1966,7 @@
"locationName":"nextToken"
},
"maxResults":{
"shape":"ListThemesLimit",
"shape":"ListEntityLimit",
"location":"querystring",
"locationName":"maxResults"
}
Expand Down Expand Up @@ -2194,6 +2257,32 @@
"min":1,
"pattern":"(?!aws:)[a-zA-Z+-=._:/]+"
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"min":0
},
"TagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tags"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
},
"tags":{"shape":"Tags"}
}
},
"TagResourceResponse":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
Expand Down Expand Up @@ -2298,6 +2387,30 @@
},
"exception":true
},
"UntagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tagKeys"
],
"members":{
"resourceArn":{
"shape":"String",
"location":"uri",
"locationName":"resourceArn"
},
"tagKeys":{
"shape":"TagKeyList",
"location":"querystring",
"locationName":"tagKeys"
}
}
},
"UntagResourceResponse":{
"type":"structure",
"members":{
}
},
"UpdateComponentData":{
"type":"structure",
"members":{
Expand Down
55 changes: 45 additions & 10 deletions models/apis/amplifyuibuilder/2021-08-11/docs-2.json
Expand Up @@ -20,10 +20,13 @@
"ListCodegenJobs": "<p>Retrieves a list of code generation jobs for a specified Amplify app and backend environment.</p>",
"ListComponents": "<p>Retrieves a list of components for a specified Amplify app and backend environment.</p>",
"ListForms": "<p>Retrieves a list of forms for a specified Amplify app and backend environment.</p>",
"ListTagsForResource": "<p>Returns a list of tags for a specified Amazon Resource Name (ARN).</p>",
"ListThemes": "<p>Retrieves a list of themes for a specified Amplify app and backend environment.</p>",
"PutMetadataFlag": "<p>Stores the metadata information about a feature on a form.</p>",
"RefreshToken": "<note> <p>This is for internal use.</p> </note> <p>Amplify uses this action to refresh a previously issued access token that might have expired.</p>",
"StartCodegenJob": "<p>Starts a code generation job for a specified Amplify app and backend environment.</p>",
"TagResource": "<p>Tags the resource with a tag key and value.</p>",
"UntagResource": "<p>Untags a resource with a specified Amazon Resource Name (ARN).</p>",
"UpdateComponent": "<p>Updates an existing component.</p>",
"UpdateForm": "<p>Updates an existing form.</p>",
"UpdateTheme": "<p>Updates an existing theme.</p>"
Expand Down Expand Up @@ -877,12 +880,6 @@
"refs": {
}
},
"ListComponentsLimit": {
"base": null,
"refs": {
"ListComponentsRequest$maxResults": "<p>The maximum number of components to retrieve.</p>"
}
},
"ListComponentsRequest": {
"base": null,
"refs": {
Expand All @@ -893,10 +890,12 @@
"refs": {
}
},
"ListFormsLimit": {
"ListEntityLimit": {
"base": null,
"refs": {
"ListFormsRequest$maxResults": "<p>The maximum number of forms to retrieve.</p>"
"ListComponentsRequest$maxResults": "<p>The maximum number of components to retrieve.</p>",
"ListFormsRequest$maxResults": "<p>The maximum number of forms to retrieve.</p>",
"ListThemesRequest$maxResults": "<p>The maximum number of theme results to return in the response.</p>"
}
},
"ListFormsRequest": {
Expand All @@ -909,10 +908,14 @@
"refs": {
}
},
"ListThemesLimit": {
"ListTagsForResourceRequest": {
"base": null,
"refs": {
}
},
"ListTagsForResourceResponse": {
"base": null,
"refs": {
"ListThemesRequest$maxResults": "<p>The maximum number of theme results to return in the response.</p>"
}
},
"ListThemesRequest": {
Expand Down Expand Up @@ -1259,6 +1262,7 @@
"ListFormsRequest$environmentName": "<p>The name of the backend environment that is a part of the Amplify app.</p>",
"ListFormsRequest$nextToken": "<p>The token to request the next page of results.</p>",
"ListFormsResponse$nextToken": "<p>The pagination token that's included if more results are available.</p>",
"ListTagsForResourceRequest$resourceArn": "<p>The Amazon Resource Name (ARN) to use to list tags.</p>",
"ListThemesRequest$appId": "<p>The unique ID for the Amplify app.</p>",
"ListThemesRequest$environmentName": "<p>The name of the backend environment that is a part of the Amplify app.</p>",
"ListThemesRequest$nextToken": "<p>The token to request the next page of results.</p>",
Expand Down Expand Up @@ -1286,6 +1290,7 @@
"StartCodegenJobRequest$environmentName": "<p>The name of the backend environment that is a part of the Amplify app.</p>",
"StartCodegenJobRequest$clientToken": "<p>The idempotency token used to ensure that the code generation job request completes only once.</p>",
"StrValues$member": null,
"TagResourceRequest$resourceArn": "<p>The Amazon Resource Name (ARN) to use to tag a resource.</p>",
"Theme$appId": "<p>The unique ID for the Amplify app associated with the theme.</p>",
"Theme$environmentName": "<p>The name of the backend environment that is a part of the Amplify app.</p>",
"ThemeSummary$appId": "<p>The unique ID for the app associated with the theme summary.</p>",
Expand All @@ -1294,6 +1299,7 @@
"ThemeValues$key": "<p>The name of the property.</p>",
"ThrottlingException$message": null,
"UnauthorizedException$message": null,
"UntagResourceRequest$resourceArn": "<p>The Amazon Resource Name (ARN) to use to untag a resource.</p>",
"UpdateComponentData$sourceId": "<p>The unique ID of the component in its original source system, such as Figma.</p>",
"UpdateComponentData$schemaVersion": "<p>The schema version of the component when it was imported.</p>",
"UpdateComponentRequest$appId": "<p>The unique ID for the Amplify app.</p>",
Expand Down Expand Up @@ -1324,9 +1330,26 @@
"TagKey": {
"base": null,
"refs": {
"TagKeyList$member": null,
"Tags$key": null
}
},
"TagKeyList": {
"base": null,
"refs": {
"UntagResourceRequest$tagKeys": "<p>The tag keys to use to untag a resource.</p>"
}
},
"TagResourceRequest": {
"base": null,
"refs": {
}
},
"TagResourceResponse": {
"base": null,
"refs": {
}
},
"TagValue": {
"base": null,
"refs": {
Expand All @@ -1342,7 +1365,9 @@
"CreateFormData$tags": "<p>One or more key-value pairs to use when tagging the form data.</p>",
"CreateThemeData$tags": "<p>One or more key-value pairs to use when tagging the theme data.</p>",
"Form$tags": "<p>One or more key-value pairs to use when tagging the form.</p>",
"ListTagsForResourceResponse$tags": "<p>A list of tag key value pairs for a specified Amazon Resource Name (ARN).</p>",
"StartCodegenJobData$tags": "<p>One or more key-value pairs to use when tagging the code generation job data.</p>",
"TagResourceRequest$tags": "<p>A list of tag key value pairs for a specified Amazon Resource Name (ARN).</p>",
"Theme$tags": "<p>One or more key-value pairs to use when tagging the theme.</p>"
}
},
Expand Down Expand Up @@ -1423,6 +1448,16 @@
"refs": {
}
},
"UntagResourceRequest": {
"base": null,
"refs": {
}
},
"UntagResourceResponse": {
"base": null,
"refs": {
}
},
"UpdateComponentData": {
"base": "<p>Updates and saves all of the information about a component, based on component ID.</p>",
"refs": {
Expand Down