aws-sdk-connect 1.157.0 → 1.158.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.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.157.0'
55
+ GEM_VERSION = '1.158.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -403,6 +403,7 @@ module Aws
403
403
  type: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER"),
404
404
  ?description: ::String,
405
405
  content: ::String,
406
+ ?status: ("PUBLISHED" | "SAVED"),
406
407
  ?tags: Hash[::String, ::String]
407
408
  ) -> _CreateContactFlowResponseSuccess
408
409
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowResponseSuccess
@@ -2566,6 +2567,107 @@ module Aws
2566
2567
  ) -> _SearchAvailablePhoneNumbersResponseSuccess
2567
2568
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchAvailablePhoneNumbersResponseSuccess
2568
2569
 
2570
+ interface _SearchContactFlowModulesResponseSuccess
2571
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchContactFlowModulesResponse]
2572
+ def contact_flow_modules: () -> ::Array[Types::ContactFlowModule]
2573
+ def next_token: () -> ::String
2574
+ def approximate_total_count: () -> ::Integer
2575
+ end
2576
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_contact_flow_modules-instance_method
2577
+ def search_contact_flow_modules: (
2578
+ instance_id: ::String,
2579
+ ?next_token: ::String,
2580
+ ?max_results: ::Integer,
2581
+ ?search_filter: {
2582
+ tag_filter: {
2583
+ or_conditions: Array[
2584
+ Array[
2585
+ {
2586
+ tag_key: ::String?,
2587
+ tag_value: ::String?
2588
+ },
2589
+ ],
2590
+ ]?,
2591
+ and_conditions: Array[
2592
+ {
2593
+ tag_key: ::String?,
2594
+ tag_value: ::String?
2595
+ },
2596
+ ]?,
2597
+ tag_condition: {
2598
+ tag_key: ::String?,
2599
+ tag_value: ::String?
2600
+ }?
2601
+ }?
2602
+ },
2603
+ ?search_criteria: {
2604
+ or_conditions: Array[
2605
+ untyped,
2606
+ ]?,
2607
+ and_conditions: Array[
2608
+ untyped,
2609
+ ]?,
2610
+ string_condition: {
2611
+ field_name: ::String?,
2612
+ value: ::String?,
2613
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
2614
+ }?
2615
+ }
2616
+ ) -> _SearchContactFlowModulesResponseSuccess
2617
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactFlowModulesResponseSuccess
2618
+
2619
+ interface _SearchContactFlowsResponseSuccess
2620
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchContactFlowsResponse]
2621
+ def contact_flows: () -> ::Array[Types::ContactFlow]
2622
+ def next_token: () -> ::String
2623
+ def approximate_total_count: () -> ::Integer
2624
+ end
2625
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_contact_flows-instance_method
2626
+ def search_contact_flows: (
2627
+ instance_id: ::String,
2628
+ ?next_token: ::String,
2629
+ ?max_results: ::Integer,
2630
+ ?search_filter: {
2631
+ tag_filter: {
2632
+ or_conditions: Array[
2633
+ Array[
2634
+ {
2635
+ tag_key: ::String?,
2636
+ tag_value: ::String?
2637
+ },
2638
+ ],
2639
+ ]?,
2640
+ and_conditions: Array[
2641
+ {
2642
+ tag_key: ::String?,
2643
+ tag_value: ::String?
2644
+ },
2645
+ ]?,
2646
+ tag_condition: {
2647
+ tag_key: ::String?,
2648
+ tag_value: ::String?
2649
+ }?
2650
+ }?
2651
+ },
2652
+ ?search_criteria: {
2653
+ or_conditions: Array[
2654
+ untyped,
2655
+ ]?,
2656
+ and_conditions: Array[
2657
+ untyped,
2658
+ ]?,
2659
+ string_condition: {
2660
+ field_name: ::String?,
2661
+ value: ::String?,
2662
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
2663
+ }?,
2664
+ type_condition: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER")?,
2665
+ state_condition: ("ACTIVE" | "ARCHIVED")?,
2666
+ status_condition: ("PUBLISHED" | "SAVED")?
2667
+ }
2668
+ ) -> _SearchContactFlowsResponseSuccess
2669
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactFlowsResponseSuccess
2670
+
2569
2671
  interface _SearchContactsResponseSuccess
2570
2672
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchContactsResponse]
2571
2673
  def contacts: () -> ::Array[Types::ContactSearchSummary]
data/sig/types.rbs CHANGED
@@ -501,6 +501,7 @@ module Aws::Connect
501
501
  attr_accessor name: ::String
502
502
  attr_accessor type: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER")
503
503
  attr_accessor state: ("ACTIVE" | "ARCHIVED")
504
+ attr_accessor status: ("PUBLISHED" | "SAVED")
504
505
  attr_accessor description: ::String
505
506
  attr_accessor content: ::String
506
507
  attr_accessor tags: ::Hash[::String, ::String]
