aws-sdk-connect 1.81.0 → 1.83.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 +16 -6
- data/lib/aws-sdk-connect/client_api.rb +4 -0
- data/lib/aws-sdk-connect/types.rb +23 -4
- 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: e116e6b76684c2170720cf42cb56afe06b61943bf486deabf6c65623dbcf2ab5
|
4
|
+
data.tar.gz: fb81daa5f524960bb488654ac932a6bc23e51b13173c06a70f698175b5c3b9a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7938100d74a77ed62b9e8d44f631a52284805c2fc051658f7895d3a496d2f030ab9695367d0d2c478e1ec080a571f82e8fbcdffde29deda37987c8f4191b97cb
|
7
|
+
data.tar.gz: 0b117d24aaaf10efceacbc879962019cfdff3ee4747a0745f23d4c4369156dfd3ac03cfce8ff23ae314de678be299bbfdc40654b20801ed53fe584d0d96e9b59
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.83.0 (2022-11-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release updates the APIs: UpdateInstanceAttribute, DescribeInstanceAttribute, and ListInstanceAttributes. You can use it to programmatically enable/disable enhanced contact monitoring using attribute type ENHANCED_CONTACT_MONITORING on the specified Amazon Connect instance.
|
8
|
+
|
9
|
+
1.82.0 (2022-11-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds new fields SignInUrl, UserArn, and UserId to GetFederationToken response payload.
|
13
|
+
|
4
14
|
1.81.0 (2022-10-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.83.0
|
@@ -805,6 +805,9 @@ module Aws::Connect
|
|
805
805
|
# SDK populates this field. For more information about idempotency, see
|
806
806
|
# [Making retries safe with idempotent APIs][1].
|
807
807
|
#
|
808
|
+
# Pattern:
|
809
|
+
# `^[a-f0-9]\{8\}-[a-f0-9]\{4\}-[a-f0-9]\{4\}-[a-f0-9]\{4\}-[a-f0-9]\{12\}$`
|
810
|
+
#
|
808
811
|
# **A suitable default value is auto-generated.** You should normally
|
809
812
|
# not need to pass this option.**
|
810
813
|
#
|
@@ -2696,12 +2699,12 @@ module Aws::Connect
|
|
2696
2699
|
#
|
2697
2700
|
# resp = client.describe_instance_attribute({
|
2698
2701
|
# instance_id: "InstanceId", # required
|
2699
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND
|
2702
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING
|
2700
2703
|
# })
|
2701
2704
|
#
|
2702
2705
|
# @example Response structure
|
2703
2706
|
#
|
2704
|
-
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND"
|
2707
|
+
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING"
|
2705
2708
|
# resp.attribute.value #=> String
|
2706
2709
|
#
|
2707
2710
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceAttribute AWS API Documentation
|
@@ -3917,6 +3920,9 @@ module Aws::Connect
|
|
3917
3920
|
# @return [Types::GetFederationTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3918
3921
|
#
|
3919
3922
|
# * {Types::GetFederationTokenResponse#credentials #credentials} => Types::Credentials
|
3923
|
+
# * {Types::GetFederationTokenResponse#sign_in_url #sign_in_url} => String
|
3924
|
+
# * {Types::GetFederationTokenResponse#user_arn #user_arn} => String
|
3925
|
+
# * {Types::GetFederationTokenResponse#user_id #user_id} => String
|
3920
3926
|
#
|
3921
3927
|
# @example Request syntax with placeholder values
|
3922
3928
|
#
|
@@ -3930,6 +3936,9 @@ module Aws::Connect
|
|
3930
3936
|
# resp.credentials.access_token_expiration #=> Time
|
3931
3937
|
# resp.credentials.refresh_token #=> String
|
3932
3938
|
# resp.credentials.refresh_token_expiration #=> Time
|
3939
|
+
# resp.sign_in_url #=> String
|
3940
|
+
# resp.user_arn #=> String
|
3941
|
+
# resp.user_id #=> String
|
3933
3942
|
#
|
3934
3943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationToken AWS API Documentation
|
3935
3944
|
#
|
@@ -4830,7 +4839,7 @@ module Aws::Connect
|
|
4830
4839
|
# @example Response structure
|
4831
4840
|
#
|
4832
4841
|
# resp.attributes #=> Array
|
4833
|
-
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND"
|
4842
|
+
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING"
|
4834
4843
|
# resp.attributes[0].value #=> String
|
4835
4844
|
# resp.next_token #=> String
|
4836
4845
|
#
|
@@ -6161,7 +6170,8 @@ module Aws::Connect
|
|
6161
6170
|
#
|
6162
6171
|
# @option params [required, String] :instance_id
|
6163
6172
|
# The identifier of the Amazon Connect instance. You can find the
|
6164
|
-
# instanceId in the ARN of the instance.
|
6173
|
+
# instanceId in the ARN of the instance. You can provide the
|
6174
|
+
# `InstanceId`, or the entire ARN.
|
6165
6175
|
#
|
6166
6176
|
# @option params [required, String] :replica_region
|
6167
6177
|
# The Amazon Web Services Region where to replicate the Amazon Connect
|
@@ -8080,7 +8090,7 @@ module Aws::Connect
|
|
8080
8090
|
#
|
8081
8091
|
# resp = client.update_instance_attribute({
|
8082
8092
|
# instance_id: "InstanceId", # required
|
8083
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND
|
8093
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING
|
8084
8094
|
# value: "InstanceAttributeValue", # required
|
8085
8095
|
# })
|
8086
8096
|
#
|
@@ -9143,7 +9153,7 @@ module Aws::Connect
|
|
9143
9153
|
params: params,
|
9144
9154
|
config: config)
|
9145
9155
|
context[:gem_name] = 'aws-sdk-connect'
|
9146
|
-
context[:gem_version] = '1.
|
9156
|
+
context[:gem_version] = '1.83.0'
|
9147
9157
|
Seahorse::Client::Request.new(handlers, context)
|
9148
9158
|
end
|
9149
9159
|
|
@@ -671,6 +671,7 @@ module Aws::Connect
|
|
671
671
|
UpdateUserPhoneConfigRequest = Shapes::StructureShape.new(name: 'UpdateUserPhoneConfigRequest')
|
672
672
|
UpdateUserRoutingProfileRequest = Shapes::StructureShape.new(name: 'UpdateUserRoutingProfileRequest')
|
673
673
|
UpdateUserSecurityProfilesRequest = Shapes::StructureShape.new(name: 'UpdateUserSecurityProfilesRequest')
|
674
|
+
Url = Shapes::StringShape.new(name: 'Url')
|
674
675
|
UrlReference = Shapes::StructureShape.new(name: 'UrlReference')
|
675
676
|
UseCase = Shapes::StructureShape.new(name: 'UseCase')
|
676
677
|
UseCaseId = Shapes::StringShape.new(name: 'UseCaseId')
|
@@ -1469,6 +1470,9 @@ module Aws::Connect
|
|
1469
1470
|
GetFederationTokenRequest.struct_class = Types::GetFederationTokenRequest
|
1470
1471
|
|
1471
1472
|
GetFederationTokenResponse.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "Credentials"))
|
1473
|
+
GetFederationTokenResponse.add_member(:sign_in_url, Shapes::ShapeRef.new(shape: Url, location_name: "SignInUrl"))
|
1474
|
+
GetFederationTokenResponse.add_member(:user_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "UserArn"))
|
1475
|
+
GetFederationTokenResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: AgentResourceId, location_name: "UserId"))
|
1472
1476
|
GetFederationTokenResponse.struct_class = Types::GetFederationTokenResponse
|
1473
1477
|
|
1474
1478
|
GetMetricDataRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
@@ -758,6 +758,9 @@ module Aws::Connect
|
|
758
758
|
# SDK populates this field. For more information about idempotency,
|
759
759
|
# see [Making retries safe with idempotent APIs][1].
|
760
760
|
#
|
761
|
+
# Pattern:
|
762
|
+
# `^[a-f0-9]\{8\}-[a-f0-9]\{4\}-[a-f0-9]\{4\}-[a-f0-9]\{4\}-[a-f0-9]\{12\}$`
|
763
|
+
#
|
761
764
|
# **A suitable default value is auto-generated.** You should normally
|
762
765
|
# not need to pass this option.
|
763
766
|
#
|
@@ -3345,7 +3348,7 @@ module Aws::Connect
|
|
3345
3348
|
#
|
3346
3349
|
# {
|
3347
3350
|
# instance_id: "InstanceId", # required
|
3348
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND
|
3351
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING
|
3349
3352
|
# }
|
3350
3353
|
#
|
3351
3354
|
# @!attribute [rw] instance_id
|
@@ -4630,10 +4633,25 @@ module Aws::Connect
|
|
4630
4633
|
# The credentials to use for federation.
|
4631
4634
|
# @return [Types::Credentials]
|
4632
4635
|
#
|
4636
|
+
# @!attribute [rw] sign_in_url
|
4637
|
+
# The URL to sign into the user's instance.
|
4638
|
+
# @return [String]
|
4639
|
+
#
|
4640
|
+
# @!attribute [rw] user_arn
|
4641
|
+
# The Amazon Resource Name (ARN) of the user.
|
4642
|
+
# @return [String]
|
4643
|
+
#
|
4644
|
+
# @!attribute [rw] user_id
|
4645
|
+
# The identifier for the user.
|
4646
|
+
# @return [String]
|
4647
|
+
#
|
4633
4648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationTokenResponse AWS API Documentation
|
4634
4649
|
#
|
4635
4650
|
class GetFederationTokenResponse < Struct.new(
|
4636
|
-
:credentials
|
4651
|
+
:credentials,
|
4652
|
+
:sign_in_url,
|
4653
|
+
:user_arn,
|
4654
|
+
:user_id)
|
4637
4655
|
SENSITIVE = []
|
4638
4656
|
include Aws::Structure
|
4639
4657
|
end
|
@@ -8857,7 +8875,8 @@ module Aws::Connect
|
|
8857
8875
|
#
|
8858
8876
|
# @!attribute [rw] instance_id
|
8859
8877
|
# The identifier of the Amazon Connect instance. You can find the
|
8860
|
-
# instanceId in the ARN of the instance.
|
8878
|
+
# instanceId in the ARN of the instance. You can provide the
|
8879
|
+
# `InstanceId`, or the entire ARN.
|
8861
8880
|
# @return [String]
|
8862
8881
|
#
|
8863
8882
|
# @!attribute [rw] replica_region
|
@@ -12013,7 +12032,7 @@ module Aws::Connect
|
|
12013
12032
|
#
|
12014
12033
|
# {
|
12015
12034
|
# instance_id: "InstanceId", # required
|
12016
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND
|
12035
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING
|
12017
12036
|
# value: "InstanceAttributeValue", # required
|
12018
12037
|
# }
|
12019
12038
|
#
|
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.83.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-
|
11
|
+
date: 2022-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|