Skip to content

Commit 02eaa5a

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated API models and rebuilt service gems.
1 parent d472f1b commit 02eaa5a

File tree

32 files changed

+1217
-215
lines changed

32 files changed

+1217
-215
lines changed

apis/chime-sdk-meetings/2021-07-15/api-2.json

Lines changed: 160 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,19 @@
195195
{"shape":"ThrottlingException"}
196196
]
197197
},
198+
"ListTagsForResource":{
199+
"name":"ListTagsForResource",
200+
"http":{
201+
"method":"GET",
202+
"requestUri":"/tags",
203+
"responseCode":200
204+
},
205+
"input":{"shape":"ListTagsForResourceRequest"},
206+
"output":{"shape":"ListTagsForResourceResponse"},
207+
"errors":[
208+
{"shape":"ResourceNotFoundException"}
209+
]
210+
},
198211
"StartMeetingTranscription":{
199212
"name":"StartMeetingTranscription",
200213
"http":{
@@ -234,6 +247,35 @@
234247
{"shape":"ServiceFailureException"}
235248
]
236249
},
250+
"TagResource":{
251+
"name":"TagResource",
252+
"http":{
253+
"method":"POST",
254+
"requestUri":"/tags?operation=tag-resource",
255+
"responseCode":204
256+
},
257+
"input":{"shape":"TagResourceRequest"},
258+
"output":{"shape":"TagResourceResponse"},
259+
"errors":[
260+
{"shape":"BadRequestException"},
261+
{"shape":"ResourceNotFoundException"},
262+
{"shape":"TooManyTagsException"}
263+
]
264+
},
265+
"UntagResource":{
266+
"name":"UntagResource",
267+
"http":{
268+
"method":"POST",
269+
"requestUri":"/tags?operation=untag-resource",
270+
"responseCode":204
271+
},
272+
"input":{"shape":"UntagResourceRequest"},
273+
"output":{"shape":"UntagResourceResponse"},
274+
"errors":[
275+
{"shape":"BadRequestException"},
276+
{"shape":"ResourceNotFoundException"}
277+
]
278+
},
237279
"UpdateAttendeeCapabilities":{
238280
"name":"UpdateAttendeeCapabilities",
239281
"http":{
@@ -253,6 +295,12 @@
253295
}
254296
},
255297
"shapes":{
298+
"AmazonResourceName":{
299+
"type":"string",
300+
"max":1011,
301+
"min":1,
302+
"pattern":"^arn:.*"
303+
},
256304
"Arn":{
257305
"type":"string",
258306
"max":1024,
@@ -438,7 +486,8 @@
438486
"NotificationsConfiguration":{"shape":"NotificationsConfiguration"},
439487
"MeetingFeatures":{"shape":"MeetingFeaturesConfiguration"},
440488
"PrimaryMeetingId":{"shape":"PrimaryMeetingId"},
441-
"TenantIds":{"shape":"TenantIdList"}
489+
"TenantIds":{"shape":"TenantIdList"},
490+
"Tags":{"shape":"TagList"}
442491
}
443492
},
444493
"CreateMeetingResponse":{
@@ -467,7 +516,8 @@
467516
"NotificationsConfiguration":{"shape":"NotificationsConfiguration"},
468517
"Attendees":{"shape":"CreateMeetingWithAttendeesRequestItemList"},
469518
"PrimaryMeetingId":{"shape":"PrimaryMeetingId"},
470-
"TenantIds":{"shape":"TenantIdList"}
519+
"TenantIds":{"shape":"TenantIdList"},
520+
"Tags":{"shape":"TagList"}
471521
}
472522
},
473523
"CreateMeetingWithAttendeesRequestItemList":{
@@ -661,6 +711,23 @@
661711
"NextToken":{"shape":"String"}
662712
}
663713
},
714+
"ListTagsForResourceRequest":{
715+
"type":"structure",
716+
"required":["ResourceARN"],
717+
"members":{
718+
"ResourceARN":{
719+
"shape":"AmazonResourceName",
720+
"location":"querystring",
721+
"locationName":"arn"
722+
}
723+
}
724+
},
725+
"ListTagsForResourceResponse":{
726+
"type":"structure",
727+
"members":{
728+
"Tags":{"shape":"TagList"}
729+
}
730+
},
664731
"MediaCapabilities":{
665732
"type":"string",
666733
"enum":[
@@ -698,7 +765,8 @@
698765
"MediaPlacement":{"shape":"MediaPlacement"},
699766
"MeetingFeatures":{"shape":"MeetingFeaturesConfiguration"},
700767
"PrimaryMeetingId":{"shape":"PrimaryMeetingId"},
701-
"TenantIds":{"shape":"TenantIdList"}
768+
"TenantIds":{"shape":"TenantIdList"},
769+
"MeetingArn":{"shape":"AmazonResourceName"}
702770
}
703771
},
704772
"MeetingFeatureStatus":{
@@ -737,6 +805,17 @@
737805
"max":64,
738806
"min":2
739807
},
808+
"ResourceNotFoundException":{
809+
"type":"structure",
810+
"members":{
811+
"Code":{"shape":"String"},
812+
"Message":{"shape":"String"},
813+
"RequestId":{"shape":"String"},
814+
"ResourceName":{"shape":"AmazonResourceName"}
815+
},
816+
"error":{"httpStatusCode":404},
817+
"exception":true
818+
},
740819
"ResultMax":{
741820
"type":"integer",
742821
"max":100,
@@ -800,6 +879,57 @@
800879
"type":"string",
801880
"max":4096
802881
},
882+
"Tag":{
883+
"type":"structure",
884+
"required":[
885+
"Key",
886+
"Value"
887+
],
888+
"members":{
889+
"Key":{"shape":"TagKey"},
890+
"Value":{"shape":"TagValue"}
891+
}
892+
},
893+
"TagKey":{
894+
"type":"string",
895+
"max":128,
896+
"min":1,
897+
"pattern":"^[a-zA-Z+-=._:/]+$"
898+
},
899+
"TagKeyList":{
900+
"type":"list",
901+
"member":{"shape":"TagKey"},
902+
"max":50,
903+
"min":0
904+
},
905+
"TagList":{
906+
"type":"list",
907+
"member":{"shape":"Tag"},
908+
"max":50,
909+
"min":0
910+
},
911+
"TagResourceRequest":{
912+
"type":"structure",
913+
"required":[
914+
"ResourceARN",
915+
"Tags"
916+
],
917+
"members":{
918+
"ResourceARN":{"shape":"AmazonResourceName"},
919+
"Tags":{"shape":"TagList"}
920+
}
921+
},
922+
"TagResourceResponse":{
923+
"type":"structure",
924+
"members":{
925+
}
926+
},
927+
"TagValue":{
928+
"type":"string",
929+
"max":256,
930+
"min":0,
931+
"pattern":"[\\s\\w+-=\\.:/@]*"
932+
},
803933
"TenantId":{
804934
"type":"string",
805935
"max":256,
@@ -822,6 +952,17 @@
822952
"error":{"httpStatusCode":429},
823953
"exception":true
824954
},
955+
"TooManyTagsException":{
956+
"type":"structure",
957+
"members":{
958+
"Code":{"shape":"String"},
959+
"Message":{"shape":"String"},
960+
"RequestId":{"shape":"String"},
961+
"ResourceName":{"shape":"AmazonResourceName"}
962+
},
963+
"error":{"httpStatusCode":400},
964+
"exception":true
965+
},
825966
"TranscribeContentIdentificationType":{
826967
"type":"string",
827968
"enum":["PII"]
@@ -964,6 +1105,22 @@
9641105
"error":{"httpStatusCode":422},
9651106
"exception":true
9661107
},
1108+
"UntagResourceRequest":{
1109+
"type":"structure",
1110+
"required":[
1111+
"ResourceARN",
1112+
"TagKeys"
1113+
],
1114+
"members":{
1115+
"ResourceARN":{"shape":"AmazonResourceName"},
1116+
"TagKeys":{"shape":"TagKeyList"}
1117+
}
1118+
},
1119+
"UntagResourceResponse":{
1120+
"type":"structure",
1121+
"members":{
1122+
}
1123+
},
9671124
"UpdateAttendeeCapabilitiesRequest":{
9681125
"type":"structure",
9691126
"required":[

0 commit comments

Comments
 (0)