aws-sdk-connect 1.183.0 → 1.185.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 +369 -212
- data/lib/aws-sdk-connect/client_api.rb +79 -0
- data/lib/aws-sdk-connect/types.rb +435 -234
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +33 -2
- data/sig/types.rbs +47 -3
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -398,6 +398,7 @@ module Aws
|
|
398
398
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowResponse]
|
399
399
|
def contact_flow_id: () -> ::String
|
400
400
|
def contact_flow_arn: () -> ::String
|
401
|
+
def flow_content_sha_256: () -> ::String
|
401
402
|
end
|
402
403
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow-instance_method
|
403
404
|
def create_contact_flow: (
|
@@ -427,6 +428,22 @@ module Aws
|
|
427
428
|
) -> _CreateContactFlowModuleResponseSuccess
|
428
429
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleResponseSuccess
|
429
430
|
|
431
|
+
interface _CreateContactFlowVersionResponseSuccess
|
432
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowVersionResponse]
|
433
|
+
def contact_flow_arn: () -> ::String
|
434
|
+
def version: () -> ::Integer
|
435
|
+
end
|
436
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow_version-instance_method
|
437
|
+
def create_contact_flow_version: (
|
438
|
+
instance_id: ::String,
|
439
|
+
?description: ::String,
|
440
|
+
contact_flow_id: ::String,
|
441
|
+
?flow_content_sha_256: ::String,
|
442
|
+
?last_modified_time: ::Time,
|
443
|
+
?last_modified_region: ::String
|
444
|
+
) -> _CreateContactFlowVersionResponseSuccess
|
445
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowVersionResponseSuccess
|
446
|
+
|
430
447
|
interface _CreateEvaluationFormResponseSuccess
|
431
448
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEvaluationFormResponse]
|
432
449
|
def evaluation_form_id: () -> ::String
|
@@ -559,7 +576,7 @@ module Aws
|
|
559
576
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
|
560
577
|
def create_integration_association: (
|
561
578
|
instance_id: ::String,
|
562
|
-
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
|
579
|
+
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
|
563
580
|
integration_arn: ::String,
|
564
581
|
?source_application_url: ::String,
|
565
582
|
?source_application_name: ::String,
|
@@ -1965,6 +1982,20 @@ module Aws
|
|
1965
1982
|
) -> _ListContactFlowModulesResponseSuccess
|
1966
1983
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowModulesResponseSuccess
|
1967
1984
|
|
1985
|
+
interface _ListContactFlowVersionsResponseSuccess
|
1986
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowVersionsResponse]
|
1987
|
+
def contact_flow_version_summary_list: () -> ::Array[Types::ContactFlowVersionSummary]
|
1988
|
+
def next_token: () -> ::String
|
1989
|
+
end
|
1990
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_contact_flow_versions-instance_method
|
1991
|
+
def list_contact_flow_versions: (
|
1992
|
+
instance_id: ::String,
|
1993
|
+
contact_flow_id: ::String,
|
1994
|
+
?next_token: ::String,
|
1995
|
+
?max_results: ::Integer
|
1996
|
+
) -> _ListContactFlowVersionsResponseSuccess
|
1997
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowVersionsResponseSuccess
|
1998
|
+
|
1968
1999
|
interface _ListContactFlowsResponseSuccess
|
1969
2000
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowsResponse]
|
1970
2001
|
def contact_flow_summary_list: () -> ::Array[Types::ContactFlowSummary]
|
@@ -2108,7 +2139,7 @@ module Aws
|
|
2108
2139
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
|
2109
2140
|
def list_integration_associations: (
|
2110
2141
|
instance_id: ::String,
|
2111
|
-
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
|
2142
|
+
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER"),
|
2112
2143
|
?next_token: ::String,
|
2113
2144
|
?max_results: ::Integer,
|
2114
2145
|
?integration_arn: ::String
|
data/sig/types.rbs
CHANGED
@@ -596,6 +596,12 @@ module Aws::Connect
|
|
596
596
|
attr_accessor description: ::String
|
597
597
|
attr_accessor content: ::String
|
598
598
|
attr_accessor tags: ::Hash[::String, ::String]
|
599
|
+
attr_accessor is_default: bool
|
600
|
+
attr_accessor flow_content_sha_256: ::String
|
601
|
+
attr_accessor version: ::Integer
|
602
|
+
attr_accessor version_description: ::String
|
603
|
+
attr_accessor last_modified_time: ::Time
|
604
|
+
attr_accessor last_modified_region: ::String
|
599
605
|
SENSITIVE: []
|
600
606
|
end
|
601
607
|
|
@@ -661,6 +667,13 @@ module Aws::Connect
|
|
661
667
|
SENSITIVE: []
|
662
668
|
end
|
663
669
|
|
670
|
+
class ContactFlowVersionSummary
|
671
|
+
attr_accessor arn: ::String
|
672
|
+
attr_accessor version_description: ::String
|
673
|
+
attr_accessor version: ::Integer
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
664
677
|
class ContactNotFoundException
|
665
678
|
attr_accessor message: ::String
|
666
679
|
SENSITIVE: []
|
@@ -767,6 +780,23 @@ module Aws::Connect
|
|
767
780
|
class CreateContactFlowResponse
|
768
781
|
attr_accessor contact_flow_id: ::String
|
769
782
|
attr_accessor contact_flow_arn: ::String
|
783
|
+
attr_accessor flow_content_sha_256: ::String
|
784
|
+
SENSITIVE: []
|
785
|
+
end
|
786
|
+
|
787
|
+
class CreateContactFlowVersionRequest
|
788
|
+
attr_accessor instance_id: ::String
|
789
|
+
attr_accessor description: ::String
|
790
|
+
attr_accessor contact_flow_id: ::String
|
791
|
+
attr_accessor flow_content_sha_256: ::String
|
792
|
+
attr_accessor last_modified_time: ::Time
|
793
|
+
attr_accessor last_modified_region: ::String
|
794
|
+
SENSITIVE: []
|
795
|
+
end
|
796
|
+
|
797
|
+
class CreateContactFlowVersionResponse
|
798
|
+
attr_accessor contact_flow_arn: ::String
|
799
|
+
attr_accessor version: ::Integer
|
770
800
|
SENSITIVE: []
|
771
801
|
end
|
772
802
|
|
@@ -821,7 +851,7 @@ module Aws::Connect
|
|
821
851
|
|
822
852
|
class CreateIntegrationAssociationRequest
|
823
853
|
attr_accessor instance_id: ::String
|
824
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER")
|
854
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER")
|
825
855
|
attr_accessor integration_arn: ::String
|
826
856
|
attr_accessor source_application_url: ::String
|
827
857
|
attr_accessor source_application_name: ::String
|
@@ -2537,7 +2567,7 @@ module Aws::Connect
|
|
2537
2567
|
attr_accessor integration_association_id: ::String
|
2538
2568
|
attr_accessor integration_association_arn: ::String
|
2539
2569
|
attr_accessor instance_id: ::String
|
2540
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER")
|
2570
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER")
|
2541
2571
|
attr_accessor integration_arn: ::String
|
2542
2572
|
attr_accessor source_application_url: ::String
|
2543
2573
|
attr_accessor source_application_name: ::String
|
@@ -2733,6 +2763,20 @@ module Aws::Connect
|
|
2733
2763
|
SENSITIVE: []
|
2734
2764
|
end
|
2735
2765
|
|
2766
|
+
class ListContactFlowVersionsRequest
|
2767
|
+
attr_accessor instance_id: ::String
|
2768
|
+
attr_accessor contact_flow_id: ::String
|
2769
|
+
attr_accessor next_token: ::String
|
2770
|
+
attr_accessor max_results: ::Integer
|
2771
|
+
SENSITIVE: []
|
2772
|
+
end
|
2773
|
+
|
2774
|
+
class ListContactFlowVersionsResponse
|
2775
|
+
attr_accessor contact_flow_version_summary_list: ::Array[Types::ContactFlowVersionSummary]
|
2776
|
+
attr_accessor next_token: ::String
|
2777
|
+
SENSITIVE: []
|
2778
|
+
end
|
2779
|
+
|
2736
2780
|
class ListContactFlowsRequest
|
2737
2781
|
attr_accessor instance_id: ::String
|
2738
2782
|
attr_accessor contact_flow_types: ::Array[("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER")]
|
@@ -2870,7 +2914,7 @@ module Aws::Connect
|
|
2870
2914
|
|
2871
2915
|
class ListIntegrationAssociationsRequest
|
2872
2916
|
attr_accessor instance_id: ::String
|
2873
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER")
|
2917
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER")
|
2874
2918
|
attr_accessor next_token: ::String
|
2875
2919
|
attr_accessor max_results: ::Integer
|
2876
2920
|
attr_accessor integration_arn: ::String
|
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.185.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-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|