aws-sdk-connectcampaignsv2 1.24.0 → 1.25.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-connectcampaignsv2/client.rb +4 -1
- data/lib/aws-sdk-connectcampaignsv2/client_api.rb +2 -0
- data/lib/aws-sdk-connectcampaignsv2/types.rb +6 -1
- data/lib/aws-sdk-connectcampaignsv2.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c92141d6a46255b0659ddeb3ddae663183db17cdb0a8e22da7c3c52bb13ef8ad
|
|
4
|
+
data.tar.gz: 756f566c5f20549fc4088d8c06bfcd1d83dcaf7020f02b2b701024f9c45ccc1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3eb5b8f952e264162d2cfe4fd33a09e0a3f5adcfa7292fb24f3de5fe09f067f89b2d0ae9f447cf8e65730aeb94317e62e50d3d06cbd3ce61312b7d09d8defaa2
|
|
7
|
+
data.tar.gz: e90690548ed1a720375d6993f828a0643f606893faebf2819b3d08cf8037a71ffd49800e1568fcd85f928e0e618e5bcf164952237f56253a8cee5c7e2c7aaf34
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.25.0
|
|
@@ -610,6 +610,7 @@ module Aws::ConnectCampaignsV2
|
|
|
610
610
|
# local_time_zone_config: { # required
|
|
611
611
|
# default_time_zone: "TimeZone",
|
|
612
612
|
# local_time_zone_detection: ["ZIP_CODE"], # accepts ZIP_CODE, AREA_CODE
|
|
613
|
+
# local_time_zone_detection_scope: "PRIMARY_ONLY", # accepts PRIMARY_ONLY, ALL_AVAILABLE
|
|
613
614
|
# },
|
|
614
615
|
# telephony: {
|
|
615
616
|
# open_hours: { # required
|
|
@@ -997,6 +998,7 @@ module Aws::ConnectCampaignsV2
|
|
|
997
998
|
# resp.campaign.communication_time_config.local_time_zone_config.default_time_zone #=> String
|
|
998
999
|
# resp.campaign.communication_time_config.local_time_zone_config.local_time_zone_detection #=> Array
|
|
999
1000
|
# resp.campaign.communication_time_config.local_time_zone_config.local_time_zone_detection[0] #=> String, one of "ZIP_CODE", "AREA_CODE"
|
|
1001
|
+
# resp.campaign.communication_time_config.local_time_zone_config.local_time_zone_detection_scope #=> String, one of "PRIMARY_ONLY", "ALL_AVAILABLE"
|
|
1000
1002
|
# resp.campaign.communication_time_config.telephony.open_hours.daily_hours #=> Hash
|
|
1001
1003
|
# resp.campaign.communication_time_config.telephony.open_hours.daily_hours["DayOfWeek"] #=> Array
|
|
1002
1004
|
# resp.campaign.communication_time_config.telephony.open_hours.daily_hours["DayOfWeek"][0].start_time #=> String
|
|
@@ -1872,6 +1874,7 @@ module Aws::ConnectCampaignsV2
|
|
|
1872
1874
|
# local_time_zone_config: { # required
|
|
1873
1875
|
# default_time_zone: "TimeZone",
|
|
1874
1876
|
# local_time_zone_detection: ["ZIP_CODE"], # accepts ZIP_CODE, AREA_CODE
|
|
1877
|
+
# local_time_zone_detection_scope: "PRIMARY_ONLY", # accepts PRIMARY_ONLY, ALL_AVAILABLE
|
|
1875
1878
|
# },
|
|
1876
1879
|
# telephony: {
|
|
1877
1880
|
# open_hours: { # required
|
|
@@ -2131,7 +2134,7 @@ module Aws::ConnectCampaignsV2
|
|
|
2131
2134
|
tracer: tracer
|
|
2132
2135
|
)
|
|
2133
2136
|
context[:gem_name] = 'aws-sdk-connectcampaignsv2'
|
|
2134
|
-
context[:gem_version] = '1.
|
|
2137
|
+
context[:gem_version] = '1.25.0'
|
|
2135
2138
|
Seahorse::Client::Request.new(handlers, context)
|
|
2136
2139
|
end
|
|
2137
2140
|
|
|
@@ -136,6 +136,7 @@ module Aws::ConnectCampaignsV2
|
|
|
136
136
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
137
137
|
LocalTimeZoneConfig = Shapes::StructureShape.new(name: 'LocalTimeZoneConfig')
|
|
138
138
|
LocalTimeZoneDetection = Shapes::ListShape.new(name: 'LocalTimeZoneDetection')
|
|
139
|
+
LocalTimeZoneDetectionScope = Shapes::StringShape.new(name: 'LocalTimeZoneDetectionScope')
|
|
139
140
|
LocalTimeZoneDetectionType = Shapes::StringShape.new(name: 'LocalTimeZoneDetectionType')
|
|
140
141
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
141
142
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
@@ -568,6 +569,7 @@ module Aws::ConnectCampaignsV2
|
|
|
568
569
|
|
|
569
570
|
LocalTimeZoneConfig.add_member(:default_time_zone, Shapes::ShapeRef.new(shape: TimeZone, location_name: "defaultTimeZone"))
|
|
570
571
|
LocalTimeZoneConfig.add_member(:local_time_zone_detection, Shapes::ShapeRef.new(shape: LocalTimeZoneDetection, location_name: "localTimeZoneDetection"))
|
|
572
|
+
LocalTimeZoneConfig.add_member(:local_time_zone_detection_scope, Shapes::ShapeRef.new(shape: LocalTimeZoneDetectionScope, location_name: "localTimeZoneDetectionScope"))
|
|
571
573
|
LocalTimeZoneConfig.struct_class = Types::LocalTimeZoneConfig
|
|
572
574
|
|
|
573
575
|
LocalTimeZoneDetection.member = Shapes::ShapeRef.new(shape: LocalTimeZoneDetectionType)
|
|
@@ -1489,11 +1489,16 @@ module Aws::ConnectCampaignsV2
|
|
|
1489
1489
|
# Local TimeZone Detection method list
|
|
1490
1490
|
# @return [Array<String>]
|
|
1491
1491
|
#
|
|
1492
|
+
# @!attribute [rw] local_time_zone_detection_scope
|
|
1493
|
+
# Local TimeZone Detection scope.
|
|
1494
|
+
# @return [String]
|
|
1495
|
+
#
|
|
1492
1496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaignsv2-2024-04-23/LocalTimeZoneConfig AWS API Documentation
|
|
1493
1497
|
#
|
|
1494
1498
|
class LocalTimeZoneConfig < Struct.new(
|
|
1495
1499
|
:default_time_zone,
|
|
1496
|
-
:local_time_zone_detection
|
|
1500
|
+
:local_time_zone_detection,
|
|
1501
|
+
:local_time_zone_detection_scope)
|
|
1497
1502
|
SENSITIVE = []
|
|
1498
1503
|
include Aws::Structure
|
|
1499
1504
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -174,7 +174,8 @@ module Aws
|
|
|
174
174
|
?communication_time_config: {
|
|
175
175
|
local_time_zone_config: {
|
|
176
176
|
default_time_zone: ::String?,
|
|
177
|
-
local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]
|
|
177
|
+
local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]?,
|
|
178
|
+
local_time_zone_detection_scope: ("PRIMARY_ONLY" | "ALL_AVAILABLE")?
|
|
178
179
|
},
|
|
179
180
|
telephony: {
|
|
180
181
|
open_hours: {
|
|
@@ -683,7 +684,8 @@ module Aws
|
|
|
683
684
|
communication_time_config: {
|
|
684
685
|
local_time_zone_config: {
|
|
685
686
|
default_time_zone: ::String?,
|
|
686
|
-
local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]
|
|
687
|
+
local_time_zone_detection: Array[("ZIP_CODE" | "AREA_CODE")]?,
|
|
688
|
+
local_time_zone_detection_scope: ("PRIMARY_ONLY" | "ALL_AVAILABLE")?
|
|
687
689
|
},
|
|
688
690
|
telephony: {
|
|
689
691
|
open_hours: {
|
data/sig/types.rbs
CHANGED
|
@@ -490,6 +490,7 @@ module Aws::ConnectCampaignsV2
|
|
|
490
490
|
class LocalTimeZoneConfig
|
|
491
491
|
attr_accessor default_time_zone: ::String
|
|
492
492
|
attr_accessor local_time_zone_detection: ::Array[("ZIP_CODE" | "AREA_CODE")]
|
|
493
|
+
attr_accessor local_time_zone_detection_scope: ("PRIMARY_ONLY" | "ALL_AVAILABLE")
|
|
493
494
|
SENSITIVE: []
|
|
494
495
|
end
|
|
495
496
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connectcampaignsv2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|