aws-sdk-connect 1.164.0 → 1.166.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +373 -125
- data/lib/aws-sdk-connect/client_api.rb +127 -1
- data/lib/aws-sdk-connect/endpoints.rb +42 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-connect/types.rb +490 -124
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +36 -0
- data/sig/types.rbs +72 -0
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1210,6 +1210,17 @@ module Aws
|
|
1210
1210
|
) -> _DescribeAgentStatusResponseSuccess
|
1211
1211
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAgentStatusResponseSuccess
|
1212
1212
|
|
1213
|
+
interface _DescribeAuthenticationProfileResponseSuccess
|
1214
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAuthenticationProfileResponse]
|
1215
|
+
def authentication_profile: () -> Types::AuthenticationProfile
|
1216
|
+
end
|
1217
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_authentication_profile-instance_method
|
1218
|
+
def describe_authentication_profile: (
|
1219
|
+
authentication_profile_id: ::String,
|
1220
|
+
instance_id: ::String
|
1221
|
+
) -> _DescribeAuthenticationProfileResponseSuccess
|
1222
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAuthenticationProfileResponseSuccess
|
1223
|
+
|
1213
1224
|
interface _DescribeContactResponseSuccess
|
1214
1225
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContactResponse]
|
1215
1226
|
def contact: () -> Types::Contact
|
@@ -1896,6 +1907,19 @@ module Aws
|
|
1896
1907
|
) -> _ListApprovedOriginsResponseSuccess
|
1897
1908
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApprovedOriginsResponseSuccess
|
1898
1909
|
|
1910
|
+
interface _ListAuthenticationProfilesResponseSuccess
|
1911
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAuthenticationProfilesResponse]
|
1912
|
+
def authentication_profile_summary_list: () -> ::Array[Types::AuthenticationProfileSummary]
|
1913
|
+
def next_token: () -> ::String
|
1914
|
+
end
|
1915
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_authentication_profiles-instance_method
|
1916
|
+
def list_authentication_profiles: (
|
1917
|
+
instance_id: ::String,
|
1918
|
+
?max_results: ::Integer,
|
1919
|
+
?next_token: ::String
|
1920
|
+
) -> _ListAuthenticationProfilesResponseSuccess
|
1921
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAuthenticationProfilesResponseSuccess
|
1922
|
+
|
1899
1923
|
interface _ListBotsResponseSuccess
|
1900
1924
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListBotsResponse]
|
1901
1925
|
def lex_bots: () -> ::Array[Types::LexBotConfig]
|
@@ -3522,6 +3546,18 @@ module Aws
|
|
3522
3546
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3523
3547
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3524
3548
|
|
3549
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_authentication_profile-instance_method
|
3550
|
+
def update_authentication_profile: (
|
3551
|
+
authentication_profile_id: ::String,
|
3552
|
+
instance_id: ::String,
|
3553
|
+
?name: ::String,
|
3554
|
+
?description: ::String,
|
3555
|
+
?allowed_ips: Array[::String],
|
3556
|
+
?blocked_ips: Array[::String],
|
3557
|
+
?periodic_session_duration: ::Integer
|
3558
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3559
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
3560
|
+
|
3525
3561
|
interface _UpdateContactResponseSuccess
|
3526
3562
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactResponse]
|
3527
3563
|
end
|
data/sig/types.rbs
CHANGED
@@ -108,6 +108,11 @@ module Aws::Connect
|
|
108
108
|
SENSITIVE: []
|
109
109
|
end
|
110
110
|
|
111
|
+
class AgentsCriteria
|
112
|
+
attr_accessor agent_ids: ::Array[::String]
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
111
116
|
class AllowedCapabilities
|
112
117
|
attr_accessor customer: Types::ParticipantCapabilities
|
113
118
|
attr_accessor agent: Types::ParticipantCapabilities
|
@@ -309,6 +314,7 @@ module Aws::Connect
|
|
309
314
|
attr_accessor name: ::String
|
310
315
|
attr_accessor value: ::String
|
311
316
|
attr_accessor proficiency_level: ::Float
|
317
|
+
attr_accessor match_criteria: Types::MatchCriteria
|
312
318
|
attr_accessor comparison_operator: ::String
|
313
319
|
SENSITIVE: []
|
314
320
|
end
|
@@ -324,6 +330,32 @@ module Aws::Connect
|
|
324
330
|
SENSITIVE: []
|
325
331
|
end
|
326
332
|
|
333
|
+
class AuthenticationProfile
|
334
|
+
attr_accessor id: ::String
|
335
|
+
attr_accessor arn: ::String
|
336
|
+
attr_accessor name: ::String
|
337
|
+
attr_accessor description: ::String
|
338
|
+
attr_accessor allowed_ips: ::Array[::String]
|
339
|
+
attr_accessor blocked_ips: ::Array[::String]
|
340
|
+
attr_accessor is_default: bool
|
341
|
+
attr_accessor created_time: ::Time
|
342
|
+
attr_accessor last_modified_time: ::Time
|
343
|
+
attr_accessor last_modified_region: ::String
|
344
|
+
attr_accessor periodic_session_duration: ::Integer
|
345
|
+
attr_accessor max_session_duration: ::Integer
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class AuthenticationProfileSummary
|
350
|
+
attr_accessor id: ::String
|
351
|
+
attr_accessor arn: ::String
|
352
|
+
attr_accessor name: ::String
|
353
|
+
attr_accessor is_default: bool
|
354
|
+
attr_accessor last_modified_time: ::Time
|
355
|
+
attr_accessor last_modified_region: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
327
359
|
class AvailableNumberSummary
|
328
360
|
attr_accessor phone_number: ::String
|
329
361
|
attr_accessor phone_number_country_code: ("AF" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "AQ" | "AG" | "AR" | "AM" | "AW" | "AU" | "AT" | "AZ" | "BS" | "BH" | "BD" | "BB" | "BY" | "BE" | "BZ" | "BJ" | "BM" | "BT" | "BO" | "BA" | "BW" | "BR" | "IO" | "VG" | "BN" | "BG" | "BF" | "BI" | "KH" | "CM" | "CA" | "CV" | "KY" | "CF" | "TD" | "CL" | "CN" | "CX" | "CC" | "CO" | "KM" | "CK" | "CR" | "HR" | "CU" | "CW" | "CY" | "CZ" | "CD" | "DK" | "DJ" | "DM" | "DO" | "TL" | "EC" | "EG" | "SV" | "GQ" | "ER" | "EE" | "ET" | "FK" | "FO" | "FJ" | "FI" | "FR" | "PF" | "GA" | "GM" | "GE" | "DE" | "GH" | "GI" | "GR" | "GL" | "GD" | "GU" | "GT" | "GG" | "GN" | "GW" | "GY" | "HT" | "HN" | "HK" | "HU" | "IS" | "IN" | "ID" | "IR" | "IQ" | "IE" | "IM" | "IL" | "IT" | "CI" | "JM" | "JP" | "JE" | "JO" | "KZ" | "KE" | "KI" | "KW" | "KG" | "LA" | "LV" | "LB" | "LS" | "LR" | "LY" | "LI" | "LT" | "LU" | "MO" | "MK" | "MG" | "MW" | "MY" | "MV" | "ML" | "MT" | "MH" | "MR" | "MU" | "YT" | "MX" | "FM" | "MD" | "MC" | "MN" | "ME" | "MS" | "MA" | "MZ" | "MM" | "NA" | "NR" | "NP" | "NL" | "AN" | "NC" | "NZ" | "NI" | "NE" | "NG" | "NU" | "KP" | "MP" | "NO" | "OM" | "PK" | "PW" | "PA" | "PG" | "PY" | "PE" | "PH" | "PN" | "PL" | "PT" | "PR" | "QA" | "CG" | "RE" | "RO" | "RU" | "RW" | "BL" | "SH" | "KN" | "LC" | "MF" | "PM" | "VC" | "WS" | "SM" | "ST" | "SA" | "SN" | "RS" | "SC" | "SL" | "SG" | "SX" | "SK" | "SI" | "SB" | "SO" | "ZA" | "KR" | "ES" | "LK" | "SD" | "SR" | "SJ" | "SZ" | "SE" | "CH" | "SY" | "TW" | "TJ" | "TZ" | "TH" | "TG" | "TK" | "TO" | "TT" | "TN" | "TR" | "TM" | "TC" | "TV" | "VI" | "UG" | "UA" | "AE" | "GB" | "US" | "UY" | "UZ" | "VU" | "VA" | "VE" | "VN" | "WF" | "EH" | "YE" | "ZM" | "ZW")
|
@@ -1315,6 +1347,17 @@ module Aws::Connect
|
|
1315
1347
|
SENSITIVE: []
|
1316
1348
|
end
|
1317
1349
|
|
1350
|
+
class DescribeAuthenticationProfileRequest
|
1351
|
+
attr_accessor authentication_profile_id: ::String
|
1352
|
+
attr_accessor instance_id: ::String
|
1353
|
+
SENSITIVE: []
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class DescribeAuthenticationProfileResponse
|
1357
|
+
attr_accessor authentication_profile: Types::AuthenticationProfile
|
1358
|
+
SENSITIVE: []
|
1359
|
+
end
|
1360
|
+
|
1318
1361
|
class DescribeContactEvaluationRequest
|
1319
1362
|
attr_accessor instance_id: ::String
|
1320
1363
|
attr_accessor evaluation_id: ::String
|
@@ -2599,6 +2642,19 @@ module Aws::Connect
|
|
2599
2642
|
SENSITIVE: []
|
2600
2643
|
end
|
2601
2644
|
|
2645
|
+
class ListAuthenticationProfilesRequest
|
2646
|
+
attr_accessor instance_id: ::String
|
2647
|
+
attr_accessor max_results: ::Integer
|
2648
|
+
attr_accessor next_token: ::String
|
2649
|
+
SENSITIVE: []
|
2650
|
+
end
|
2651
|
+
|
2652
|
+
class ListAuthenticationProfilesResponse
|
2653
|
+
attr_accessor authentication_profile_summary_list: ::Array[Types::AuthenticationProfileSummary]
|
2654
|
+
attr_accessor next_token: ::String
|
2655
|
+
SENSITIVE: []
|
2656
|
+
end
|
2657
|
+
|
2602
2658
|
class ListBotsRequest
|
2603
2659
|
attr_accessor instance_id: ::String
|
2604
2660
|
attr_accessor next_token: ::String
|
@@ -3186,6 +3242,11 @@ module Aws::Connect
|
|
3186
3242
|
SENSITIVE: []
|
3187
3243
|
end
|
3188
3244
|
|
3245
|
+
class MatchCriteria
|
3246
|
+
attr_accessor agents_criteria: Types::AgentsCriteria
|
3247
|
+
SENSITIVE: []
|
3248
|
+
end
|
3249
|
+
|
3189
3250
|
class MaximumResultReturnedException
|
3190
3251
|
attr_accessor message: ::String
|
3191
3252
|
SENSITIVE: []
|
@@ -4745,6 +4806,17 @@ module Aws::Connect
|
|
4745
4806
|
SENSITIVE: []
|
4746
4807
|
end
|
4747
4808
|
|
4809
|
+
class UpdateAuthenticationProfileRequest
|
4810
|
+
attr_accessor authentication_profile_id: ::String
|
4811
|
+
attr_accessor instance_id: ::String
|
4812
|
+
attr_accessor name: ::String
|
4813
|
+
attr_accessor description: ::String
|
4814
|
+
attr_accessor allowed_ips: ::Array[::String]
|
4815
|
+
attr_accessor blocked_ips: ::Array[::String]
|
4816
|
+
attr_accessor periodic_session_duration: ::Integer
|
4817
|
+
SENSITIVE: []
|
4818
|
+
end
|
4819
|
+
|
4748
4820
|
class UpdateCaseActionDefinition
|
4749
4821
|
attr_accessor fields: ::Array[Types::FieldValue]
|
4750
4822
|
SENSITIVE: []
|
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.166.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-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|