Skip to content

Commit e854f26

Browse files
Updated API models and rebuilt service gems.
1 parent 46114c4 commit e854f26

File tree

48 files changed

+775
-215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+775
-215
lines changed

apis/iotwireless/2020-11-22/api-2.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5070,8 +5070,7 @@
50705070
"type":"structure",
50715071
"required":[
50725072
"Pci",
5073-
"Earfcn",
5074-
"EutranCid"
5073+
"Earfcn"
50755074
],
50765075
"members":{
50775076
"Pci":{"shape":"PCI"},

apis/iotwireless/2020-11-22/docs-2.json

Lines changed: 25 additions & 25 deletions
Large diffs are not rendered by default.

apis/pcs/2023-02-10/api-2.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@
260260
},
261261
"input":{"shape":"TagResourceRequest"},
262262
"errors":[
263+
{"shape":"ServiceQuotaExceededException"},
263264
{"shape":"ResourceNotFoundException"}
264265
],
265266
"idempotent":true
@@ -370,7 +371,7 @@
370371
},
371372
"ClusterIdentifier":{
372373
"type":"string",
373-
"pattern":"(pcs_[a-zA-Z0-9]+|[A-Za-z][A-Za-z0-9-]{1,40})"
374+
"pattern":"(pcs_[a-zA-Z0-9]+|[A-Za-z][A-Za-z0-9-]{3,40})"
374375
},
375376
"ClusterList":{
376377
"type":"list",
@@ -379,8 +380,8 @@
379380
"ClusterName":{
380381
"type":"string",
381382
"max":40,
382-
"min":1,
383-
"pattern":"(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+"
383+
"min":3,
384+
"pattern":"(?!pcs_)^[A-Za-z][A-Za-z0-9-]+"
384385
},
385386
"ClusterSlurmConfiguration":{
386387
"type":"structure",
@@ -486,7 +487,7 @@
486487
},
487488
"ComputeNodeGroupIdentifier":{
488489
"type":"string",
489-
"pattern":"(pcs_[a-zA-Z0-9]+|[A-Za-z][A-Za-z0-9-]{1,25})"
490+
"pattern":"(pcs_[a-zA-Z0-9]+|[A-Za-z][A-Za-z0-9-]{3,25})"
490491
},
491492
"ComputeNodeGroupList":{
492493
"type":"list",
@@ -495,8 +496,8 @@
495496
"ComputeNodeGroupName":{
496497
"type":"string",
497498
"max":25,
498-
"min":1,
499-
"pattern":"(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+"
499+
"min":3,
500+
"pattern":"(?!pcs_)^[A-Za-z][A-Za-z0-9-]+"
500501
},
501502
"ComputeNodeGroupSlurmConfiguration":{
502503
"type":"structure",
@@ -937,7 +938,7 @@
937938
},
938939
"QueueIdentifier":{
939940
"type":"string",
940-
"pattern":"(pcs_[a-zA-Z0-9]+|[A-Za-z][A-Za-z0-9-]{1,25})"
941+
"pattern":"(pcs_[a-zA-Z0-9]+|[A-Za-z][A-Za-z0-9-]{3,25})"
941942
},
942943
"QueueList":{
943944
"type":"list",
@@ -946,8 +947,8 @@
946947
"QueueName":{
947948
"type":"string",
948949
"max":25,
949-
"min":1,
950-
"pattern":"(?!pcs_)^(?![A-Za-z0-9]{10}$)[A-Za-z][A-Za-z0-9-]+"
950+
"min":3,
951+
"pattern":"(?!pcs_)^[A-Za-z][A-Za-z0-9-]+"
951952
},
952953
"QueueStatus":{
953954
"type":"string",

apis/pcs/2023-02-10/smoke-2.json

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
{
2+
"version" : 2,
3+
"testCases" : [ {
4+
"id" : "ListClustersSuccess",
5+
"operationName" : "ListClusters",
6+
"input" : { },
7+
"expectation" : {
8+
"success" : { }
9+
},
10+
"config" : {
11+
"region" : "us-west-2",
12+
"useFips" : false,
13+
"useDualstack" : false,
14+
"useAccountIdRouting" : true
15+
}
16+
}, {
17+
"id" : "GetComputeNodeGroup_AccessDeniedException",
18+
"operationName" : "GetComputeNodeGroup",
19+
"input" : {
20+
"clusterIdentifier" : "pcs_donotexist",
21+
"computeNodeGroupIdentifier" : "pcs_donotexist"
22+
},
23+
"expectation" : {
24+
"failure" : {
25+
"errorId" : "AccessDeniedException"
26+
}
27+
},
28+
"config" : {
29+
"region" : "us-west-2",
30+
"useFips" : false,
31+
"useDualstack" : false,
32+
"useAccountIdRouting" : true
33+
}
34+
}, {
35+
"id" : "ListComputeNodeGroups_AccessDeniedException",
36+
"operationName" : "ListComputeNodeGroups",
37+
"input" : {
38+
"clusterIdentifier" : "pcs_donotexist"
39+
},
40+
"expectation" : {
41+
"failure" : {
42+
"errorId" : "AccessDeniedException"
43+
}
44+
},
45+
"config" : {
46+
"region" : "us-west-2",
47+
"useFips" : false,
48+
"useDualstack" : false,
49+
"useAccountIdRouting" : true
50+
}
51+
}, {
52+
"id" : "ListQueueFailure_AccessDeniedException",
53+
"operationName" : "ListQueues",
54+
"input" : {
55+
"clusterIdentifier" : "pcs_donotexist"
56+
},
57+
"expectation" : {
58+
"failure" : {
59+
"errorId" : "AccessDeniedException"
60+
}
61+
},
62+
"config" : {
63+
"region" : "us-west-2",
64+
"useFips" : false,
65+
"useDualstack" : false,
66+
"useAccountIdRouting" : true
67+
}
68+
}, {
69+
"id" : "GetQueueFailure_AccessDeniedException",
70+
"operationName" : "GetQueue",
71+
"input" : {
72+
"clusterIdentifier" : "pcs_donotexist",
73+
"queueIdentifier" : "pcs_donotexist"
74+
},
75+
"expectation" : {
76+
"failure" : {
77+
"errorId" : "AccessDeniedException"
78+
}
79+
},
80+
"config" : {
81+
"region" : "us-west-2",
82+
"useFips" : false,
83+
"useDualstack" : false,
84+
"useAccountIdRouting" : true
85+
}
86+
}, {
87+
"id" : "GetCluster_AccessDeniedException",
88+
"operationName" : "GetCluster",
89+
"input" : {
90+
"clusterIdentifier" : "pcs_donotexist"
91+
},
92+
"expectation" : {
93+
"failure" : {
94+
"errorId" : "AccessDeniedException"
95+
}
96+
},
97+
"config" : {
98+
"region" : "us-west-2",
99+
"useFips" : false,
100+
"useDualstack" : false,
101+
"useAccountIdRouting" : true
102+
}
103+
} ]
104+
}

apis/qconnect/2020-10-19/docs-2.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"NotifyRecommendationsReceived": "<p>Removes the specified recommendations from the specified assistant's queue of newly available recommendations. You can use this API in conjunction with <a href=\"https://docs.aws.amazon.com/amazon-q-connect/latest/APIReference/API_GetRecommendations.html\">GetRecommendations</a> and a <code>waitTimeSeconds</code> input for long-polling behavior and avoiding duplicate recommendations.</p>",
7171
"PutFeedback": "<p>Provides feedback against the specified assistant for the specified target. This API only supports generative targets.</p>",
7272
"QueryAssistant": "<important> <p>This API will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024, you will need to create a new Assistant in the Amazon Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications.</p> </important> <p>Performs a manual search against the specified assistant. To retrieve recommendations for an assistant, use <a href=\"https://docs.aws.amazon.com/amazon-q-connect/latest/APIReference/API_GetRecommendations.html\">GetRecommendations</a>. </p>",
73-
"RemoveAssistantAIAgent": "<p>Removes the AI Agent that is set for use by defafult on an Amazon Q in Connect Assistant.</p>",
73+
"RemoveAssistantAIAgent": "<p>Removes the AI Agent that is set for use by default on an Amazon Q in Connect Assistant.</p>",
7474
"RemoveKnowledgeBaseTemplateUri": "<p>Removes a URI template from a knowledge base.</p>",
7575
"RenderMessageTemplate": "<p>Renders the Amazon Q in Connect message template based on the attribute values provided and generates the message content. For any variable present in the message template, if the attribute value is neither provided in the attribute request parameter nor the default attribute of the message template, the rendered message content will keep the variable placeholder as it is and return the attribute keys that are missing.</p>",
7676
"SearchContent": "<p>Searches for content in a specified knowledge base. Can be used to get a specific content resource by its name.</p>",
@@ -85,7 +85,7 @@
8585
"UpdateAIAgent": "<p>Updates an AI Agent.</p>",
8686
"UpdateAIGuardrail": "<p>Updates an AI Guardrail.</p>",
8787
"UpdateAIPrompt": "<p>Updates an AI Prompt.</p>",
88-
"UpdateAssistantAIAgent": "<p>Updates the AI Agent that is set for use by defafult on an Amazon Q in Connect Assistant.</p>",
88+
"UpdateAssistantAIAgent": "<p>Updates the AI Agent that is set for use by default on an Amazon Q in Connect Assistant.</p>",
8989
"UpdateContent": "<p>Updates information about the content.</p>",
9090
"UpdateKnowledgeBaseTemplateUri": "<p>Updates the template URI of a knowledge base. This is only supported for knowledge bases of type EXTERNAL. Include a single variable in <code>${variable}</code> format; this interpolated by Amazon Q in Connect using ingested content. For example, if you ingest a Salesforce article, it has an <code>Id</code> value, and you can set the template URI to <code>https://myInstanceName.lightning.force.com/lightning/r/Knowledge__kav/*${Id}*/view</code>. </p>",
9191
"UpdateMessageTemplate": "<p>Updates the Amazon Q in Connect message template. Partial update is supported. If any field is not supplied, it will remain unchanged for the message template that is referenced by the <code>$LATEST</code> qualifier. Any modification will only apply to the message template that is referenced by the <code>$LATEST</code> qualifier. The fields for all available versions will remain unchanged.</p>",
@@ -286,9 +286,9 @@
286286
"AIPromptModelIdentifier": {
287287
"base": null,
288288
"refs": {
289-
"AIPromptData$modelId": "<p>The identifier of the model used for this AI Prompt. Model Ids supported are: <code>CLAUDE_3_HAIKU_20240307_V1</code>.</p>",
290-
"AIPromptSummary$modelId": "<p>The identifier of the model used for this AI Prompt. Model Ids supported are: <code>CLAUDE_3_HAIKU_20240307_V1</code>.</p>",
291-
"CreateAIPromptRequest$modelId": "<p>The identifier of the model used for this AI Prompt. Model Ids supported are: <code>CLAUDE_3_HAIKU_20240307_V1</code> </p>"
289+
"AIPromptData$modelId": "<p>The identifier of the model used for this AI Prompt. Model Ids supported are: <code>anthropic.claude-3-haiku-20240307-v1:0</code>.</p>",
290+
"AIPromptSummary$modelId": "<p>The identifier of the model used for this AI Prompt. Model Ids supported are: <code>anthropic.claude-3-haiku-20240307-v1:0</code>.</p>",
291+
"CreateAIPromptRequest$modelId": "<p>The identifier of the model used for this AI Prompt. Model Ids supported are: <code>anthropic.claude-3-haiku-20240307-v1:0</code> </p>"
292292
}
293293
},
294294
"AIPromptSummary": {
@@ -2544,7 +2544,7 @@
25442544
"NonEmptyString": {
25452545
"base": null,
25462546
"refs": {
2547-
"AnswerRecommendationAIAgentConfiguration$locale": "<p>The locale to which specifies the language and region settings that determine the response language for <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_amazon-q-connect_QueryAssistant.html\">QueryAssistant</a>.</p> <note> <p>Changing this locale to anything other than <code>en_US</code> will turn off recommendations triggered by contact transcripts for agent assistance, as this feature is not supported in multiple languages.</p> </note>",
2547+
"AnswerRecommendationAIAgentConfiguration$locale": "<p>The locale to which specifies the language and region settings that determine the response language for <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_amazon-q-connect_QueryAssistant.html\">QueryAssistant</a>.</p> <note> <p>Changing this locale to anything other than <code>en_US</code>, <code>en_GB</code>, or <code>en_AU</code> will turn off recommendations triggered by contact transcripts for agent assistance, as this feature is not supported in multiple languages.</p> </note>",
25482548
"ConnectConfiguration$instanceId": "<p>The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.</p>",
25492549
"ContentData$revisionId": "<p>The identifier of the content revision.</p>",
25502550
"ContentMetadata$key": null,
@@ -3204,7 +3204,7 @@
32043204
}
32053205
},
32063206
"SelfServiceConversationHistory": {
3207-
"base": "<p>The conversation history data to included in conversation context data before the the Amazon Q in Connect session..</p>",
3207+
"base": "<p>The conversation history data to included in conversation context data before the Amazon Q in Connect session.</p>",
32083208
"refs": {
32093209
"SelfServiceConversationHistoryList$member": null
32103210
}

apis/ssm/2014-11-06/api-2.json

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3077,7 +3077,8 @@
30773077
"RejectedPatches":{"shape":"PatchIdList"},
30783078
"RejectedPatchesAction":{"shape":"PatchAction"},
30793079
"ApprovedPatchesEnableNonSecurity":{"shape":"Boolean"},
3080-
"Sources":{"shape":"PatchSourceList"}
3080+
"Sources":{"shape":"PatchSourceList"},
3081+
"AvailableSecurityUpdatesComplianceStatus":{"shape":"PatchComplianceStatus"}
30813082
}
30823083
},
30833084
"BatchErrorMessage":{"type":"string"},
@@ -3779,6 +3780,7 @@
37793780
"RejectedPatchesAction":{"shape":"PatchAction"},
37803781
"Description":{"shape":"BaselineDescription"},
37813782
"Sources":{"shape":"PatchSourceList"},
3783+
"AvailableSecurityUpdatesComplianceStatus":{"shape":"PatchComplianceStatus"},
37823784
"ClientToken":{
37833785
"shape":"ClientToken",
37843786
"idempotencyToken":true
@@ -4696,6 +4698,10 @@
46964698
"InstancesWithOtherNonCompliantPatches":{
46974699
"shape":"InstancesCount",
46984700
"box":true
4701+
},
4702+
"InstancesWithAvailableSecurityUpdates":{
4703+
"shape":"Integer",
4704+
"box":true
46994705
}
47004706
}
47014707
},
@@ -5836,7 +5842,8 @@
58365842
"CreatedDate":{"shape":"DateTime"},
58375843
"ModifiedDate":{"shape":"DateTime"},
58385844
"Description":{"shape":"BaselineDescription"},
5839-
"Sources":{"shape":"PatchSourceList"}
5845+
"Sources":{"shape":"PatchSourceList"},
5846+
"AvailableSecurityUpdatesComplianceStatus":{"shape":"PatchComplianceStatus"}
58405847
}
58415848
},
58425849
"GetResourcePoliciesRequest":{
@@ -6164,6 +6171,10 @@
61646171
"box":true
61656172
},
61666173
"NotApplicableCount":{"shape":"PatchNotApplicableCount"},
6174+
"AvailableSecurityUpdateCount":{
6175+
"shape":"PatchAvailableSecurityUpdateCount",
6176+
"box":true
6177+
},
61676178
"OperationStartTime":{"shape":"DateTime"},
61686179
"OperationEndTime":{"shape":"DateTime"},
61696180
"Operation":{"shape":"PatchOperationType"},
@@ -9215,6 +9226,7 @@
92159226
"member":{"shape":"PatchAdvisoryId"}
92169227
},
92179228
"PatchArch":{"type":"string"},
9229+
"PatchAvailableSecurityUpdateCount":{"type":"integer"},
92189230
"PatchBaselineIdentity":{
92199231
"type":"structure",
92209232
"members":{
@@ -9279,7 +9291,8 @@
92799291
"INSTALLED_REJECTED",
92809292
"MISSING",
92819293
"NOT_APPLICABLE",
9282-
"FAILED"
9294+
"FAILED",
9295+
"AVAILABLE_SECURITY_UPDATE"
92839296
]
92849297
},
92859298
"PatchComplianceLevel":{
@@ -9298,6 +9311,13 @@
92989311
"max":100,
92999312
"min":10
93009313
},
9314+
"PatchComplianceStatus":{
9315+
"type":"string",
9316+
"enum":[
9317+
"COMPLIANT",
9318+
"NON_COMPLIANT"
9319+
]
9320+
},
93019321
"PatchContentUrl":{"type":"string"},
93029322
"PatchCriticalNonCompliantCount":{"type":"integer"},
93039323
"PatchDeploymentStatus":{
@@ -11540,6 +11560,7 @@
1154011560
"RejectedPatchesAction":{"shape":"PatchAction"},
1154111561
"Description":{"shape":"BaselineDescription"},
1154211562
"Sources":{"shape":"PatchSourceList"},
11563+
"AvailableSecurityUpdatesComplianceStatus":{"shape":"PatchComplianceStatus"},
1154311564
"Replace":{
1154411565
"shape":"Boolean",
1154511566
"box":true
@@ -11565,7 +11586,8 @@
1156511586
"CreatedDate":{"shape":"DateTime"},
1156611587
"ModifiedDate":{"shape":"DateTime"},
1156711588
"Description":{"shape":"BaselineDescription"},
11568-
"Sources":{"shape":"PatchSourceList"}
11589+
"Sources":{"shape":"PatchSourceList"},
11590+
"AvailableSecurityUpdatesComplianceStatus":{"shape":"PatchComplianceStatus"}
1156911591
}
1157011592
},
1157111593
"UpdateResourceDataSyncRequest":{

0 commit comments

Comments
 (0)