@@ -519,6 +520,18 @@ module Aws::Connect
519
520
  SENSITIVE: []
520
521
  end
521
522
 
523
+ class ContactFlowModuleSearchCriteria
524
+ attr_accessor or_conditions: ::Array[Types::ContactFlowModuleSearchCriteria]
525
+ attr_accessor and_conditions: ::Array[Types::ContactFlowModuleSearchCriteria]
526
+ attr_accessor string_condition: Types::StringCondition
527
+ SENSITIVE: []
528
+ end
529
+
530
+ class ContactFlowModuleSearchFilter
531
+ attr_accessor tag_filter: Types::ControlPlaneTagFilter
532
+ SENSITIVE: []
533
+ end
534
+
522
535
  class ContactFlowModuleSummary
523
536
  attr_accessor id: ::String
524
537
  attr_accessor arn: ::String
@@ -532,12 +545,28 @@ module Aws::Connect
532
545
  SENSITIVE: []
533
546
  end
534
547
 
548
+ class ContactFlowSearchCriteria
549
+ attr_accessor or_conditions: ::Array[Types::ContactFlowSearchCriteria]
550
+ attr_accessor and_conditions: ::Array[Types::ContactFlowSearchCriteria]
551
+ attr_accessor string_condition: Types::StringCondition
552
+ attr_accessor type_condition: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER")
553
+ attr_accessor state_condition: ("ACTIVE" | "ARCHIVED")
554
+ attr_accessor status_condition: ("PUBLISHED" | "SAVED")
555
+ SENSITIVE: []
556
+ end
557
+
558
+ class ContactFlowSearchFilter
559
+ attr_accessor tag_filter: Types::ControlPlaneTagFilter
560
+ SENSITIVE: []
561
+ end
562
+
535
563
  class ContactFlowSummary
536
564
  attr_accessor id: ::String
537
565
  attr_accessor arn: ::String
538
566
  attr_accessor name: ::String
539
567
  attr_accessor contact_flow_type: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER")
540
568
  attr_accessor contact_flow_state: ("ACTIVE" | "ARCHIVED")
569
+ attr_accessor contact_flow_status: ("PUBLISHED" | "SAVED")
541
570
  SENSITIVE: []
542
571
  end
543
572
 
@@ -632,6 +661,7 @@ module Aws::Connect
632
661
  attr_accessor type: ("CONTACT_FLOW" | "CUSTOMER_QUEUE" | "CUSTOMER_HOLD" | "CUSTOMER_WHISPER" | "AGENT_HOLD" | "AGENT_WHISPER" | "OUTBOUND_WHISPER" | "AGENT_TRANSFER" | "QUEUE_TRANSFER")
633
662
  attr_accessor description: ::String
634
663
  attr_accessor content: ::String
664
+ attr_accessor status: ("PUBLISHED" | "SAVED")
635
665
  attr_accessor tags: ::Hash[::String, ::String]
636
666
  SENSITIVE: []
637
667
  end
@@ -3835,6 +3865,38 @@ module Aws::Connect
3835
3865
  SENSITIVE: []
3836
3866
  end
3837
3867
 
3868
+ class SearchContactFlowModulesRequest
3869
+ attr_accessor instance_id: ::String
3870
+ attr_accessor next_token: ::String
3871
+ attr_accessor max_results: ::Integer
3872
+ attr_accessor search_filter: Types::ContactFlowModuleSearchFilter
3873
+ attr_accessor search_criteria: Types::ContactFlowModuleSearchCriteria
3874
+ SENSITIVE: []
3875
+ end
3876
+
3877
+ class SearchContactFlowModulesResponse
3878
+ attr_accessor contact_flow_modules: ::Array[Types::ContactFlowModule]
3879
+ attr_accessor next_token: ::String
3880
+ attr_accessor approximate_total_count: ::Integer
3881
+ SENSITIVE: []
3882
+ end
3883
+
3884
+ class SearchContactFlowsRequest
3885
+ attr_accessor instance_id: ::String
3886
+ attr_accessor next_token: ::String
3887
+ attr_accessor max_results: ::Integer
3888
+ attr_accessor search_filter: Types::ContactFlowSearchFilter
3889
+ attr_accessor search_criteria: Types::ContactFlowSearchCriteria
3890
+ SENSITIVE: []
3891
+ end
3892
+
3893
+ class SearchContactFlowsResponse
3894
+ attr_accessor contact_flows: ::Array[Types::ContactFlow]
3895
+ attr_accessor next_token: ::String
3896
+ attr_accessor approximate_total_count: ::Integer
3897
+ SENSITIVE: []
3898
+ end
3899
+
3838
3900
  class SearchContactsRequest
3839
3901
  attr_accessor instance_id: ::String
3840
3902
  attr_accessor time_range: Types::SearchContactsTimeRange
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.157.0
4
+ version: 1.158.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-05-13 00:00:00.000000000 Z
11
+ date: 2024-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core