aws-sdk-connect 1.85.0 → 1.86.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 +340 -5
- data/lib/aws-sdk-connect/client_api.rb +224 -0
- data/lib/aws-sdk-connect/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-connect/endpoint_provider.rb +73 -74
- data/lib/aws-sdk-connect/endpoints.rb +70 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-connect/types.rb +525 -2874
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -291,6 +291,20 @@ module Aws::Connect
|
|
291
291
|
end
|
292
292
|
end
|
293
293
|
|
294
|
+
class CreateRule
|
295
|
+
def self.build(context)
|
296
|
+
unless context.config.regional_endpoint
|
297
|
+
endpoint = context.config.endpoint.to_s
|
298
|
+
end
|
299
|
+
Aws::Connect::EndpointParameters.new(
|
300
|
+
region: context.config.region,
|
301
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
302
|
+
use_fips: context.config.use_fips_endpoint,
|
303
|
+
endpoint: endpoint,
|
304
|
+
)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
294
308
|
class CreateSecurityProfile
|
295
309
|
def self.build(context)
|
296
310
|
unless context.config.regional_endpoint
|
@@ -473,6 +487,20 @@ module Aws::Connect
|
|
473
487
|
end
|
474
488
|
end
|
475
489
|
|
490
|
+
class DeleteRule
|
491
|
+
def self.build(context)
|
492
|
+
unless context.config.regional_endpoint
|
493
|
+
endpoint = context.config.endpoint.to_s
|
494
|
+
end
|
495
|
+
Aws::Connect::EndpointParameters.new(
|
496
|
+
region: context.config.region,
|
497
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
498
|
+
use_fips: context.config.use_fips_endpoint,
|
499
|
+
endpoint: endpoint,
|
500
|
+
)
|
501
|
+
end
|
502
|
+
end
|
503
|
+
|
476
504
|
class DeleteSecurityProfile
|
477
505
|
def self.build(context)
|
478
506
|
unless context.config.regional_endpoint
|
@@ -739,6 +767,20 @@ module Aws::Connect
|
|
739
767
|
end
|
740
768
|
end
|
741
769
|
|
770
|
+
class DescribeRule
|
771
|
+
def self.build(context)
|
772
|
+
unless context.config.regional_endpoint
|
773
|
+
endpoint = context.config.endpoint.to_s
|
774
|
+
end
|
775
|
+
Aws::Connect::EndpointParameters.new(
|
776
|
+
region: context.config.region,
|
777
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
778
|
+
use_fips: context.config.use_fips_endpoint,
|
779
|
+
endpoint: endpoint,
|
780
|
+
)
|
781
|
+
end
|
782
|
+
end
|
783
|
+
|
742
784
|
class DescribeSecurityProfile
|
743
785
|
def self.build(context)
|
744
786
|
unless context.config.regional_endpoint
|
@@ -1369,6 +1411,20 @@ module Aws::Connect
|
|
1369
1411
|
end
|
1370
1412
|
end
|
1371
1413
|
|
1414
|
+
class ListRules
|
1415
|
+
def self.build(context)
|
1416
|
+
unless context.config.regional_endpoint
|
1417
|
+
endpoint = context.config.endpoint.to_s
|
1418
|
+
end
|
1419
|
+
Aws::Connect::EndpointParameters.new(
|
1420
|
+
region: context.config.region,
|
1421
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1422
|
+
use_fips: context.config.use_fips_endpoint,
|
1423
|
+
endpoint: endpoint,
|
1424
|
+
)
|
1425
|
+
end
|
1426
|
+
end
|
1427
|
+
|
1372
1428
|
class ListSecurityKeys
|
1373
1429
|
def self.build(context)
|
1374
1430
|
unless context.config.regional_endpoint
|
@@ -2153,6 +2209,20 @@ module Aws::Connect
|
|
2153
2209
|
end
|
2154
2210
|
end
|
2155
2211
|
|
2212
|
+
class UpdateRule
|
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
|
+
|
2156
2226
|
class UpdateSecurityProfile
|
2157
2227
|
def self.build(context)
|
2158
2228
|
unless context.config.regional_endpoint
|
@@ -96,6 +96,8 @@ module Aws::Connect
|
|
96
96
|
Aws::Connect::Endpoints::CreateQuickConnect.build(context)
|
97
97
|
when :create_routing_profile
|
98
98
|
Aws::Connect::Endpoints::CreateRoutingProfile.build(context)
|
99
|
+
when :create_rule
|
100
|
+
Aws::Connect::Endpoints::CreateRule.build(context)
|
99
101
|
when :create_security_profile
|
100
102
|
Aws::Connect::Endpoints::CreateSecurityProfile.build(context)
|
101
103
|
when :create_task_template
|
@@ -122,6 +124,8 @@ module Aws::Connect
|
|
122
124
|
Aws::Connect::Endpoints::DeleteIntegrationAssociation.build(context)
|
123
125
|
when :delete_quick_connect
|
124
126
|
Aws::Connect::Endpoints::DeleteQuickConnect.build(context)
|
127
|
+
when :delete_rule
|
128
|
+
Aws::Connect::Endpoints::DeleteRule.build(context)
|
125
129
|
when :delete_security_profile
|
126
130
|
Aws::Connect::Endpoints::DeleteSecurityProfile.build(context)
|
127
131
|
when :delete_task_template
|
@@ -160,6 +164,8 @@ module Aws::Connect
|
|
160
164
|
Aws::Connect::Endpoints::DescribeQuickConnect.build(context)
|
161
165
|
when :describe_routing_profile
|
162
166
|
Aws::Connect::Endpoints::DescribeRoutingProfile.build(context)
|
167
|
+
when :describe_rule
|
168
|
+
Aws::Connect::Endpoints::DescribeRule.build(context)
|
163
169
|
when :describe_security_profile
|
164
170
|
Aws::Connect::Endpoints::DescribeSecurityProfile.build(context)
|
165
171
|
when :describe_traffic_distribution_group
|
@@ -250,6 +256,8 @@ module Aws::Connect
|
|
250
256
|
Aws::Connect::Endpoints::ListRoutingProfileQueues.build(context)
|
251
257
|
when :list_routing_profiles
|
252
258
|
Aws::Connect::Endpoints::ListRoutingProfiles.build(context)
|
259
|
+
when :list_rules
|
260
|
+
Aws::Connect::Endpoints::ListRules.build(context)
|
253
261
|
when :list_security_keys
|
254
262
|
Aws::Connect::Endpoints::ListSecurityKeys.build(context)
|
255
263
|
when :list_security_profile_permissions
|
@@ -362,6 +370,8 @@ module Aws::Connect
|
|
362
370
|
Aws::Connect::Endpoints::UpdateRoutingProfileName.build(context)
|
363
371
|
when :update_routing_profile_queues
|
364
372
|
Aws::Connect::Endpoints::UpdateRoutingProfileQueues.build(context)
|
373
|
+
when :update_rule
|
374
|
+
Aws::Connect::Endpoints::UpdateRule.build(context)
|
365
375
|
when :update_security_profile
|
366
376
|
Aws::Connect::Endpoints::UpdateSecurityProfile.build(context)
|
367
377
|
when :update_task_template
|