aws-sdk-connect 1.102.0 → 1.103.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +1024 -1
- data/lib/aws-sdk-connect/client_api.rb +630 -0
- data/lib/aws-sdk-connect/endpoints.rb +196 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +28 -0
- data/lib/aws-sdk-connect/types.rb +1706 -87
- data/lib/aws-sdk-connect.rb +2 -2
- metadata +2 -2
@@ -11,6 +11,20 @@
|
|
11
11
|
module Aws::Connect
|
12
12
|
module Endpoints
|
13
13
|
|
14
|
+
class ActivateEvaluationForm
|
15
|
+
def self.build(context)
|
16
|
+
unless context.config.regional_endpoint
|
17
|
+
endpoint = context.config.endpoint.to_s
|
18
|
+
end
|
19
|
+
Aws::Connect::EndpointParameters.new(
|
20
|
+
region: context.config.region,
|
21
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
22
|
+
use_fips: context.config.use_fips_endpoint,
|
23
|
+
endpoint: endpoint,
|
24
|
+
)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
14
28
|
class AssociateApprovedOrigin
|
15
29
|
def self.build(context)
|
16
30
|
unless context.config.regional_endpoint
|
@@ -207,6 +221,20 @@ module Aws::Connect
|
|
207
221
|
end
|
208
222
|
end
|
209
223
|
|
224
|
+
class CreateEvaluationForm
|
225
|
+
def self.build(context)
|
226
|
+
unless context.config.regional_endpoint
|
227
|
+
endpoint = context.config.endpoint.to_s
|
228
|
+
end
|
229
|
+
Aws::Connect::EndpointParameters.new(
|
230
|
+
region: context.config.region,
|
231
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
232
|
+
use_fips: context.config.use_fips_endpoint,
|
233
|
+
endpoint: endpoint,
|
234
|
+
)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
210
238
|
class CreateHoursOfOperation
|
211
239
|
def self.build(context)
|
212
240
|
unless context.config.regional_endpoint
|
@@ -417,6 +445,34 @@ module Aws::Connect
|
|
417
445
|
end
|
418
446
|
end
|
419
447
|
|
448
|
+
class DeactivateEvaluationForm
|
449
|
+
def self.build(context)
|
450
|
+
unless context.config.regional_endpoint
|
451
|
+
endpoint = context.config.endpoint.to_s
|
452
|
+
end
|
453
|
+
Aws::Connect::EndpointParameters.new(
|
454
|
+
region: context.config.region,
|
455
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
456
|
+
use_fips: context.config.use_fips_endpoint,
|
457
|
+
endpoint: endpoint,
|
458
|
+
)
|
459
|
+
end
|
460
|
+
end
|
461
|
+
|
462
|
+
class DeleteContactEvaluation
|
463
|
+
def self.build(context)
|
464
|
+
unless context.config.regional_endpoint
|
465
|
+
endpoint = context.config.endpoint.to_s
|
466
|
+
end
|
467
|
+
Aws::Connect::EndpointParameters.new(
|
468
|
+
region: context.config.region,
|
469
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
470
|
+
use_fips: context.config.use_fips_endpoint,
|
471
|
+
endpoint: endpoint,
|
472
|
+
)
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
420
476
|
class DeleteContactFlow
|
421
477
|
def self.build(context)
|
422
478
|
unless context.config.regional_endpoint
|
@@ -445,6 +501,20 @@ module Aws::Connect
|
|
445
501
|
end
|
446
502
|
end
|
447
503
|
|
504
|
+
class DeleteEvaluationForm
|
505
|
+
def self.build(context)
|
506
|
+
unless context.config.regional_endpoint
|
507
|
+
endpoint = context.config.endpoint.to_s
|
508
|
+
end
|
509
|
+
Aws::Connect::EndpointParameters.new(
|
510
|
+
region: context.config.region,
|
511
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
512
|
+
use_fips: context.config.use_fips_endpoint,
|
513
|
+
endpoint: endpoint,
|
514
|
+
)
|
515
|
+
end
|
516
|
+
end
|
517
|
+
|
448
518
|
class DeleteHoursOfOperation
|
449
519
|
def self.build(context)
|
450
520
|
unless context.config.regional_endpoint
|
@@ -641,6 +711,20 @@ module Aws::Connect
|
|
641
711
|
end
|
642
712
|
end
|
643
713
|
|
714
|
+
class DescribeContactEvaluation
|
715
|
+
def self.build(context)
|
716
|
+
unless context.config.regional_endpoint
|
717
|
+
endpoint = context.config.endpoint.to_s
|
718
|
+
end
|
719
|
+
Aws::Connect::EndpointParameters.new(
|
720
|
+
region: context.config.region,
|
721
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
722
|
+
use_fips: context.config.use_fips_endpoint,
|
723
|
+
endpoint: endpoint,
|
724
|
+
)
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
644
728
|
class DescribeContactFlow
|
645
729
|
def self.build(context)
|
646
730
|
unless context.config.regional_endpoint
|
@@ -669,6 +753,20 @@ module Aws::Connect
|
|
669
753
|
end
|
670
754
|
end
|
671
755
|
|
756
|
+
class DescribeEvaluationForm
|
757
|
+
def self.build(context)
|
758
|
+
unless context.config.regional_endpoint
|
759
|
+
endpoint = context.config.endpoint.to_s
|
760
|
+
end
|
761
|
+
Aws::Connect::EndpointParameters.new(
|
762
|
+
region: context.config.region,
|
763
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
764
|
+
use_fips: context.config.use_fips_endpoint,
|
765
|
+
endpoint: endpoint,
|
766
|
+
)
|
767
|
+
end
|
768
|
+
end
|
769
|
+
|
672
770
|
class DescribeHoursOfOperation
|
673
771
|
def self.build(context)
|
674
772
|
unless context.config.regional_endpoint
|
@@ -1173,6 +1271,20 @@ module Aws::Connect
|
|
1173
1271
|
end
|
1174
1272
|
end
|
1175
1273
|
|
1274
|
+
class ListContactEvaluations
|
1275
|
+
def self.build(context)
|
1276
|
+
unless context.config.regional_endpoint
|
1277
|
+
endpoint = context.config.endpoint.to_s
|
1278
|
+
end
|
1279
|
+
Aws::Connect::EndpointParameters.new(
|
1280
|
+
region: context.config.region,
|
1281
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1282
|
+
use_fips: context.config.use_fips_endpoint,
|
1283
|
+
endpoint: endpoint,
|
1284
|
+
)
|
1285
|
+
end
|
1286
|
+
end
|
1287
|
+
|
1176
1288
|
class ListContactFlowModules
|
1177
1289
|
def self.build(context)
|
1178
1290
|
unless context.config.regional_endpoint
|
@@ -1229,6 +1341,34 @@ module Aws::Connect
|
|
1229
1341
|
end
|
1230
1342
|
end
|
1231
1343
|
|
1344
|
+
class ListEvaluationFormVersions
|
1345
|
+
def self.build(context)
|
1346
|
+
unless context.config.regional_endpoint
|
1347
|
+
endpoint = context.config.endpoint.to_s
|
1348
|
+
end
|
1349
|
+
Aws::Connect::EndpointParameters.new(
|
1350
|
+
region: context.config.region,
|
1351
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1352
|
+
use_fips: context.config.use_fips_endpoint,
|
1353
|
+
endpoint: endpoint,
|
1354
|
+
)
|
1355
|
+
end
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
class ListEvaluationForms
|
1359
|
+
def self.build(context)
|
1360
|
+
unless context.config.regional_endpoint
|
1361
|
+
endpoint = context.config.endpoint.to_s
|
1362
|
+
end
|
1363
|
+
Aws::Connect::EndpointParameters.new(
|
1364
|
+
region: context.config.region,
|
1365
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1366
|
+
use_fips: context.config.use_fips_endpoint,
|
1367
|
+
endpoint: endpoint,
|
1368
|
+
)
|
1369
|
+
end
|
1370
|
+
end
|
1371
|
+
|
1232
1372
|
class ListHoursOfOperations
|
1233
1373
|
def self.build(context)
|
1234
1374
|
unless context.config.regional_endpoint
|
@@ -1747,6 +1887,20 @@ module Aws::Connect
|
|
1747
1887
|
end
|
1748
1888
|
end
|
1749
1889
|
|
1890
|
+
class StartContactEvaluation
|
1891
|
+
def self.build(context)
|
1892
|
+
unless context.config.regional_endpoint
|
1893
|
+
endpoint = context.config.endpoint.to_s
|
1894
|
+
end
|
1895
|
+
Aws::Connect::EndpointParameters.new(
|
1896
|
+
region: context.config.region,
|
1897
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1898
|
+
use_fips: context.config.use_fips_endpoint,
|
1899
|
+
endpoint: endpoint,
|
1900
|
+
)
|
1901
|
+
end
|
1902
|
+
end
|
1903
|
+
|
1750
1904
|
class StartContactRecording
|
1751
1905
|
def self.build(context)
|
1752
1906
|
unless context.config.regional_endpoint
|
@@ -1845,6 +1999,20 @@ module Aws::Connect
|
|
1845
1999
|
end
|
1846
2000
|
end
|
1847
2001
|
|
2002
|
+
class SubmitContactEvaluation
|
2003
|
+
def self.build(context)
|
2004
|
+
unless context.config.regional_endpoint
|
2005
|
+
endpoint = context.config.endpoint.to_s
|
2006
|
+
end
|
2007
|
+
Aws::Connect::EndpointParameters.new(
|
2008
|
+
region: context.config.region,
|
2009
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2010
|
+
use_fips: context.config.use_fips_endpoint,
|
2011
|
+
endpoint: endpoint,
|
2012
|
+
)
|
2013
|
+
end
|
2014
|
+
end
|
2015
|
+
|
1848
2016
|
class SuspendContactRecording
|
1849
2017
|
def self.build(context)
|
1850
2018
|
unless context.config.regional_endpoint
|
@@ -1943,6 +2111,20 @@ module Aws::Connect
|
|
1943
2111
|
end
|
1944
2112
|
end
|
1945
2113
|
|
2114
|
+
class UpdateContactEvaluation
|
2115
|
+
def self.build(context)
|
2116
|
+
unless context.config.regional_endpoint
|
2117
|
+
endpoint = context.config.endpoint.to_s
|
2118
|
+
end
|
2119
|
+
Aws::Connect::EndpointParameters.new(
|
2120
|
+
region: context.config.region,
|
2121
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2122
|
+
use_fips: context.config.use_fips_endpoint,
|
2123
|
+
endpoint: endpoint,
|
2124
|
+
)
|
2125
|
+
end
|
2126
|
+
end
|
2127
|
+
|
1946
2128
|
class UpdateContactFlowContent
|
1947
2129
|
def self.build(context)
|
1948
2130
|
unless context.config.regional_endpoint
|
@@ -2027,6 +2209,20 @@ module Aws::Connect
|
|
2027
2209
|
end
|
2028
2210
|
end
|
2029
2211
|
|
2212
|
+
class UpdateEvaluationForm
|
2213
|
+
def self.build(context)
|
2214
|
+
unless context.config.regional_endpoint
|
2215
|
+
endpoint = context.config.endpoint.to_s
|
2216
|
+
end
|
2217
|
+
Aws::Connect::EndpointParameters.new(
|
2218
|
+
region: context.config.region,
|
2219
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2220
|
+
use_fips: context.config.use_fips_endpoint,
|
2221
|
+
endpoint: endpoint,
|
2222
|
+
)
|
2223
|
+
end
|
2224
|
+
end
|
2225
|
+
|
2030
2226
|
class UpdateHoursOfOperation
|
2031
2227
|
def self.build(context)
|
2032
2228
|
unless context.config.regional_endpoint
|
@@ -56,6 +56,8 @@ module Aws::Connect
|
|
56
56
|
|
57
57
|
def parameters_for_operation(context)
|
58
58
|
case context.operation_name
|
59
|
+
when :activate_evaluation_form
|
60
|
+
Aws::Connect::Endpoints::ActivateEvaluationForm.build(context)
|
59
61
|
when :associate_approved_origin
|
60
62
|
Aws::Connect::Endpoints::AssociateApprovedOrigin.build(context)
|
61
63
|
when :associate_bot
|
@@ -84,6 +86,8 @@ module Aws::Connect
|
|
84
86
|
Aws::Connect::Endpoints::CreateContactFlow.build(context)
|
85
87
|
when :create_contact_flow_module
|
86
88
|
Aws::Connect::Endpoints::CreateContactFlowModule.build(context)
|
89
|
+
when :create_evaluation_form
|
90
|
+
Aws::Connect::Endpoints::CreateEvaluationForm.build(context)
|
87
91
|
when :create_hours_of_operation
|
88
92
|
Aws::Connect::Endpoints::CreateHoursOfOperation.build(context)
|
89
93
|
when :create_instance
|
@@ -114,10 +118,16 @@ module Aws::Connect
|
|
114
118
|
Aws::Connect::Endpoints::CreateUserHierarchyGroup.build(context)
|
115
119
|
when :create_vocabulary
|
116
120
|
Aws::Connect::Endpoints::CreateVocabulary.build(context)
|
121
|
+
when :deactivate_evaluation_form
|
122
|
+
Aws::Connect::Endpoints::DeactivateEvaluationForm.build(context)
|
123
|
+
when :delete_contact_evaluation
|
124
|
+
Aws::Connect::Endpoints::DeleteContactEvaluation.build(context)
|
117
125
|
when :delete_contact_flow
|
118
126
|
Aws::Connect::Endpoints::DeleteContactFlow.build(context)
|
119
127
|
when :delete_contact_flow_module
|
120
128
|
Aws::Connect::Endpoints::DeleteContactFlowModule.build(context)
|
129
|
+
when :delete_evaluation_form
|
130
|
+
Aws::Connect::Endpoints::DeleteEvaluationForm.build(context)
|
121
131
|
when :delete_hours_of_operation
|
122
132
|
Aws::Connect::Endpoints::DeleteHoursOfOperation.build(context)
|
123
133
|
when :delete_instance
|
@@ -146,10 +156,14 @@ module Aws::Connect
|
|
146
156
|
Aws::Connect::Endpoints::DescribeAgentStatus.build(context)
|
147
157
|
when :describe_contact
|
148
158
|
Aws::Connect::Endpoints::DescribeContact.build(context)
|
159
|
+
when :describe_contact_evaluation
|
160
|
+
Aws::Connect::Endpoints::DescribeContactEvaluation.build(context)
|
149
161
|
when :describe_contact_flow
|
150
162
|
Aws::Connect::Endpoints::DescribeContactFlow.build(context)
|
151
163
|
when :describe_contact_flow_module
|
152
164
|
Aws::Connect::Endpoints::DescribeContactFlowModule.build(context)
|
165
|
+
when :describe_evaluation_form
|
166
|
+
Aws::Connect::Endpoints::DescribeEvaluationForm.build(context)
|
153
167
|
when :describe_hours_of_operation
|
154
168
|
Aws::Connect::Endpoints::DescribeHoursOfOperation.build(context)
|
155
169
|
when :describe_instance
|
@@ -222,6 +236,8 @@ module Aws::Connect
|
|
222
236
|
Aws::Connect::Endpoints::ListApprovedOrigins.build(context)
|
223
237
|
when :list_bots
|
224
238
|
Aws::Connect::Endpoints::ListBots.build(context)
|
239
|
+
when :list_contact_evaluations
|
240
|
+
Aws::Connect::Endpoints::ListContactEvaluations.build(context)
|
225
241
|
when :list_contact_flow_modules
|
226
242
|
Aws::Connect::Endpoints::ListContactFlowModules.build(context)
|
227
243
|
when :list_contact_flows
|
@@ -230,6 +246,10 @@ module Aws::Connect
|
|
230
246
|
Aws::Connect::Endpoints::ListContactReferences.build(context)
|
231
247
|
when :list_default_vocabularies
|
232
248
|
Aws::Connect::Endpoints::ListDefaultVocabularies.build(context)
|
249
|
+
when :list_evaluation_form_versions
|
250
|
+
Aws::Connect::Endpoints::ListEvaluationFormVersions.build(context)
|
251
|
+
when :list_evaluation_forms
|
252
|
+
Aws::Connect::Endpoints::ListEvaluationForms.build(context)
|
233
253
|
when :list_hours_of_operations
|
234
254
|
Aws::Connect::Endpoints::ListHoursOfOperations.build(context)
|
235
255
|
when :list_instance_attributes
|
@@ -304,6 +324,8 @@ module Aws::Connect
|
|
304
324
|
Aws::Connect::Endpoints::SearchVocabularies.build(context)
|
305
325
|
when :start_chat_contact
|
306
326
|
Aws::Connect::Endpoints::StartChatContact.build(context)
|
327
|
+
when :start_contact_evaluation
|
328
|
+
Aws::Connect::Endpoints::StartContactEvaluation.build(context)
|
307
329
|
when :start_contact_recording
|
308
330
|
Aws::Connect::Endpoints::StartContactRecording.build(context)
|
309
331
|
when :start_contact_streaming
|
@@ -318,6 +340,8 @@ module Aws::Connect
|
|
318
340
|
Aws::Connect::Endpoints::StopContactRecording.build(context)
|
319
341
|
when :stop_contact_streaming
|
320
342
|
Aws::Connect::Endpoints::StopContactStreaming.build(context)
|
343
|
+
when :submit_contact_evaluation
|
344
|
+
Aws::Connect::Endpoints::SubmitContactEvaluation.build(context)
|
321
345
|
when :suspend_contact_recording
|
322
346
|
Aws::Connect::Endpoints::SuspendContactRecording.build(context)
|
323
347
|
when :tag_resource
|
@@ -332,6 +356,8 @@ module Aws::Connect
|
|
332
356
|
Aws::Connect::Endpoints::UpdateContact.build(context)
|
333
357
|
when :update_contact_attributes
|
334
358
|
Aws::Connect::Endpoints::UpdateContactAttributes.build(context)
|
359
|
+
when :update_contact_evaluation
|
360
|
+
Aws::Connect::Endpoints::UpdateContactEvaluation.build(context)
|
335
361
|
when :update_contact_flow_content
|
336
362
|
Aws::Connect::Endpoints::UpdateContactFlowContent.build(context)
|
337
363
|
when :update_contact_flow_metadata
|
@@ -344,6 +370,8 @@ module Aws::Connect
|
|
344
370
|
Aws::Connect::Endpoints::UpdateContactFlowName.build(context)
|
345
371
|
when :update_contact_schedule
|
346
372
|
Aws::Connect::Endpoints::UpdateContactSchedule.build(context)
|
373
|
+
when :update_evaluation_form
|
374
|
+
Aws::Connect::Endpoints::UpdateEvaluationForm.build(context)
|
347
375
|
when :update_hours_of_operation
|
348
376
|
Aws::Connect::Endpoints::UpdateHoursOfOperation.build(context)
|
349
377
|
when :update_instance_attribute
|