aws-sdk-connect 1.77.0 → 1.78.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 +7 -1
- data/lib/aws-sdk-connect/client_api.rb +2 -0
- data/lib/aws-sdk-connect/types.rb +20 -1
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f43e54437cf7ede667d1111cafdc5d3e7e6893d30d7180be002bf02f0ff2eb44
|
4
|
+
data.tar.gz: 336d406d38b9dd189147dfe5eba387fefdd2df4c0efaf973f9497d8d5f2d5fe7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e675e8020f385fb5f14942f06cfc72199a05d0d2adddde49143444f32a785d3dc83a232830a07da5f5b2b2fdb807a32fa53dffda1df05db4ef4e369ef45972a
|
7
|
+
data.tar.gz: 9ba2367cdccd99c817849ce896287a2cd1debb160235807cfc9ceea2aa59448b9b4bb360d1c436920987967b0678fa894351a7f2ae54001b5a34e4c49313e976
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.78.0
|
@@ -1685,6 +1685,8 @@ module Aws::Connect
|
|
1685
1685
|
# first_name: "AgentFirstName",
|
1686
1686
|
# last_name: "AgentLastName",
|
1687
1687
|
# email: "Email",
|
1688
|
+
# secondary_email: "Email",
|
1689
|
+
# mobile: "PhoneNumber",
|
1688
1690
|
# },
|
1689
1691
|
# phone_config: { # required
|
1690
1692
|
# phone_type: "SOFT_PHONE", # required, accepts SOFT_PHONE, DESK_PHONE
|
@@ -2829,6 +2831,8 @@ module Aws::Connect
|
|
2829
2831
|
# resp.user.identity_info.first_name #=> String
|
2830
2832
|
# resp.user.identity_info.last_name #=> String
|
2831
2833
|
# resp.user.identity_info.email #=> String
|
2834
|
+
# resp.user.identity_info.secondary_email #=> String
|
2835
|
+
# resp.user.identity_info.mobile #=> String
|
2832
2836
|
# resp.user.phone_config.phone_type #=> String, one of "SOFT_PHONE", "DESK_PHONE"
|
2833
2837
|
# resp.user.phone_config.auto_accept #=> Boolean
|
2834
2838
|
# resp.user.phone_config.after_contact_work_time_limit #=> Integer
|
@@ -8438,6 +8442,8 @@ module Aws::Connect
|
|
8438
8442
|
# first_name: "AgentFirstName",
|
8439
8443
|
# last_name: "AgentLastName",
|
8440
8444
|
# email: "Email",
|
8445
|
+
# secondary_email: "Email",
|
8446
|
+
# mobile: "PhoneNumber",
|
8441
8447
|
# },
|
8442
8448
|
# user_id: "UserId", # required
|
8443
8449
|
# instance_id: "InstanceId", # required
|
@@ -8563,7 +8569,7 @@ module Aws::Connect
|
|
8563
8569
|
params: params,
|
8564
8570
|
config: config)
|
8565
8571
|
context[:gem_name] = 'aws-sdk-connect'
|
8566
|
-
context[:gem_version] = '1.
|
8572
|
+
context[:gem_version] = '1.78.0'
|
8567
8573
|
Seahorse::Client::Request.new(handlers, context)
|
8568
8574
|
end
|
8569
8575
|
|
@@ -2769,6 +2769,8 @@ module Aws::Connect
|
|
2769
2769
|
UserIdentityInfo.add_member(:first_name, Shapes::ShapeRef.new(shape: AgentFirstName, location_name: "FirstName"))
|
2770
2770
|
UserIdentityInfo.add_member(:last_name, Shapes::ShapeRef.new(shape: AgentLastName, location_name: "LastName"))
|
2771
2771
|
UserIdentityInfo.add_member(:email, Shapes::ShapeRef.new(shape: Email, location_name: "Email"))
|
2772
|
+
UserIdentityInfo.add_member(:secondary_email, Shapes::ShapeRef.new(shape: Email, location_name: "SecondaryEmail"))
|
2773
|
+
UserIdentityInfo.add_member(:mobile, Shapes::ShapeRef.new(shape: PhoneNumber, location_name: "Mobile"))
|
2772
2774
|
UserIdentityInfo.struct_class = Types::UserIdentityInfo
|
2773
2775
|
|
2774
2776
|
UserIdentityInfoLite.add_member(:first_name, Shapes::ShapeRef.new(shape: AgentFirstName, location_name: "FirstName"))
|
@@ -2282,6 +2282,8 @@ module Aws::Connect
|
|
2282
2282
|
# first_name: "AgentFirstName",
|
2283
2283
|
# last_name: "AgentLastName",
|
2284
2284
|
# email: "Email",
|
2285
|
+
# secondary_email: "Email",
|
2286
|
+
# mobile: "PhoneNumber",
|
2285
2287
|
# },
|
2286
2288
|
# phone_config: { # required
|
2287
2289
|
# phone_type: "SOFT_PHONE", # required, accepts SOFT_PHONE, DESK_PHONE
|
@@ -12230,6 +12232,8 @@ module Aws::Connect
|
|
12230
12232
|
# first_name: "AgentFirstName",
|
12231
12233
|
# last_name: "AgentLastName",
|
12232
12234
|
# email: "Email",
|
12235
|
+
# secondary_email: "Email",
|
12236
|
+
# mobile: "PhoneNumber",
|
12233
12237
|
# },
|
12234
12238
|
# user_id: "UserId", # required
|
12235
12239
|
# instance_id: "InstanceId", # required
|
@@ -12567,6 +12571,8 @@ module Aws::Connect
|
|
12567
12571
|
# first_name: "AgentFirstName",
|
12568
12572
|
# last_name: "AgentLastName",
|
12569
12573
|
# email: "Email",
|
12574
|
+
# secondary_email: "Email",
|
12575
|
+
# mobile: "PhoneNumber",
|
12570
12576
|
# }
|
12571
12577
|
#
|
12572
12578
|
# @!attribute [rw] first_name
|
@@ -12584,12 +12590,25 @@ module Aws::Connect
|
|
12584
12590
|
# include this parameter, an error is returned.
|
12585
12591
|
# @return [String]
|
12586
12592
|
#
|
12593
|
+
# @!attribute [rw] secondary_email
|
12594
|
+
# The user's secondary email address. If you provide a secondary
|
12595
|
+
# email, the user receives email notifications -- other than password
|
12596
|
+
# reset notifications -- to this email address instead of to their
|
12597
|
+
# primary email address.
|
12598
|
+
# @return [String]
|
12599
|
+
#
|
12600
|
+
# @!attribute [rw] mobile
|
12601
|
+
# The user's mobile number.
|
12602
|
+
# @return [String]
|
12603
|
+
#
|
12587
12604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserIdentityInfo AWS API Documentation
|
12588
12605
|
#
|
12589
12606
|
class UserIdentityInfo < Struct.new(
|
12590
12607
|
:first_name,
|
12591
12608
|
:last_name,
|
12592
|
-
:email
|
12609
|
+
:email,
|
12610
|
+
:secondary_email,
|
12611
|
+
:mobile)
|
12593
12612
|
SENSITIVE = []
|
12594
12613
|
include Aws::Structure
|
12595
12614
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
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.78.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: 2022-10-
|
11
|
+
date: 2022-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|