Skip to content

Commit

Permalink
Release v1.51.31 (2024-04-29) (#5245)
Browse files Browse the repository at this point in the history
Release v1.51.31 (2024-04-29)
===

### Service Client Updates
* `service/amplify`: Updates service API and documentation
* `service/connectcases`: Updates service API and documentation
* `service/inspector2`: Updates service API and documentation
* `service/timestream-query`: Updates service API and documentation
* `service/transcribe`: Updates service API and documentation
* `service/trustedadvisor`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Apr 29, 2024
1 parent e267cf1 commit d5a9528
Show file tree
Hide file tree
Showing 25 changed files with 4,252 additions and 1,781 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
Release v1.51.31 (2024-04-29)
===

### Service Client Updates
* `service/amplify`: Updates service API and documentation
* `service/connectcases`: Updates service API and documentation
* `service/inspector2`: Updates service API and documentation
* `service/timestream-query`: Updates service API and documentation
* `service/transcribe`: Updates service API and documentation
* `service/trustedadvisor`: Updates service API and documentation

Release v1.51.30 (2024-04-26)
===

Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.51.30"
const SDKVersion = "1.51.31"
8 changes: 7 additions & 1 deletion models/apis/amplify/2017-07-25/api-2.json
Expand Up @@ -5,6 +5,7 @@
"endpointPrefix":"amplify",
"jsonVersion":"1.1",
"protocol":"rest-json",
"protocols":["rest-json"],
"serviceAbbreviation":"Amplify",
"serviceFullName":"AWS Amplify",
"serviceId":"Amplify",
Expand Down Expand Up @@ -1706,7 +1707,7 @@
"locationName":"nextToken"
},
"maxResults":{
"shape":"MaxResults",
"shape":"MaxResultsForListApps",
"location":"querystring",
"locationName":"maxResults"
}
Expand Down Expand Up @@ -1948,6 +1949,11 @@
"pattern":"(?s).*"
},
"MaxResults":{
"type":"integer",
"max":50,
"min":0
},
"MaxResultsForListApps":{
"type":"integer",
"max":100,
"min":0
Expand Down
7 changes: 6 additions & 1 deletion models/apis/amplify/2017-07-25/docs-2.json
Expand Up @@ -1054,7 +1054,6 @@
"MaxResults": {
"base": null,
"refs": {
"ListAppsRequest$maxResults": "<p>The maximum number of records to list in a single response. </p>",
"ListArtifactsRequest$maxResults": "<p>The maximum number of records to list in a single response. </p>",
"ListBackendEnvironmentsRequest$maxResults": "<p>The maximum number of records to list in a single response. </p>",
"ListBranchesRequest$maxResults": "<p> The maximum number of records to list in a single response. </p>",
Expand All @@ -1063,6 +1062,12 @@
"ListWebhooksRequest$maxResults": "<p>The maximum number of records to list in a single response. </p>"
}
},
"MaxResultsForListApps": {
"base": null,
"refs": {
"ListAppsRequest$maxResults": "<p>The maximum number of records to list in a single response. </p>"
}
},
"Name": {
"base": null,
"refs": {
Expand Down
144 changes: 144 additions & 0 deletions models/apis/connectcases/2022-10-03/api-2.json
Expand Up @@ -184,6 +184,64 @@
],
"idempotent":true
},
"DeleteField":{
"name":"DeleteField",
"http":{
"method":"DELETE",
"requestUri":"/domains/{domainId}/fields/{fieldId}",
"responseCode":200
},
"input":{"shape":"DeleteFieldRequest"},
"output":{"shape":"DeleteFieldResponse"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"},
{"shape":"ServiceQuotaExceededException"}
],
"idempotent":true
},
"DeleteLayout":{
"name":"DeleteLayout",
"http":{
"method":"DELETE",
"requestUri":"/domains/{domainId}/layouts/{layoutId}",
"responseCode":200
},
"input":{"shape":"DeleteLayoutRequest"},
"output":{"shape":"DeleteLayoutResponse"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"}
],
"idempotent":true
},
"DeleteTemplate":{
"name":"DeleteTemplate",
"http":{
"method":"DELETE",
"requestUri":"/domains/{domainId}/templates/{templateId}",
"responseCode":200
},
"input":{"shape":"DeleteTemplateRequest"},
"output":{"shape":"DeleteTemplateResponse"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"}
],
"idempotent":true
},
"GetCase":{
"name":"GetCase",
"http":{
Expand Down Expand Up @@ -1107,6 +1165,79 @@
"members":{
}
},
"DeleteFieldRequest":{
"type":"structure",
"required":[
"domainId",
"fieldId"
],
"members":{
"domainId":{
"shape":"DomainId",
"location":"uri",
"locationName":"domainId"
},
"fieldId":{
"shape":"FieldId",
"location":"uri",
"locationName":"fieldId"
}
}
},
"DeleteFieldResponse":{
"type":"structure",
"members":{
}
},
"DeleteLayoutRequest":{
"type":"structure",
"required":[
"domainId",
"layoutId"
],
"members":{
"domainId":{
"shape":"DomainId",
"location":"uri",
"locationName":"domainId"
},
"layoutId":{
"shape":"LayoutId",
"location":"uri",
"locationName":"layoutId"
}
}
},
"DeleteLayoutResponse":{
"type":"structure",
"members":{
}
},
"DeleteTemplateRequest":{
"type":"structure",
"required":[
"domainId",
"templateId"
],
"members":{
"domainId":{
"shape":"DomainId",
"location":"uri",
"locationName":"domainId"
},
"templateId":{
"shape":"TemplateId",
"location":"uri",
"locationName":"templateId"
}
}
},
"DeleteTemplateResponse":{
"type":"structure",
"members":{
}
},
"Deleted":{"type":"boolean"},
"DomainArn":{
"type":"string",
"max":500,
Expand Down Expand Up @@ -1500,9 +1631,12 @@
"type"
],
"members":{
"createdTime":{"shape":"CreatedTime"},
"deleted":{"shape":"Deleted"},
"description":{"shape":"FieldDescription"},
"fieldArn":{"shape":"FieldArn"},
"fieldId":{"shape":"FieldId"},
"lastModifiedTime":{"shape":"LastModifiedTime"},
"name":{"shape":"FieldName"},
"namespace":{"shape":"FieldNamespace"},
"tags":{"shape":"Tags"},
Expand Down Expand Up @@ -1538,6 +1672,9 @@
],
"members":{
"content":{"shape":"LayoutContent"},
"createdTime":{"shape":"CreatedTime"},
"deleted":{"shape":"Deleted"},
"lastModifiedTime":{"shape":"LastModifiedTime"},
"layoutArn":{"shape":"LayoutArn"},
"layoutId":{"shape":"LayoutId"},
"name":{"shape":"LayoutName"},
Expand Down Expand Up @@ -1572,7 +1709,10 @@
"templateId"
],
"members":{
"createdTime":{"shape":"CreatedTime"},
"deleted":{"shape":"Deleted"},
"description":{"shape":"TemplateDescription"},
"lastModifiedTime":{"shape":"LastModifiedTime"},
"layoutConfiguration":{"shape":"LayoutConfiguration"},
"name":{"shape":"TemplateName"},
"requiredFields":{"shape":"RequiredFieldList"},
Expand Down Expand Up @@ -1607,6 +1747,10 @@
"fault":true,
"retryable":{"throttling":false}
},
"LastModifiedTime":{
"type":"timestamp",
"timestampFormat":"iso8601"
},
"LayoutArn":{
"type":"string",
"max":500,
Expand Down
62 changes: 60 additions & 2 deletions models/apis/connectcases/2022-10-03/docs-2.json
Expand Up @@ -11,6 +11,9 @@
"CreateRelatedItem": "<p>Creates a related item (comments, tasks, and contacts) and associates it with a case.</p> <note> <ul> <li> <p>A Related Item is a resource that is associated with a case. It may or may not have an external identifier linking it to an external resource (for example, a <code>contactArn</code>). All Related Items have their own internal identifier, the <code>relatedItemArn</code>. Examples of related items include <code>comments</code> and <code>contacts</code>.</p> </li> <li> <p>If you provide a value for <code>performedBy.userArn</code> you must also have <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html\">DescribeUser</a> permission on the ARN of the user that you provide.</p> </li> </ul> <pre><code> &lt;/note&gt; </code></pre>",
"CreateTemplate": "<p>Creates a template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs. Additionally, multiple fields with same IDs are not allowed within the same Template. A template can be either Active or Inactive, as indicated by its status. Inactive templates cannot be used to create cases.</p>",
"DeleteDomain": "<p>Deletes a Cases domain.</p> <pre><code> &lt;note&gt; &lt;p&gt;After deleting your domain you must disassociate the deleted domain from your Amazon Connect instance with another API call before being able to use Cases again with this Amazon Connect instance. See &lt;a href=&quot;https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteIntegrationAssociation.html&quot;&gt;DeleteIntegrationAssociation&lt;/a&gt;.&lt;/p&gt; &lt;/note&gt; </code></pre>",
"DeleteField": "<p>Deletes a field from a cases template. You can delete up to 100 fields per domain.</p> <p>After a field is deleted:</p> <ul> <li> <p>You can still retrieve the field by calling <code>BatchGetField</code>.</p> </li> <li> <p>You cannot update a deleted field by calling <code>UpdateField</code>; it throws a <code>ValidationException</code>.</p> </li> <li> <p>Deleted fields are not included in the <code>ListFields</code> response.</p> </li> <li> <p>Calling <code>CreateCase</code> with a deleted field throws a <code>ValidationException</code> denoting which field IDs in the request have been deleted.</p> </li> <li> <p>Calling <code>GetCase</code> with a deleted field ID returns the deleted field's value if one exists.</p> </li> <li> <p>Calling <code>UpdateCase</code> with a deleted field ID throws a <code>ValidationException</code> if the case does not already contain a value for the deleted field. Otherwise it succeeds, allowing you to update or remove (using <code>emptyValue: {}</code>) the field's value from the case.</p> </li> <li> <p> <code>GetTemplate</code> does not return field IDs for deleted fields.</p> </li> <li> <p> <code>GetLayout</code> does not return field IDs for deleted fields.</p> </li> <li> <p>Calling <code>SearchCases</code> with the deleted field ID as a filter returns any cases that have a value for the deleted field that matches the filter criteria.</p> </li> <li> <p>Calling <code>SearchCases</code> with a <code>searchTerm</code> value that matches a deleted field's value on a case returns the case in the response.</p> </li> <li> <p>Calling <code>BatchPutFieldOptions</code> with a deleted field ID throw a <code>ValidationException</code>.</p> </li> <li> <p>Calling <code>GetCaseEventConfiguration</code> does not return field IDs for deleted fields.</p> </li> </ul>",
"DeleteLayout": "<p>Deletes a layout from a cases template. You can delete up to 100 layouts per domain.</p> <pre><code> &lt;p&gt;After a layout is deleted:&lt;/p&gt; &lt;ul&gt; &lt;li&gt; &lt;p&gt;You can still retrieve the layout by calling &lt;code&gt;GetLayout&lt;/code&gt;.&lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt;You cannot update a deleted layout by calling &lt;code&gt;UpdateLayout&lt;/code&gt;; it throws a &lt;code&gt;ValidationException&lt;/code&gt;.&lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt;Deleted layouts are not included in the &lt;code&gt;ListLayouts&lt;/code&gt; response.&lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre>",
"DeleteTemplate": "<p>Deletes a cases template. You can delete up to 100 templates per domain.</p> <pre><code> &lt;p&gt;After a cases template is deleted:&lt;/p&gt; &lt;ul&gt; &lt;li&gt; &lt;p&gt;You can still retrieve the template by calling &lt;code&gt;GetTemplate&lt;/code&gt;.&lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt;You cannot update the template. &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt;You cannot create a case by using the deleted template.&lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt;Deleted templates are not included in the &lt;code&gt;ListTemplates&lt;/code&gt; response.&lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; </code></pre>",
"GetCase": "<p>Returns information about a specific case if it exists. </p>",
"GetCaseAuditEvents": "<p>Returns the audit history about a specific case if it exists.</p>",
"GetCaseEventConfiguration": "<p>Returns the case event publishing configuration.</p>",
Expand Down Expand Up @@ -85,7 +88,7 @@
}
},
"AuditEventFieldValueUnion": {
"base": "<p>Object to store union of Field values.</p> <important> <p>This data type is a UNION, so only one of the following members can be specified when used or returned.</p> </important>",
"base": "<p>Object to store union of Field values.</p>",
"refs": {
"AuditEventField$newValue": "<p>Union of potential field value types.</p>",
"AuditEventField$oldValue": "<p>Union of potential field value types.</p>"
Expand Down Expand Up @@ -390,7 +393,10 @@
"CreatedTime": {
"base": null,
"refs": {
"GetDomainResponse$createdTime": "<p>The timestamp when the Cases domain was created.</p>"
"GetDomainResponse$createdTime": "<p>The timestamp when the Cases domain was created.</p>",
"GetFieldResponse$createdTime": "<p>The timestamp for when the resource was created.</p>",
"GetLayoutResponse$createdTime": "<p>The timestamp for when the resource was created.</p>",
"GetTemplateResponse$createdTime": "<p>The timestamp for when the resource was created.</p>"
}
},
"DeleteDomainRequest": {
Expand All @@ -403,6 +409,44 @@
"refs": {
}
},
"DeleteFieldRequest": {
"base": null,
"refs": {
}
},
"DeleteFieldResponse": {
"base": null,
"refs": {
}
},
"DeleteLayoutRequest": {
"base": null,
"refs": {
}
},
"DeleteLayoutResponse": {
"base": null,
"refs": {
}
},
"DeleteTemplateRequest": {
"base": null,
"refs": {
}
},
"DeleteTemplateResponse": {
"base": null,
"refs": {
}
},
"Deleted": {
"base": null,
"refs": {
"GetFieldResponse$deleted": "<p>Indicates whether the resource has been deleted.</p>",
"GetLayoutResponse$deleted": "<p>Indicates whether the resource has been deleted.</p>",
"GetTemplateResponse$deleted": "<p>Indicates whether the resource has been deleted.</p>"
}
},
"DomainArn": {
"base": null,
"refs": {
Expand All @@ -423,6 +467,9 @@
"CreateRelatedItemRequest$domainId": "<p>The unique identifier of the Cases domain. </p>",
"CreateTemplateRequest$domainId": "<p>The unique identifier of the Cases domain. </p>",
"DeleteDomainRequest$domainId": "<p>The unique identifier of the Cases domain. </p>",
"DeleteFieldRequest$domainId": "<p>The unique identifier of the Cases domain. </p>",
"DeleteLayoutRequest$domainId": "<p>The unique identifier of the Cases domain. </p>",
"DeleteTemplateRequest$domainId": "<p>The unique identifier of the Cases domain. </p>",
"DomainSummary$domainId": "<p>The unique identifier of the domain.</p>",
"GetCaseAuditEventsRequest$domainId": "<p>The unique identifier of the Cases domain.</p>",
"GetCaseEventConfigurationRequest$domainId": "<p>The unique identifier of the Cases domain. </p>",
Expand Down Expand Up @@ -550,6 +597,7 @@
"refs": {
"BatchPutFieldOptionsRequest$fieldId": "<p>The unique identifier of a field.</p>",
"CreateFieldResponse$fieldId": "<p>The unique identifier of a field.</p>",
"DeleteFieldRequest$fieldId": "<p>The unique identifier of a field.</p>",
"FieldError$id": "<p>The field identifier that caused the error.</p>",
"FieldIdentifier$id": "<p>Unique identifier of a field.</p>",
"FieldItem$id": "<p>Unique identifier of a field.</p>",
Expand Down Expand Up @@ -773,6 +821,14 @@
"refs": {
}
},
"LastModifiedTime": {
"base": null,
"refs": {
"GetFieldResponse$lastModifiedTime": "<p>The timestamp for when the resource was created or last modified.</p>",
"GetLayoutResponse$lastModifiedTime": "<p>The timestamp for when the resource was created or last modified.</p>",
"GetTemplateResponse$lastModifiedTime": "<p>The timestamp for when the resource was created or last modified.</p>"
}
},
"LayoutArn": {
"base": null,
"refs": {
Expand Down Expand Up @@ -801,6 +857,7 @@
"base": null,
"refs": {
"CreateLayoutResponse$layoutId": "<p>The unique identifier of the layout.</p>",
"DeleteLayoutRequest$layoutId": "<p>The unique identifier of the layout.</p>",
"GetLayoutRequest$layoutId": "<p>The unique identifier of the layout.</p>",
"GetLayoutResponse$layoutId": "<p>The unique identifier of the layout.</p>",
"LayoutConfiguration$defaultLayout": "<p> Unique identifier of a layout. </p>",
Expand Down Expand Up @@ -1234,6 +1291,7 @@
"CaseSummary$templateId": "<p>A unique identifier of a template.</p>",
"CreateCaseRequest$templateId": "<p>A unique identifier of a template.</p>",
"CreateTemplateResponse$templateId": "<p>A unique identifier of a template.</p>",
"DeleteTemplateRequest$templateId": "<p>A unique identifier of a template.</p>",
"GetCaseResponse$templateId": "<p>A unique identifier of a template.</p>",
"GetTemplateRequest$templateId": "<p>A unique identifier of a template.</p>",
"GetTemplateResponse$templateId": "<p>A unique identifier of a template.</p>",
Expand Down

0 comments on commit d5a9528

Please sign in to comment.