aws-sdk-connect 1.186.0 → 1.187.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 +404 -35
- data/lib/aws-sdk-connect/client_api.rb +7 -1
- data/lib/aws-sdk-connect/types.rb +528 -37
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +18 -6
- data/sig/types.rbs +2 -1
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -422,7 +422,9 @@ module Aws
|
|
422
422
|
?name: ::String,
|
423
423
|
?description: ::String,
|
424
424
|
?segment_attributes: Hash[::String, {
|
425
|
-
value_string: ::String
|
425
|
+
value_string: ::String?,
|
426
|
+
value_map: Hash[::String, untyped]?,
|
427
|
+
value_integer: ::Integer?
|
426
428
|
}]
|
427
429
|
) -> _CreateContactResponseSuccess
|
428
430
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactResponseSuccess
|
@@ -3643,7 +3645,9 @@ module Aws
|
|
3643
3645
|
},
|
3644
3646
|
?related_contact_id: ::String,
|
3645
3647
|
?segment_attributes: Hash[::String, {
|
3646
|
-
value_string: ::String
|
3648
|
+
value_string: ::String?,
|
3649
|
+
value_map: Hash[::String, untyped]?,
|
3650
|
+
value_integer: ::Integer?
|
3647
3651
|
}]
|
3648
3652
|
) -> _StartChatContactResponseSuccess
|
3649
3653
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChatContactResponseSuccess
|
@@ -3745,7 +3749,9 @@ module Aws
|
|
3745
3749
|
?related_contact_id: ::String,
|
3746
3750
|
?attributes: Hash[::String, ::String],
|
3747
3751
|
?segment_attributes: Hash[::String, {
|
3748
|
-
value_string: ::String
|
3752
|
+
value_string: ::String?,
|
3753
|
+
value_map: Hash[::String, untyped]?,
|
3754
|
+
value_integer: ::Integer?
|
3749
3755
|
}],
|
3750
3756
|
?client_token: ::String
|
3751
3757
|
) -> _StartEmailContactResponseSuccess
|
@@ -3767,7 +3773,9 @@ module Aws
|
|
3767
3773
|
},
|
3768
3774
|
instance_id: ::String,
|
3769
3775
|
segment_attributes: Hash[::String, {
|
3770
|
-
value_string: ::String
|
3776
|
+
value_string: ::String?,
|
3777
|
+
value_map: Hash[::String, untyped]?,
|
3778
|
+
value_integer: ::Integer?
|
3771
3779
|
}],
|
3772
3780
|
?attributes: Hash[::String, ::String],
|
3773
3781
|
contact_flow_id: ::String,
|
@@ -3897,7 +3905,9 @@ module Aws
|
|
3897
3905
|
?quick_connect_id: ::String,
|
3898
3906
|
?related_contact_id: ::String,
|
3899
3907
|
?segment_attributes: Hash[::String, {
|
3900
|
-
value_string: ::String
|
3908
|
+
value_string: ::String?,
|
3909
|
+
value_map: Hash[::String, untyped]?,
|
3910
|
+
value_integer: ::Integer?
|
3901
3911
|
}]
|
3902
3912
|
) -> _StartTaskContactResponseSuccess
|
3903
3913
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
|
@@ -4101,7 +4111,9 @@ module Aws
|
|
4101
4111
|
status_reason: ::String?
|
4102
4112
|
}],
|
4103
4113
|
?segment_attributes: Hash[::String, {
|
4104
|
-
value_string: ::String
|
4114
|
+
value_string: ::String?,
|
4115
|
+
value_map: Hash[::String, untyped]?,
|
4116
|
+
value_integer: ::Integer?
|
4105
4117
|
}]
|
4106
4118
|
) -> _UpdateContactResponseSuccess
|
4107
4119
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -625,7 +625,6 @@ module Aws::Connect
|
|
625
625
|
attr_accessor description: ::String
|
626
626
|
attr_accessor content: ::String
|
627
627
|
attr_accessor tags: ::Hash[::String, ::String]
|
628
|
-
attr_accessor is_default: bool
|
629
628
|
attr_accessor flow_content_sha_256: ::String
|
630
629
|
attr_accessor version: ::Integer
|
631
630
|
attr_accessor version_description: ::String
|
@@ -4732,6 +4731,8 @@ module Aws::Connect
|
|
4732
4731
|
|
4733
4732
|
class SegmentAttributeValue
|
4734
4733
|
attr_accessor value_string: ::String
|
4734
|
+
attr_accessor value_map: ::Hash[::String, Types::SegmentAttributeValue]
|
4735
|
+
attr_accessor value_integer: ::Integer
|
4735
4736
|
SENSITIVE: []
|
4736
4737
|
end
|
4737
4738
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.187.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|