aws-sdk-connect 1.38.0 → 1.43.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +228 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-connect.rb +2 -2
- data/lib/aws-sdk-connect/client.rb +537 -79
- data/lib/aws-sdk-connect/client_api.rb +298 -1
- data/lib/aws-sdk-connect/errors.rb +1 -1
- data/lib/aws-sdk-connect/resource.rb +1 -1
- data/lib/aws-sdk-connect/types.rb +673 -51
- metadata +11 -9
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -23,6 +23,7 @@ module Aws::Connect
|
|
23
23
|
AssociateInstanceStorageConfigResponse = Shapes::StructureShape.new(name: 'AssociateInstanceStorageConfigResponse')
|
24
24
|
AssociateLambdaFunctionRequest = Shapes::StructureShape.new(name: 'AssociateLambdaFunctionRequest')
|
25
25
|
AssociateLexBotRequest = Shapes::StructureShape.new(name: 'AssociateLexBotRequest')
|
26
|
+
AssociateQueueQuickConnectsRequest = Shapes::StructureShape.new(name: 'AssociateQueueQuickConnectsRequest')
|
26
27
|
AssociateRoutingProfileQueuesRequest = Shapes::StructureShape.new(name: 'AssociateRoutingProfileQueuesRequest')
|
27
28
|
AssociateSecurityKeyRequest = Shapes::StructureShape.new(name: 'AssociateSecurityKeyRequest')
|
28
29
|
AssociateSecurityKeyResponse = Shapes::StructureShape.new(name: 'AssociateSecurityKeyResponse')
|
@@ -41,6 +42,8 @@ module Aws::Connect
|
|
41
42
|
ChatContentType = Shapes::StringShape.new(name: 'ChatContentType')
|
42
43
|
ChatMessage = Shapes::StructureShape.new(name: 'ChatMessage')
|
43
44
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
45
|
+
CommonDescriptionLength250 = Shapes::StringShape.new(name: 'CommonDescriptionLength250')
|
46
|
+
CommonNameLength127 = Shapes::StringShape.new(name: 'CommonNameLength127')
|
44
47
|
Comparison = Shapes::StringShape.new(name: 'Comparison')
|
45
48
|
Concurrency = Shapes::IntegerShape.new(name: 'Concurrency')
|
46
49
|
ContactFlow = Shapes::StructureShape.new(name: 'ContactFlow')
|
@@ -62,6 +65,8 @@ module Aws::Connect
|
|
62
65
|
CreateInstanceResponse = Shapes::StructureShape.new(name: 'CreateInstanceResponse')
|
63
66
|
CreateIntegrationAssociationRequest = Shapes::StructureShape.new(name: 'CreateIntegrationAssociationRequest')
|
64
67
|
CreateIntegrationAssociationResponse = Shapes::StructureShape.new(name: 'CreateIntegrationAssociationResponse')
|
68
|
+
CreateQueueRequest = Shapes::StructureShape.new(name: 'CreateQueueRequest')
|
69
|
+
CreateQueueResponse = Shapes::StructureShape.new(name: 'CreateQueueResponse')
|
65
70
|
CreateQuickConnectRequest = Shapes::StructureShape.new(name: 'CreateQuickConnectRequest')
|
66
71
|
CreateQuickConnectResponse = Shapes::StructureShape.new(name: 'CreateQuickConnectResponse')
|
67
72
|
CreateRoutingProfileRequest = Shapes::StructureShape.new(name: 'CreateRoutingProfileRequest')
|
@@ -89,12 +94,16 @@ module Aws::Connect
|
|
89
94
|
DeleteUserRequest = Shapes::StructureShape.new(name: 'DeleteUserRequest')
|
90
95
|
DescribeContactFlowRequest = Shapes::StructureShape.new(name: 'DescribeContactFlowRequest')
|
91
96
|
DescribeContactFlowResponse = Shapes::StructureShape.new(name: 'DescribeContactFlowResponse')
|
97
|
+
DescribeHoursOfOperationRequest = Shapes::StructureShape.new(name: 'DescribeHoursOfOperationRequest')
|
98
|
+
DescribeHoursOfOperationResponse = Shapes::StructureShape.new(name: 'DescribeHoursOfOperationResponse')
|
92
99
|
DescribeInstanceAttributeRequest = Shapes::StructureShape.new(name: 'DescribeInstanceAttributeRequest')
|
93
100
|
DescribeInstanceAttributeResponse = Shapes::StructureShape.new(name: 'DescribeInstanceAttributeResponse')
|
94
101
|
DescribeInstanceRequest = Shapes::StructureShape.new(name: 'DescribeInstanceRequest')
|
95
102
|
DescribeInstanceResponse = Shapes::StructureShape.new(name: 'DescribeInstanceResponse')
|
96
103
|
DescribeInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'DescribeInstanceStorageConfigRequest')
|
97
104
|
DescribeInstanceStorageConfigResponse = Shapes::StructureShape.new(name: 'DescribeInstanceStorageConfigResponse')
|
105
|
+
DescribeQueueRequest = Shapes::StructureShape.new(name: 'DescribeQueueRequest')
|
106
|
+
DescribeQueueResponse = Shapes::StructureShape.new(name: 'DescribeQueueResponse')
|
98
107
|
DescribeQuickConnectRequest = Shapes::StructureShape.new(name: 'DescribeQuickConnectRequest')
|
99
108
|
DescribeQuickConnectResponse = Shapes::StructureShape.new(name: 'DescribeQuickConnectResponse')
|
100
109
|
DescribeRoutingProfileRequest = Shapes::StructureShape.new(name: 'DescribeRoutingProfileRequest')
|
@@ -116,6 +125,7 @@ module Aws::Connect
|
|
116
125
|
DisassociateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'DisassociateInstanceStorageConfigRequest')
|
117
126
|
DisassociateLambdaFunctionRequest = Shapes::StructureShape.new(name: 'DisassociateLambdaFunctionRequest')
|
118
127
|
DisassociateLexBotRequest = Shapes::StructureShape.new(name: 'DisassociateLexBotRequest')
|
128
|
+
DisassociateQueueQuickConnectsRequest = Shapes::StructureShape.new(name: 'DisassociateQueueQuickConnectsRequest')
|
119
129
|
DisassociateRoutingProfileQueuesRequest = Shapes::StructureShape.new(name: 'DisassociateRoutingProfileQueuesRequest')
|
120
130
|
DisassociateSecurityKeyRequest = Shapes::StructureShape.new(name: 'DisassociateSecurityKeyRequest')
|
121
131
|
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
@@ -156,10 +166,16 @@ module Aws::Connect
|
|
156
166
|
HistoricalMetricResults = Shapes::ListShape.new(name: 'HistoricalMetricResults')
|
157
167
|
HistoricalMetrics = Shapes::ListShape.new(name: 'HistoricalMetrics')
|
158
168
|
Hours = Shapes::IntegerShape.new(name: 'Hours')
|
169
|
+
Hours24Format = Shapes::IntegerShape.new(name: 'Hours24Format')
|
170
|
+
HoursOfOperation = Shapes::StructureShape.new(name: 'HoursOfOperation')
|
171
|
+
HoursOfOperationConfig = Shapes::StructureShape.new(name: 'HoursOfOperationConfig')
|
172
|
+
HoursOfOperationConfigList = Shapes::ListShape.new(name: 'HoursOfOperationConfigList')
|
173
|
+
HoursOfOperationDays = Shapes::StringShape.new(name: 'HoursOfOperationDays')
|
159
174
|
HoursOfOperationId = Shapes::StringShape.new(name: 'HoursOfOperationId')
|
160
175
|
HoursOfOperationName = Shapes::StringShape.new(name: 'HoursOfOperationName')
|
161
176
|
HoursOfOperationSummary = Shapes::StructureShape.new(name: 'HoursOfOperationSummary')
|
162
177
|
HoursOfOperationSummaryList = Shapes::ListShape.new(name: 'HoursOfOperationSummaryList')
|
178
|
+
HoursOfOperationTimeSlice = Shapes::StructureShape.new(name: 'HoursOfOperationTimeSlice')
|
163
179
|
InboundCallsEnabled = Shapes::BooleanShape.new(name: 'InboundCallsEnabled')
|
164
180
|
Instance = Shapes::StructureShape.new(name: 'Instance')
|
165
181
|
InstanceAttributeType = Shapes::StringShape.new(name: 'InstanceAttributeType')
|
@@ -210,6 +226,8 @@ module Aws::Connect
|
|
210
226
|
ListPhoneNumbersResponse = Shapes::StructureShape.new(name: 'ListPhoneNumbersResponse')
|
211
227
|
ListPromptsRequest = Shapes::StructureShape.new(name: 'ListPromptsRequest')
|
212
228
|
ListPromptsResponse = Shapes::StructureShape.new(name: 'ListPromptsResponse')
|
229
|
+
ListQueueQuickConnectsRequest = Shapes::StructureShape.new(name: 'ListQueueQuickConnectsRequest')
|
230
|
+
ListQueueQuickConnectsResponse = Shapes::StructureShape.new(name: 'ListQueueQuickConnectsResponse')
|
213
231
|
ListQueuesRequest = Shapes::StructureShape.new(name: 'ListQueuesRequest')
|
214
232
|
ListQueuesResponse = Shapes::StructureShape.new(name: 'ListQueuesResponse')
|
215
233
|
ListQuickConnectsRequest = Shapes::StructureShape.new(name: 'ListQuickConnectsRequest')
|
@@ -239,10 +257,13 @@ module Aws::Connect
|
|
239
257
|
MediaConcurrencies = Shapes::ListShape.new(name: 'MediaConcurrencies')
|
240
258
|
MediaConcurrency = Shapes::StructureShape.new(name: 'MediaConcurrency')
|
241
259
|
Message = Shapes::StringShape.new(name: 'Message')
|
260
|
+
MinutesLimit60 = Shapes::IntegerShape.new(name: 'MinutesLimit60')
|
242
261
|
Name = Shapes::StringShape.new(name: 'Name')
|
243
262
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
244
263
|
Origin = Shapes::StringShape.new(name: 'Origin')
|
245
264
|
OriginsList = Shapes::ListShape.new(name: 'OriginsList')
|
265
|
+
OutboundCallerConfig = Shapes::StructureShape.new(name: 'OutboundCallerConfig')
|
266
|
+
OutboundCallerIdName = Shapes::StringShape.new(name: 'OutboundCallerIdName')
|
246
267
|
OutboundCallsEnabled = Shapes::BooleanShape.new(name: 'OutboundCallsEnabled')
|
247
268
|
OutboundContactNotPermittedException = Shapes::StructureShape.new(name: 'OutboundContactNotPermittedException')
|
248
269
|
PEM = Shapes::StringShape.new(name: 'PEM')
|
@@ -269,10 +290,14 @@ module Aws::Connect
|
|
269
290
|
PromptName = Shapes::StringShape.new(name: 'PromptName')
|
270
291
|
PromptSummary = Shapes::StructureShape.new(name: 'PromptSummary')
|
271
292
|
PromptSummaryList = Shapes::ListShape.new(name: 'PromptSummaryList')
|
293
|
+
Queue = Shapes::StructureShape.new(name: 'Queue')
|
294
|
+
QueueDescription = Shapes::StringShape.new(name: 'QueueDescription')
|
272
295
|
QueueId = Shapes::StringShape.new(name: 'QueueId')
|
296
|
+
QueueMaxContacts = Shapes::IntegerShape.new(name: 'QueueMaxContacts')
|
273
297
|
QueueName = Shapes::StringShape.new(name: 'QueueName')
|
274
298
|
QueueQuickConnectConfig = Shapes::StructureShape.new(name: 'QueueQuickConnectConfig')
|
275
299
|
QueueReference = Shapes::StructureShape.new(name: 'QueueReference')
|
300
|
+
QueueStatus = Shapes::StringShape.new(name: 'QueueStatus')
|
276
301
|
QueueSummary = Shapes::StructureShape.new(name: 'QueueSummary')
|
277
302
|
QueueSummaryList = Shapes::ListShape.new(name: 'QueueSummaryList')
|
278
303
|
QueueType = Shapes::StringShape.new(name: 'QueueType')
|
@@ -287,6 +312,7 @@ module Aws::Connect
|
|
287
312
|
QuickConnectSummaryList = Shapes::ListShape.new(name: 'QuickConnectSummaryList')
|
288
313
|
QuickConnectType = Shapes::StringShape.new(name: 'QuickConnectType')
|
289
314
|
QuickConnectTypes = Shapes::ListShape.new(name: 'QuickConnectTypes')
|
315
|
+
QuickConnectsList = Shapes::ListShape.new(name: 'QuickConnectsList')
|
290
316
|
Reference = Shapes::StructureShape.new(name: 'Reference')
|
291
317
|
ReferenceKey = Shapes::StringShape.new(name: 'ReferenceKey')
|
292
318
|
ReferenceType = Shapes::StringShape.new(name: 'ReferenceType')
|
@@ -346,6 +372,7 @@ module Aws::Connect
|
|
346
372
|
Threshold = Shapes::StructureShape.new(name: 'Threshold')
|
347
373
|
ThresholdValue = Shapes::FloatShape.new(name: 'ThresholdValue')
|
348
374
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
375
|
+
TimeZone = Shapes::StringShape.new(name: 'TimeZone')
|
349
376
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
350
377
|
URI = Shapes::StringShape.new(name: 'URI')
|
351
378
|
Unit = Shapes::StringShape.new(name: 'Unit')
|
@@ -356,6 +383,11 @@ module Aws::Connect
|
|
356
383
|
UpdateContactFlowNameRequest = Shapes::StructureShape.new(name: 'UpdateContactFlowNameRequest')
|
357
384
|
UpdateInstanceAttributeRequest = Shapes::StructureShape.new(name: 'UpdateInstanceAttributeRequest')
|
358
385
|
UpdateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'UpdateInstanceStorageConfigRequest')
|
386
|
+
UpdateQueueHoursOfOperationRequest = Shapes::StructureShape.new(name: 'UpdateQueueHoursOfOperationRequest')
|
387
|
+
UpdateQueueMaxContactsRequest = Shapes::StructureShape.new(name: 'UpdateQueueMaxContactsRequest')
|
388
|
+
UpdateQueueNameRequest = Shapes::StructureShape.new(name: 'UpdateQueueNameRequest')
|
389
|
+
UpdateQueueOutboundCallerConfigRequest = Shapes::StructureShape.new(name: 'UpdateQueueOutboundCallerConfigRequest')
|
390
|
+
UpdateQueueStatusRequest = Shapes::StructureShape.new(name: 'UpdateQueueStatusRequest')
|
359
391
|
UpdateQuickConnectConfigRequest = Shapes::StructureShape.new(name: 'UpdateQuickConnectConfigRequest')
|
360
392
|
UpdateQuickConnectNameRequest = Shapes::StructureShape.new(name: 'UpdateQuickConnectNameRequest')
|
361
393
|
UpdateRoutingProfileConcurrencyRequest = Shapes::StructureShape.new(name: 'UpdateRoutingProfileConcurrencyRequest')
|
@@ -406,6 +438,11 @@ module Aws::Connect
|
|
406
438
|
AssociateLexBotRequest.add_member(:lex_bot, Shapes::ShapeRef.new(shape: LexBot, required: true, location_name: "LexBot"))
|
407
439
|
AssociateLexBotRequest.struct_class = Types::AssociateLexBotRequest
|
408
440
|
|
441
|
+
AssociateQueueQuickConnectsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
442
|
+
AssociateQueueQuickConnectsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
443
|
+
AssociateQueueQuickConnectsRequest.add_member(:quick_connect_ids, Shapes::ShapeRef.new(shape: QuickConnectsList, required: true, location_name: "QuickConnectIds"))
|
444
|
+
AssociateQueueQuickConnectsRequest.struct_class = Types::AssociateQueueQuickConnectsRequest
|
445
|
+
|
409
446
|
AssociateRoutingProfileQueuesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
410
447
|
AssociateRoutingProfileQueuesRequest.add_member(:routing_profile_id, Shapes::ShapeRef.new(shape: RoutingProfileId, required: true, location: "uri", location_name: "RoutingProfileId"))
|
411
448
|
AssociateRoutingProfileQueuesRequest.add_member(:queue_configs, Shapes::ShapeRef.new(shape: RoutingProfileQueueConfigList, required: true, location_name: "QueueConfigs"))
|
@@ -497,6 +534,20 @@ module Aws::Connect
|
|
497
534
|
CreateIntegrationAssociationResponse.add_member(:integration_association_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "IntegrationAssociationArn"))
|
498
535
|
CreateIntegrationAssociationResponse.struct_class = Types::CreateIntegrationAssociationResponse
|
499
536
|
|
537
|
+
CreateQueueRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
538
|
+
CreateQueueRequest.add_member(:name, Shapes::ShapeRef.new(shape: CommonNameLength127, required: true, location_name: "Name"))
|
539
|
+
CreateQueueRequest.add_member(:description, Shapes::ShapeRef.new(shape: QueueDescription, location_name: "Description"))
|
540
|
+
CreateQueueRequest.add_member(:outbound_caller_config, Shapes::ShapeRef.new(shape: OutboundCallerConfig, location_name: "OutboundCallerConfig"))
|
541
|
+
CreateQueueRequest.add_member(:hours_of_operation_id, Shapes::ShapeRef.new(shape: HoursOfOperationId, required: true, location_name: "HoursOfOperationId"))
|
542
|
+
CreateQueueRequest.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts, location_name: "MaxContacts", metadata: {"box"=>true}))
|
543
|
+
CreateQueueRequest.add_member(:quick_connect_ids, Shapes::ShapeRef.new(shape: QuickConnectsList, location_name: "QuickConnectIds"))
|
544
|
+
CreateQueueRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
545
|
+
CreateQueueRequest.struct_class = Types::CreateQueueRequest
|
546
|
+
|
547
|
+
CreateQueueResponse.add_member(:queue_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "QueueArn"))
|
548
|
+
CreateQueueResponse.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, location_name: "QueueId"))
|
549
|
+
CreateQueueResponse.struct_class = Types::CreateQueueResponse
|
550
|
+
|
500
551
|
CreateQuickConnectRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
501
552
|
CreateQuickConnectRequest.add_member(:name, Shapes::ShapeRef.new(shape: QuickConnectName, required: true, location_name: "Name"))
|
502
553
|
CreateQuickConnectRequest.add_member(:description, Shapes::ShapeRef.new(shape: QuickConnectDescription, location_name: "Description"))
|
@@ -610,6 +661,13 @@ module Aws::Connect
|
|
610
661
|
DescribeContactFlowResponse.add_member(:contact_flow, Shapes::ShapeRef.new(shape: ContactFlow, location_name: "ContactFlow"))
|
611
662
|
DescribeContactFlowResponse.struct_class = Types::DescribeContactFlowResponse
|
612
663
|
|
664
|
+
DescribeHoursOfOperationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
665
|
+
DescribeHoursOfOperationRequest.add_member(:hours_of_operation_id, Shapes::ShapeRef.new(shape: HoursOfOperationId, required: true, location: "uri", location_name: "HoursOfOperationId"))
|
666
|
+
DescribeHoursOfOperationRequest.struct_class = Types::DescribeHoursOfOperationRequest
|
667
|
+
|
668
|
+
DescribeHoursOfOperationResponse.add_member(:hours_of_operation, Shapes::ShapeRef.new(shape: HoursOfOperation, location_name: "HoursOfOperation"))
|
669
|
+
DescribeHoursOfOperationResponse.struct_class = Types::DescribeHoursOfOperationResponse
|
670
|
+
|
613
671
|
DescribeInstanceAttributeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
614
672
|
DescribeInstanceAttributeRequest.add_member(:attribute_type, Shapes::ShapeRef.new(shape: InstanceAttributeType, required: true, location: "uri", location_name: "AttributeType"))
|
615
673
|
DescribeInstanceAttributeRequest.struct_class = Types::DescribeInstanceAttributeRequest
|
@@ -631,6 +689,13 @@ module Aws::Connect
|
|
631
689
|
DescribeInstanceStorageConfigResponse.add_member(:storage_config, Shapes::ShapeRef.new(shape: InstanceStorageConfig, location_name: "StorageConfig"))
|
632
690
|
DescribeInstanceStorageConfigResponse.struct_class = Types::DescribeInstanceStorageConfigResponse
|
633
691
|
|
692
|
+
DescribeQueueRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
693
|
+
DescribeQueueRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
694
|
+
DescribeQueueRequest.struct_class = Types::DescribeQueueRequest
|
695
|
+
|
696
|
+
DescribeQueueResponse.add_member(:queue, Shapes::ShapeRef.new(shape: Queue, location_name: "Queue"))
|
697
|
+
DescribeQueueResponse.struct_class = Types::DescribeQueueResponse
|
698
|
+
|
634
699
|
DescribeQuickConnectRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
635
700
|
DescribeQuickConnectRequest.add_member(:quick_connect_id, Shapes::ShapeRef.new(shape: QuickConnectId, required: true, location: "uri", location_name: "QuickConnectId"))
|
636
701
|
DescribeQuickConnectRequest.struct_class = Types::DescribeQuickConnectRequest
|
@@ -690,6 +755,11 @@ module Aws::Connect
|
|
690
755
|
DisassociateLexBotRequest.add_member(:lex_region, Shapes::ShapeRef.new(shape: LexRegion, required: true, location: "querystring", location_name: "lexRegion"))
|
691
756
|
DisassociateLexBotRequest.struct_class = Types::DisassociateLexBotRequest
|
692
757
|
|
758
|
+
DisassociateQueueQuickConnectsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
759
|
+
DisassociateQueueQuickConnectsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
760
|
+
DisassociateQueueQuickConnectsRequest.add_member(:quick_connect_ids, Shapes::ShapeRef.new(shape: QuickConnectsList, required: true, location_name: "QuickConnectIds"))
|
761
|
+
DisassociateQueueQuickConnectsRequest.struct_class = Types::DisassociateQueueQuickConnectsRequest
|
762
|
+
|
693
763
|
DisassociateRoutingProfileQueuesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
694
764
|
DisassociateRoutingProfileQueuesRequest.add_member(:routing_profile_id, Shapes::ShapeRef.new(shape: RoutingProfileId, required: true, location: "uri", location_name: "RoutingProfileId"))
|
695
765
|
DisassociateRoutingProfileQueuesRequest.add_member(:queue_references, Shapes::ShapeRef.new(shape: RoutingProfileQueueReferenceList, required: true, location_name: "QueueReferences"))
|
@@ -817,6 +887,22 @@ module Aws::Connect
|
|
817
887
|
|
818
888
|
HistoricalMetrics.member = Shapes::ShapeRef.new(shape: HistoricalMetric)
|
819
889
|
|
890
|
+
HoursOfOperation.add_member(:hours_of_operation_id, Shapes::ShapeRef.new(shape: HoursOfOperationId, location_name: "HoursOfOperationId"))
|
891
|
+
HoursOfOperation.add_member(:hours_of_operation_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "HoursOfOperationArn"))
|
892
|
+
HoursOfOperation.add_member(:name, Shapes::ShapeRef.new(shape: CommonNameLength127, location_name: "Name"))
|
893
|
+
HoursOfOperation.add_member(:description, Shapes::ShapeRef.new(shape: CommonDescriptionLength250, location_name: "Description"))
|
894
|
+
HoursOfOperation.add_member(:time_zone, Shapes::ShapeRef.new(shape: TimeZone, location_name: "TimeZone"))
|
895
|
+
HoursOfOperation.add_member(:config, Shapes::ShapeRef.new(shape: HoursOfOperationConfigList, location_name: "Config"))
|
896
|
+
HoursOfOperation.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
897
|
+
HoursOfOperation.struct_class = Types::HoursOfOperation
|
898
|
+
|
899
|
+
HoursOfOperationConfig.add_member(:day, Shapes::ShapeRef.new(shape: HoursOfOperationDays, location_name: "Day"))
|
900
|
+
HoursOfOperationConfig.add_member(:start_time, Shapes::ShapeRef.new(shape: HoursOfOperationTimeSlice, location_name: "StartTime"))
|
901
|
+
HoursOfOperationConfig.add_member(:end_time, Shapes::ShapeRef.new(shape: HoursOfOperationTimeSlice, location_name: "EndTime"))
|
902
|
+
HoursOfOperationConfig.struct_class = Types::HoursOfOperationConfig
|
903
|
+
|
904
|
+
HoursOfOperationConfigList.member = Shapes::ShapeRef.new(shape: HoursOfOperationConfig)
|
905
|
+
|
820
906
|
HoursOfOperationSummary.add_member(:id, Shapes::ShapeRef.new(shape: HoursOfOperationId, location_name: "Id"))
|
821
907
|
HoursOfOperationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
822
908
|
HoursOfOperationSummary.add_member(:name, Shapes::ShapeRef.new(shape: HoursOfOperationName, location_name: "Name"))
|
@@ -824,6 +910,10 @@ module Aws::Connect
|
|
824
910
|
|
825
911
|
HoursOfOperationSummaryList.member = Shapes::ShapeRef.new(shape: HoursOfOperationSummary)
|
826
912
|
|
913
|
+
HoursOfOperationTimeSlice.add_member(:hours, Shapes::ShapeRef.new(shape: Hours24Format, location_name: "Hours"))
|
914
|
+
HoursOfOperationTimeSlice.add_member(:minutes, Shapes::ShapeRef.new(shape: MinutesLimit60, location_name: "Minutes"))
|
915
|
+
HoursOfOperationTimeSlice.struct_class = Types::HoursOfOperationTimeSlice
|
916
|
+
|
827
917
|
Instance.add_member(:id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "Id"))
|
828
918
|
Instance.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
829
919
|
Instance.add_member(:identity_management_type, Shapes::ShapeRef.new(shape: DirectoryType, location_name: "IdentityManagementType"))
|
@@ -1008,6 +1098,16 @@ module Aws::Connect
|
|
1008
1098
|
ListPromptsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1009
1099
|
ListPromptsResponse.struct_class = Types::ListPromptsResponse
|
1010
1100
|
|
1101
|
+
ListQueueQuickConnectsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1102
|
+
ListQueueQuickConnectsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
1103
|
+
ListQueueQuickConnectsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
1104
|
+
ListQueueQuickConnectsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
|
1105
|
+
ListQueueQuickConnectsRequest.struct_class = Types::ListQueueQuickConnectsRequest
|
1106
|
+
|
1107
|
+
ListQueueQuickConnectsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1108
|
+
ListQueueQuickConnectsResponse.add_member(:quick_connect_summary_list, Shapes::ShapeRef.new(shape: QuickConnectSummaryList, location_name: "QuickConnectSummaryList"))
|
1109
|
+
ListQueueQuickConnectsResponse.struct_class = Types::ListQueueQuickConnectsResponse
|
1110
|
+
|
1011
1111
|
ListQueuesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1012
1112
|
ListQueuesRequest.add_member(:queue_types, Shapes::ShapeRef.new(shape: QueueTypes, location: "querystring", location_name: "queueTypes"))
|
1013
1113
|
ListQueuesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
@@ -1107,6 +1207,11 @@ module Aws::Connect
|
|
1107
1207
|
|
1108
1208
|
OriginsList.member = Shapes::ShapeRef.new(shape: Origin)
|
1109
1209
|
|
1210
|
+
OutboundCallerConfig.add_member(:outbound_caller_id_name, Shapes::ShapeRef.new(shape: OutboundCallerIdName, location_name: "OutboundCallerIdName"))
|
1211
|
+
OutboundCallerConfig.add_member(:outbound_caller_id_number_id, Shapes::ShapeRef.new(shape: PhoneNumberId, location_name: "OutboundCallerIdNumberId"))
|
1212
|
+
OutboundCallerConfig.add_member(:outbound_flow_id, Shapes::ShapeRef.new(shape: ContactFlowId, location_name: "OutboundFlowId"))
|
1213
|
+
OutboundCallerConfig.struct_class = Types::OutboundCallerConfig
|
1214
|
+
|
1110
1215
|
OutboundContactNotPermittedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
1111
1216
|
OutboundContactNotPermittedException.struct_class = Types::OutboundContactNotPermittedException
|
1112
1217
|
|
@@ -1141,6 +1246,17 @@ module Aws::Connect
|
|
1141
1246
|
|
1142
1247
|
PromptSummaryList.member = Shapes::ShapeRef.new(shape: PromptSummary)
|
1143
1248
|
|
1249
|
+
Queue.add_member(:name, Shapes::ShapeRef.new(shape: CommonNameLength127, location_name: "Name"))
|
1250
|
+
Queue.add_member(:queue_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "QueueArn"))
|
1251
|
+
Queue.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, location_name: "QueueId"))
|
1252
|
+
Queue.add_member(:description, Shapes::ShapeRef.new(shape: QueueDescription, location_name: "Description"))
|
1253
|
+
Queue.add_member(:outbound_caller_config, Shapes::ShapeRef.new(shape: OutboundCallerConfig, location_name: "OutboundCallerConfig"))
|
1254
|
+
Queue.add_member(:hours_of_operation_id, Shapes::ShapeRef.new(shape: HoursOfOperationId, location_name: "HoursOfOperationId"))
|
1255
|
+
Queue.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts, location_name: "MaxContacts", metadata: {"box"=>true}))
|
1256
|
+
Queue.add_member(:status, Shapes::ShapeRef.new(shape: QueueStatus, location_name: "Status"))
|
1257
|
+
Queue.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
1258
|
+
Queue.struct_class = Types::Queue
|
1259
|
+
|
1144
1260
|
QueueQuickConnectConfig.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location_name: "QueueId"))
|
1145
1261
|
QueueQuickConnectConfig.add_member(:contact_flow_id, Shapes::ShapeRef.new(shape: ContactFlowId, required: true, location_name: "ContactFlowId"))
|
1146
1262
|
QueueQuickConnectConfig.struct_class = Types::QueueQuickConnectConfig
|
@@ -1185,6 +1301,8 @@ module Aws::Connect
|
|
1185
1301
|
|
1186
1302
|
QuickConnectTypes.member = Shapes::ShapeRef.new(shape: QuickConnectType)
|
1187
1303
|
|
1304
|
+
QuickConnectsList.member = Shapes::ShapeRef.new(shape: QuickConnectId)
|
1305
|
+
|
1188
1306
|
Reference.add_member(:value, Shapes::ShapeRef.new(shape: ReferenceValue, required: true, location_name: "Value"))
|
1189
1307
|
Reference.add_member(:type, Shapes::ShapeRef.new(shape: ReferenceType, required: true, location_name: "Type"))
|
1190
1308
|
Reference.struct_class = Types::Reference
|
@@ -1386,6 +1504,32 @@ module Aws::Connect
|
|
1386
1504
|
UpdateInstanceStorageConfigRequest.add_member(:storage_config, Shapes::ShapeRef.new(shape: InstanceStorageConfig, required: true, location_name: "StorageConfig"))
|
1387
1505
|
UpdateInstanceStorageConfigRequest.struct_class = Types::UpdateInstanceStorageConfigRequest
|
1388
1506
|
|
1507
|
+
UpdateQueueHoursOfOperationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1508
|
+
UpdateQueueHoursOfOperationRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
1509
|
+
UpdateQueueHoursOfOperationRequest.add_member(:hours_of_operation_id, Shapes::ShapeRef.new(shape: HoursOfOperationId, required: true, location_name: "HoursOfOperationId"))
|
1510
|
+
UpdateQueueHoursOfOperationRequest.struct_class = Types::UpdateQueueHoursOfOperationRequest
|
1511
|
+
|
1512
|
+
UpdateQueueMaxContactsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1513
|
+
UpdateQueueMaxContactsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
1514
|
+
UpdateQueueMaxContactsRequest.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts, location_name: "MaxContacts", metadata: {"box"=>true}))
|
1515
|
+
UpdateQueueMaxContactsRequest.struct_class = Types::UpdateQueueMaxContactsRequest
|
1516
|
+
|
1517
|
+
UpdateQueueNameRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1518
|
+
UpdateQueueNameRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
1519
|
+
UpdateQueueNameRequest.add_member(:name, Shapes::ShapeRef.new(shape: CommonNameLength127, location_name: "Name"))
|
1520
|
+
UpdateQueueNameRequest.add_member(:description, Shapes::ShapeRef.new(shape: QueueDescription, location_name: "Description"))
|
1521
|
+
UpdateQueueNameRequest.struct_class = Types::UpdateQueueNameRequest
|
1522
|
+
|
1523
|
+
UpdateQueueOutboundCallerConfigRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1524
|
+
UpdateQueueOutboundCallerConfigRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
1525
|
+
UpdateQueueOutboundCallerConfigRequest.add_member(:outbound_caller_config, Shapes::ShapeRef.new(shape: OutboundCallerConfig, required: true, location_name: "OutboundCallerConfig"))
|
1526
|
+
UpdateQueueOutboundCallerConfigRequest.struct_class = Types::UpdateQueueOutboundCallerConfigRequest
|
1527
|
+
|
1528
|
+
UpdateQueueStatusRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1529
|
+
UpdateQueueStatusRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
1530
|
+
UpdateQueueStatusRequest.add_member(:status, Shapes::ShapeRef.new(shape: QueueStatus, required: true, location_name: "Status"))
|
1531
|
+
UpdateQueueStatusRequest.struct_class = Types::UpdateQueueStatusRequest
|
1532
|
+
|
1389
1533
|
UpdateQuickConnectConfigRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1390
1534
|
UpdateQuickConnectConfigRequest.add_member(:quick_connect_id, Shapes::ShapeRef.new(shape: QuickConnectId, required: true, location: "uri", location_name: "QuickConnectId"))
|
1391
1535
|
UpdateQuickConnectConfigRequest.add_member(:quick_connect_config, Shapes::ShapeRef.new(shape: QuickConnectConfig, required: true, location_name: "QuickConnectConfig"))
|
@@ -1577,6 +1721,20 @@ module Aws::Connect
|
|
1577
1721
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1578
1722
|
end)
|
1579
1723
|
|
1724
|
+
api.add_operation(:associate_queue_quick_connects, Seahorse::Model::Operation.new.tap do |o|
|
1725
|
+
o.name = "AssociateQueueQuickConnects"
|
1726
|
+
o.http_method = "POST"
|
1727
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/associate-quick-connects"
|
1728
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateQueueQuickConnectsRequest)
|
1729
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1730
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1731
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1732
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1733
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1734
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1735
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
1736
|
+
end)
|
1737
|
+
|
1580
1738
|
api.add_operation(:associate_routing_profile_queues, Seahorse::Model::Operation.new.tap do |o|
|
1581
1739
|
o.name = "AssociateRoutingProfileQueues"
|
1582
1740
|
o.http_method = "POST"
|
@@ -1647,6 +1805,21 @@ module Aws::Connect
|
|
1647
1805
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1648
1806
|
end)
|
1649
1807
|
|
1808
|
+
api.add_operation(:create_queue, Seahorse::Model::Operation.new.tap do |o|
|
1809
|
+
o.name = "CreateQueue"
|
1810
|
+
o.http_method = "PUT"
|
1811
|
+
o.http_request_uri = "/queues/{InstanceId}"
|
1812
|
+
o.input = Shapes::ShapeRef.new(shape: CreateQueueRequest)
|
1813
|
+
o.output = Shapes::ShapeRef.new(shape: CreateQueueResponse)
|
1814
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1815
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1816
|
+
o.errors << Shapes::ShapeRef.new(shape: DuplicateResourceException)
|
1817
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1818
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1819
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1820
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
1821
|
+
end)
|
1822
|
+
|
1650
1823
|
api.add_operation(:create_quick_connect, Seahorse::Model::Operation.new.tap do |o|
|
1651
1824
|
o.name = "CreateQuickConnect"
|
1652
1825
|
o.http_method = "PUT"
|
@@ -1809,6 +1982,19 @@ module Aws::Connect
|
|
1809
1982
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
1810
1983
|
end)
|
1811
1984
|
|
1985
|
+
api.add_operation(:describe_hours_of_operation, Seahorse::Model::Operation.new.tap do |o|
|
1986
|
+
o.name = "DescribeHoursOfOperation"
|
1987
|
+
o.http_method = "GET"
|
1988
|
+
o.http_request_uri = "/hours-of-operations/{InstanceId}/{HoursOfOperationId}"
|
1989
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeHoursOfOperationRequest)
|
1990
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeHoursOfOperationResponse)
|
1991
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1992
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1993
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1994
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1995
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
1996
|
+
end)
|
1997
|
+
|
1812
1998
|
api.add_operation(:describe_instance, Seahorse::Model::Operation.new.tap do |o|
|
1813
1999
|
o.name = "DescribeInstance"
|
1814
2000
|
o.http_method = "GET"
|
@@ -1846,6 +2032,19 @@ module Aws::Connect
|
|
1846
2032
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1847
2033
|
end)
|
1848
2034
|
|
2035
|
+
api.add_operation(:describe_queue, Seahorse::Model::Operation.new.tap do |o|
|
2036
|
+
o.name = "DescribeQueue"
|
2037
|
+
o.http_method = "GET"
|
2038
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}"
|
2039
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeQueueRequest)
|
2040
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeQueueResponse)
|
2041
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2042
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2043
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2044
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2045
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2046
|
+
end)
|
2047
|
+
|
1849
2048
|
api.add_operation(:describe_quick_connect, Seahorse::Model::Operation.new.tap do |o|
|
1850
2049
|
o.name = "DescribeQuickConnect"
|
1851
2050
|
o.http_method = "GET"
|
@@ -1963,6 +2162,19 @@ module Aws::Connect
|
|
1963
2162
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1964
2163
|
end)
|
1965
2164
|
|
2165
|
+
api.add_operation(:disassociate_queue_quick_connects, Seahorse::Model::Operation.new.tap do |o|
|
2166
|
+
o.name = "DisassociateQueueQuickConnects"
|
2167
|
+
o.http_method = "POST"
|
2168
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/disassociate-quick-connects"
|
2169
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateQueueQuickConnectsRequest)
|
2170
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2171
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2172
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2173
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2174
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2175
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2176
|
+
end)
|
2177
|
+
|
1966
2178
|
api.add_operation(:disassociate_routing_profile_queues, Seahorse::Model::Operation.new.tap do |o|
|
1967
2179
|
o.name = "DisassociateRoutingProfileQueues"
|
1968
2180
|
o.http_method = "POST"
|
@@ -2257,6 +2469,25 @@ module Aws::Connect
|
|
2257
2469
|
)
|
2258
2470
|
end)
|
2259
2471
|
|
2472
|
+
api.add_operation(:list_queue_quick_connects, Seahorse::Model::Operation.new.tap do |o|
|
2473
|
+
o.name = "ListQueueQuickConnects"
|
2474
|
+
o.http_method = "GET"
|
2475
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/quick-connects"
|
2476
|
+
o.input = Shapes::ShapeRef.new(shape: ListQueueQuickConnectsRequest)
|
2477
|
+
o.output = Shapes::ShapeRef.new(shape: ListQueueQuickConnectsResponse)
|
2478
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2479
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2480
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2481
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2482
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2483
|
+
o[:pager] = Aws::Pager.new(
|
2484
|
+
limit_key: "max_results",
|
2485
|
+
tokens: {
|
2486
|
+
"next_token" => "next_token"
|
2487
|
+
}
|
2488
|
+
)
|
2489
|
+
end)
|
2490
|
+
|
2260
2491
|
api.add_operation(:list_queues, Seahorse::Model::Operation.new.tap do |o|
|
2261
2492
|
o.name = "ListQueues"
|
2262
2493
|
o.http_method = "GET"
|
@@ -2632,6 +2863,72 @@ module Aws::Connect
|
|
2632
2863
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2633
2864
|
end)
|
2634
2865
|
|
2866
|
+
api.add_operation(:update_queue_hours_of_operation, Seahorse::Model::Operation.new.tap do |o|
|
2867
|
+
o.name = "UpdateQueueHoursOfOperation"
|
2868
|
+
o.http_method = "POST"
|
2869
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/hours-of-operation"
|
2870
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateQueueHoursOfOperationRequest)
|
2871
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2872
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2873
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2874
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2875
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2876
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2877
|
+
end)
|
2878
|
+
|
2879
|
+
api.add_operation(:update_queue_max_contacts, Seahorse::Model::Operation.new.tap do |o|
|
2880
|
+
o.name = "UpdateQueueMaxContacts"
|
2881
|
+
o.http_method = "POST"
|
2882
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/max-contacts"
|
2883
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateQueueMaxContactsRequest)
|
2884
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2885
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2886
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2887
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2888
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2889
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2890
|
+
end)
|
2891
|
+
|
2892
|
+
api.add_operation(:update_queue_name, Seahorse::Model::Operation.new.tap do |o|
|
2893
|
+
o.name = "UpdateQueueName"
|
2894
|
+
o.http_method = "POST"
|
2895
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/name"
|
2896
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateQueueNameRequest)
|
2897
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2898
|
+
o.errors << Shapes::ShapeRef.new(shape: DuplicateResourceException)
|
2899
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2900
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2901
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2902
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2903
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2904
|
+
end)
|
2905
|
+
|
2906
|
+
api.add_operation(:update_queue_outbound_caller_config, Seahorse::Model::Operation.new.tap do |o|
|
2907
|
+
o.name = "UpdateQueueOutboundCallerConfig"
|
2908
|
+
o.http_method = "POST"
|
2909
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/outbound-caller-config"
|
2910
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateQueueOutboundCallerConfigRequest)
|
2911
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2912
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2913
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2914
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2915
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2916
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2917
|
+
end)
|
2918
|
+
|
2919
|
+
api.add_operation(:update_queue_status, Seahorse::Model::Operation.new.tap do |o|
|
2920
|
+
o.name = "UpdateQueueStatus"
|
2921
|
+
o.http_method = "POST"
|
2922
|
+
o.http_request_uri = "/queues/{InstanceId}/{QueueId}/status"
|
2923
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateQueueStatusRequest)
|
2924
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2925
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2926
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
2927
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2928
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2929
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2930
|
+
end)
|
2931
|
+
|
2635
2932
|
api.add_operation(:update_quick_connect_config, Seahorse::Model::Operation.new.tap do |o|
|
2636
2933
|
o.name = "UpdateQuickConnectConfig"
|
2637
2934
|
o.http_method = "POST"
|