aws-sdk-connect 1.150.0 → 1.152.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +407 -13
- data/lib/aws-sdk-connect/client_api.rb +30 -3
- data/lib/aws-sdk-connect/types.rb +462 -15
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +42 -2
- data/sig/types.rbs +21 -0
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -779,7 +779,9 @@ module Aws
|
|
779
779
|
namespace: ::String?,
|
780
780
|
application_permissions: Array[::String]?
|
781
781
|
},
|
782
|
-
]
|
782
|
+
],
|
783
|
+
?hierarchy_restricted_resources: Array[::String],
|
784
|
+
?allowed_access_control_hierarchy_group_id: ::String
|
783
785
|
) -> _CreateSecurityProfileResponseSuccess
|
784
786
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSecurityProfileResponseSuccess
|
785
787
|
|
@@ -2935,6 +2937,42 @@ module Aws
|
|
2935
2937
|
tag_key: ::String?,
|
2936
2938
|
tag_value: ::String?
|
2937
2939
|
}?
|
2940
|
+
}?,
|
2941
|
+
user_attribute_filter: {
|
2942
|
+
or_conditions: Array[
|
2943
|
+
{
|
2944
|
+
tag_conditions: Array[
|
2945
|
+
{
|
2946
|
+
tag_key: ::String?,
|
2947
|
+
tag_value: ::String?
|
2948
|
+
},
|
2949
|
+
]?,
|
2950
|
+
hierarchy_group_condition: {
|
2951
|
+
value: ::String?,
|
2952
|
+
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2953
|
+
}?
|
2954
|
+
},
|
2955
|
+
]?,
|
2956
|
+
and_condition: {
|
2957
|
+
tag_conditions: Array[
|
2958
|
+
{
|
2959
|
+
tag_key: ::String?,
|
2960
|
+
tag_value: ::String?
|
2961
|
+
},
|
2962
|
+
]?,
|
2963
|
+
hierarchy_group_condition: {
|
2964
|
+
value: ::String?,
|
2965
|
+
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2966
|
+
}?
|
2967
|
+
}?,
|
2968
|
+
tag_condition: {
|
2969
|
+
tag_key: ::String?,
|
2970
|
+
tag_value: ::String?
|
2971
|
+
}?,
|
2972
|
+
hierarchy_group_condition: {
|
2973
|
+
value: ::String?,
|
2974
|
+
hierarchy_group_match_type: ("EXACT" | "WITH_CHILD_GROUPS")?
|
2975
|
+
}?
|
2938
2976
|
}?
|
2939
2977
|
},
|
2940
2978
|
?search_criteria: {
|
@@ -3862,7 +3900,9 @@ module Aws
|
|
3862
3900
|
namespace: ::String?,
|
3863
3901
|
application_permissions: Array[::String]?
|
3864
3902
|
},
|
3865
|
-
]
|
3903
|
+
],
|
3904
|
+
?hierarchy_restricted_resources: Array[::String],
|
3905
|
+
?allowed_access_control_hierarchy_group_id: ::String
|
3866
3906
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3867
3907
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3868
3908
|
|
data/sig/types.rbs
CHANGED
@@ -265,6 +265,12 @@ module Aws::Connect
|
|
265
265
|
SENSITIVE: []
|
266
266
|
end
|
267
267
|
|
268
|
+
class AttributeAndCondition
|
269
|
+
attr_accessor tag_conditions: ::Array[Types::TagCondition]
|
270
|
+
attr_accessor hierarchy_group_condition: Types::HierarchyGroupCondition
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
268
274
|
class AudioFeatures
|
269
275
|
attr_accessor echo_reduction: ("AVAILABLE" | "UNAVAILABLE")
|
270
276
|
SENSITIVE: []
|
@@ -530,6 +536,14 @@ module Aws::Connect
|
|
530
536
|
SENSITIVE: []
|
531
537
|
end
|
532
538
|
|
539
|
+
class ControlPlaneUserAttributeFilter
|
540
|
+
attr_accessor or_conditions: ::Array[Types::AttributeAndCondition]
|
541
|
+
attr_accessor and_condition: Types::AttributeAndCondition
|
542
|
+
attr_accessor tag_condition: Types::TagCondition
|
543
|
+
attr_accessor hierarchy_group_condition: Types::HierarchyGroupCondition
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
533
547
|
class CreateAgentStatusRequest
|
534
548
|
attr_accessor instance_id: ::String
|
535
549
|
attr_accessor name: ::String
|
@@ -777,6 +791,8 @@ module Aws::Connect
|
|
777
791
|
attr_accessor allowed_access_control_tags: ::Hash[::String, ::String]
|
778
792
|
attr_accessor tag_restricted_resources: ::Array[::String]
|
779
793
|
attr_accessor applications: ::Array[Types::Application]
|
794
|
+
attr_accessor hierarchy_restricted_resources: ::Array[::String]
|
795
|
+
attr_accessor allowed_access_control_hierarchy_group_id: ::String
|
780
796
|
SENSITIVE: []
|
781
797
|
end
|
782
798
|
|
@@ -3932,6 +3948,8 @@ module Aws::Connect
|
|
3932
3948
|
attr_accessor tag_restricted_resources: ::Array[::String]
|
3933
3949
|
attr_accessor last_modified_time: ::Time
|
3934
3950
|
attr_accessor last_modified_region: ::String
|
3951
|
+
attr_accessor hierarchy_restricted_resources: ::Array[::String]
|
3952
|
+
attr_accessor allowed_access_control_hierarchy_group_id: ::String
|
3935
3953
|
SENSITIVE: []
|
3936
3954
|
end
|
3937
3955
|
|
@@ -4750,6 +4768,8 @@ module Aws::Connect
|
|
4750
4768
|
attr_accessor allowed_access_control_tags: ::Hash[::String, ::String]
|
4751
4769
|
attr_accessor tag_restricted_resources: ::Array[::String]
|
4752
4770
|
attr_accessor applications: ::Array[Types::Application]
|
4771
|
+
attr_accessor hierarchy_restricted_resources: ::Array[::String]
|
4772
|
+
attr_accessor allowed_access_control_hierarchy_group_id: ::String
|
4753
4773
|
SENSITIVE: []
|
4754
4774
|
end
|
4755
4775
|
|
@@ -4986,6 +5006,7 @@ module Aws::Connect
|
|
4986
5006
|
|
4987
5007
|
class UserSearchFilter
|
4988
5008
|
attr_accessor tag_filter: Types::ControlPlaneTagFilter
|
5009
|
+
attr_accessor user_attribute_filter: Types::ControlPlaneUserAttributeFilter
|
4989
5010
|
SENSITIVE: []
|
4990
5011
|
end
|
4991
5012
|
|
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.152.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
|
+
date: 2024-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|