Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS SDK for Ruby authored and Nobody committed Nov 8, 2023
1 parent e1bc3fd commit eb6ac8c
Show file tree
Hide file tree
Showing 99 changed files with 2,717 additions and 679 deletions.
1 change: 1 addition & 0 deletions apis/connect/2017-08-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11148,6 +11148,7 @@
},
"SearchUsersRequest":{
"type":"structure",
"required":["InstanceId"],
"members":{
"InstanceId":{"shape":"InstanceId"},
"NextToken":{"shape":"NextToken2500"},
Expand Down
11 changes: 0 additions & 11 deletions apis/connect/2017-08-08/endpoint-tests-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -451,17 +451,6 @@
"expect": {
"error": "Invalid Configuration: Missing Region"
}
},
{
"documentation": "Partition doesn't support DualStack",
"expect": {
"error": "DualStack is enabled but this partition does not support DualStack"
},
"params": {
"Region": "us-isob-east-1",
"UseFIPS": false,
"UseDualStack": true
}
}
],
"version": "1.0"
Expand Down
14 changes: 14 additions & 0 deletions apis/connectcases/2022-10-03/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -945,6 +945,7 @@
"location":"uri",
"locationName":"domainId"
},
"performedBy":{"shape":"UserUnion"},
"type":{"shape":"RelatedItemType"}
}
},
Expand Down Expand Up @@ -1986,6 +1987,7 @@
"members":{
"associationTime":{"shape":"AssociationTime"},
"content":{"shape":"RelatedItemContent"},
"performedBy":{"shape":"UserUnion"},
"relatedItemId":{"shape":"RelatedItemId"},
"tags":{"shape":"Tags"},
"type":{"shape":"RelatedItemType"}
Expand Down Expand Up @@ -2260,6 +2262,18 @@
"members":{
}
},
"UserArn":{
"type":"string",
"max":500,
"min":1
},
"UserUnion":{
"type":"structure",
"members":{
"userArn":{"shape":"UserArn"}
},
"union":true
},
"ValidationException":{
"type":"structure",
"required":["message"],
Expand Down
15 changes: 14 additions & 1 deletion apis/connectcases/2022-10-03/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"CreateDomain": "<p>Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.</p> <important> <p>This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateIntegrationAssociation.html\">CreateIntegrationAssociation</a> API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/required-permissions-iam-cases.html#onboard-cases-iam\">Onboard to Cases</a>.</p> <pre><code> &lt;/important&gt; </code></pre>",
"CreateField": "<p>Creates a field in the Cases domain. This field is used to define the case object model (that is, defines what data can be captured on cases) in a Cases domain. </p>",
"CreateLayout": "<p>Creates a layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface:</p> <ul> <li> <p>Fields to display to the users</p> </li> <li> <p>Field ordering</p> </li> </ul> <note> <p>Title and Status fields cannot be part of layouts since they are not configurable.</p> </note>",
"CreateRelatedItem": "<p>Creates a related item (comments, tasks, and contacts) and associates it with a case.</p> <note> <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> </note>",
"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>",
"GetCase": "<p>Returns information about a specific case if it exists. </p>",
Expand Down Expand Up @@ -1229,6 +1229,19 @@
"refs": {
}
},
"UserArn": {
"base": null,
"refs": {
"UserUnion$userArn": "<p>Represents the Amazon Connect ARN of the user.</p>"
}
},
"UserUnion": {
"base": "<p>Represents the identity of the person who performed the action.</p>",
"refs": {
"CreateRelatedItemRequest$performedBy": "<p>Represents the creator of the related item.</p>",
"SearchRelatedItemsResponseItem$performedBy": "<p>Represents the creator of the related item.</p>"
}
},
"ValidationException": {
"base": "<p>The request isn't valid. Check the syntax and try again.</p>",
"refs": {
Expand Down
4 changes: 2 additions & 2 deletions apis/datasync/2018-11-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2404,8 +2404,8 @@
"ObjectStorageAccessKey":{
"type":"string",
"max":200,
"min":1,
"pattern":"^.+$"
"min":0,
"pattern":"^.*$"
},
"ObjectStorageBucketName":{
"type":"string",
Expand Down
Loading

0 comments on commit eb6ac8c

Please sign in to comment.