aws-sdk-connect 1.135.0 → 1.137.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 +10 -6
- data/lib/aws-sdk-connect/client_api.rb +2 -1
- data/lib/aws-sdk-connect/types.rb +6 -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: 11ca4b21e272268ec4a397bfc7258a76d87aa3ef6e4cc445194168af37699a21
|
4
|
+
data.tar.gz: cf9591608380dceaf4d7f7cbdd4d4794df67f908e338a32713b5020bec51e7f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3bf12e85e8686f36490b9faf4a72e36f85f028b98cc2f10595f33f6731674962be45becaa57314786609f8998f126fe16d0e197f822279a036c9e8726a5cfbb
|
7
|
+
data.tar.gz: a2b4b69ee1cf2280d2934076b9ebea9435490c2e8a10ca32d4f4520b6d4f0c023bddeac3e5572b696c6d19e6b9a20239b66b9536c6c0184aa7e2e1ff20bd8dd4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.137.0 (2023-11-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the ability to integrate customer lambda functions with Connect attachments for scanning and updates the ListIntegrationAssociations API to support filtering on IntegrationArn.
|
8
|
+
|
9
|
+
1.136.0 (2023-11-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release clarifies in our public documentation that InstanceId is a requirement for SearchUsers API requests.
|
13
|
+
|
4
14
|
1.135.0 (2023-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.137.0
|
@@ -1700,7 +1700,7 @@ module Aws::Connect
|
|
1700
1700
|
#
|
1701
1701
|
# resp = client.create_integration_association({
|
1702
1702
|
# instance_id: "InstanceId", # required
|
1703
|
-
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION
|
1703
|
+
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
1704
1704
|
# integration_arn: "ARN", # required
|
1705
1705
|
# source_application_url: "URI",
|
1706
1706
|
# source_application_name: "SourceApplicationName",
|
@@ -8044,6 +8044,9 @@ module Aws::Connect
|
|
8044
8044
|
# @option params [Integer] :max_results
|
8045
8045
|
# The maximum number of results to return per page.
|
8046
8046
|
#
|
8047
|
+
# @option params [String] :integration_arn
|
8048
|
+
# The Amazon Resource Name (ARN) of the integration.
|
8049
|
+
#
|
8047
8050
|
# @return [Types::ListIntegrationAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8048
8051
|
#
|
8049
8052
|
# * {Types::ListIntegrationAssociationsResponse#integration_association_summary_list #integration_association_summary_list} => Array<Types::IntegrationAssociationSummary>
|
@@ -8055,9 +8058,10 @@ module Aws::Connect
|
|
8055
8058
|
#
|
8056
8059
|
# resp = client.list_integration_associations({
|
8057
8060
|
# instance_id: "InstanceId", # required
|
8058
|
-
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION
|
8061
|
+
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
8059
8062
|
# next_token: "NextToken",
|
8060
8063
|
# max_results: 1,
|
8064
|
+
# integration_arn: "ARN",
|
8061
8065
|
# })
|
8062
8066
|
#
|
8063
8067
|
# @example Response structure
|
@@ -8066,7 +8070,7 @@ module Aws::Connect
|
|
8066
8070
|
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
8067
8071
|
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
8068
8072
|
# resp.integration_association_summary_list[0].instance_id #=> String
|
8069
|
-
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "CASES_DOMAIN", "APPLICATION"
|
8073
|
+
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER"
|
8070
8074
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
8071
8075
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
8072
8076
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
@@ -10646,7 +10650,7 @@ module Aws::Connect
|
|
10646
10650
|
#
|
10647
10651
|
# </note>
|
10648
10652
|
#
|
10649
|
-
# @option params [String] :instance_id
|
10653
|
+
# @option params [required, String] :instance_id
|
10650
10654
|
# The identifier of the Amazon Connect instance. You can [find the
|
10651
10655
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
10652
10656
|
#
|
@@ -10691,7 +10695,7 @@ module Aws::Connect
|
|
10691
10695
|
# @example Request syntax with placeholder values
|
10692
10696
|
#
|
10693
10697
|
# resp = client.search_users({
|
10694
|
-
# instance_id: "InstanceId",
|
10698
|
+
# instance_id: "InstanceId", # required
|
10695
10699
|
# next_token: "NextToken2500",
|
10696
10700
|
# max_results: 1,
|
10697
10701
|
# search_filter: {
|
@@ -14302,7 +14306,7 @@ module Aws::Connect
|
|
14302
14306
|
params: params,
|
14303
14307
|
config: config)
|
14304
14308
|
context[:gem_name] = 'aws-sdk-connect'
|
14305
|
-
context[:gem_version] = '1.
|
14309
|
+
context[:gem_version] = '1.137.0'
|
14306
14310
|
Seahorse::Client::Request.new(handlers, context)
|
14307
14311
|
end
|
14308
14312
|
|
@@ -2758,6 +2758,7 @@ module Aws::Connect
|
|
2758
2758
|
ListIntegrationAssociationsRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location: "querystring", location_name: "integrationType"))
|
2759
2759
|
ListIntegrationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
2760
2760
|
ListIntegrationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
|
2761
|
+
ListIntegrationAssociationsRequest.add_member(:integration_arn, Shapes::ShapeRef.new(shape: ARN, location: "querystring", location_name: "integrationArn"))
|
2761
2762
|
ListIntegrationAssociationsRequest.struct_class = Types::ListIntegrationAssociationsRequest
|
2762
2763
|
|
2763
2764
|
ListIntegrationAssociationsResponse.add_member(:integration_association_summary_list, Shapes::ShapeRef.new(shape: IntegrationAssociationSummaryList, location_name: "IntegrationAssociationSummaryList"))
|
@@ -3569,7 +3570,7 @@ module Aws::Connect
|
|
3569
3570
|
SearchSecurityProfilesResponse.add_member(:approximate_total_count, Shapes::ShapeRef.new(shape: ApproximateTotalCount, location_name: "ApproximateTotalCount"))
|
3570
3571
|
SearchSecurityProfilesResponse.struct_class = Types::SearchSecurityProfilesResponse
|
3571
3572
|
|
3572
|
-
SearchUsersRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
3573
|
+
SearchUsersRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
3573
3574
|
SearchUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
3574
3575
|
SearchUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location_name: "MaxResults", metadata: {"box"=>true}))
|
3575
3576
|
SearchUsersRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: UserSearchFilter, location_name: "SearchFilter"))
|
@@ -9394,13 +9394,18 @@ module Aws::Connect
|
|
9394
9394
|
# The maximum number of results to return per page.
|
9395
9395
|
# @return [Integer]
|
9396
9396
|
#
|
9397
|
+
# @!attribute [rw] integration_arn
|
9398
|
+
# The Amazon Resource Name (ARN) of the integration.
|
9399
|
+
# @return [String]
|
9400
|
+
#
|
9397
9401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListIntegrationAssociationsRequest AWS API Documentation
|
9398
9402
|
#
|
9399
9403
|
class ListIntegrationAssociationsRequest < Struct.new(
|
9400
9404
|
:instance_id,
|
9401
9405
|
:integration_type,
|
9402
9406
|
:next_token,
|
9403
|
-
:max_results
|
9407
|
+
:max_results,
|
9408
|
+
:integration_arn)
|
9404
9409
|
SENSITIVE = []
|
9405
9410
|
include Aws::Structure
|
9406
9411
|
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.137.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: 2023-11-
|
11
|
+
date: 2023-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|