aws-sdk-connect 1.236.0 → 1.238.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.
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.236.0'
57
+ GEM_VERSION = '1.238.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1462,6 +1462,34 @@ module Aws
1462
1462
  ) -> _CreateTaskTemplateResponseSuccess
1463
1463
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTaskTemplateResponseSuccess
1464
1464
 
1465
+ interface _CreateTestCaseResponseSuccess
1466
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTestCaseResponse]
1467
+ def test_case_id: () -> ::String
1468
+ def test_case_arn: () -> ::String
1469
+ end
1470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_test_case-instance_method
1471
+ def create_test_case: (
1472
+ instance_id: ::String,
1473
+ name: ::String,
1474
+ ?description: ::String,
1475
+ content: ::String,
1476
+ ?entry_point: {
1477
+ type: ("VOICE_CALL")?,
1478
+ voice_call_entry_point_parameters: {
1479
+ source_phone_number: ::String?,
1480
+ destination_phone_number: ::String?,
1481
+ flow_id: ::String?
1482
+ }?
1483
+ },
1484
+ ?initialization_data: ::String,
1485
+ ?status: ("PUBLISHED" | "SAVED"),
1486
+ ?test_case_id: ::String,
1487
+ ?tags: Hash[::String, ::String],
1488
+ ?last_modified_time: ::Time,
1489
+ ?last_modified_region: ::String
1490
+ ) -> _CreateTestCaseResponseSuccess
1491
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTestCaseResponseSuccess
1492
+
1465
1493
  interface _CreateTrafficDistributionGroupResponseSuccess
1466
1494
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateTrafficDistributionGroupResponse]
1467
1495
  def id: () -> ::String
@@ -1921,6 +1949,16 @@ module Aws
1921
1949
  ) -> _DeleteTaskTemplateResponseSuccess
1922
1950
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTaskTemplateResponseSuccess
1923
1951
 
1952
+ interface _DeleteTestCaseResponseSuccess
1953
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTestCaseResponse]
1954
+ end
1955
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_test_case-instance_method
1956
+ def delete_test_case: (
1957
+ instance_id: ::String,
1958
+ test_case_id: ::String
1959
+ ) -> _DeleteTestCaseResponseSuccess
1960
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTestCaseResponseSuccess
1961
+
1924
1962
  interface _DeleteTrafficDistributionGroupResponseSuccess
1925
1963
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTrafficDistributionGroupResponse]
1926
1964
  end
@@ -2295,6 +2333,18 @@ module Aws
2295
2333
  ) -> _DescribeSecurityProfileResponseSuccess
2296
2334
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSecurityProfileResponseSuccess
2297
2335
 
2336
+ interface _DescribeTestCaseResponseSuccess
2337
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTestCaseResponse]
2338
+ def test_case: () -> Types::TestCase
2339
+ end
2340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_test_case-instance_method
2341
+ def describe_test_case: (
2342
+ instance_id: ::String,
2343
+ test_case_id: ::String,
2344
+ ?status: ("PUBLISHED" | "SAVED")
2345
+ ) -> _DescribeTestCaseResponseSuccess
2346
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTestCaseResponseSuccess
2347
+
2298
2348
  interface _DescribeTrafficDistributionGroupResponseSuccess
2299
2349
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTrafficDistributionGroupResponse]
2300
2350
  def traffic_distribution_group: () -> Types::TrafficDistributionGroup
@@ -2865,6 +2915,21 @@ module Aws
2865
2915
  ) -> _GetTaskTemplateResponseSuccess
2866
2916
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTaskTemplateResponseSuccess
2867
2917
 
2918
+ interface _GetTestCaseExecutionSummaryResponseSuccess
2919
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTestCaseExecutionSummaryResponse]
2920
+ def start_time: () -> ::Time
2921
+ def end_time: () -> ::Time
2922
+ def status: () -> ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
2923
+ def observation_summary: () -> Types::ObservationSummary
2924
+ end
2925
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_test_case_execution_summary-instance_method
2926
+ def get_test_case_execution_summary: (
2927
+ instance_id: ::String,
2928
+ test_case_id: ::String,
2929
+ test_case_execution_id: ::String
2930
+ ) -> _GetTestCaseExecutionSummaryResponseSuccess
2931
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTestCaseExecutionSummaryResponseSuccess
2932
+
2868
2933
  interface _GetTrafficDistributionResponseSuccess
2869
2934
  include ::Seahorse::Client::_ResponseSuccess[Types::GetTrafficDistributionResponse]
2870
2935
  def telephony_config: () -> Types::TelephonyConfig
@@ -3642,6 +3707,53 @@ module Aws
3642
3707
  ) -> _ListTaskTemplatesResponseSuccess
3643
3708
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTaskTemplatesResponseSuccess
3644
3709
 
3710
+ interface _ListTestCaseExecutionRecordsResponseSuccess
3711
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestCaseExecutionRecordsResponse]
3712
+ def execution_records: () -> ::Array[Types::ExecutionRecord]
3713
+ def next_token: () -> ::String
3714
+ end
3715
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_test_case_execution_records-instance_method
3716
+ def list_test_case_execution_records: (
3717
+ instance_id: ::String,
3718
+ test_case_id: ::String,
3719
+ test_case_execution_id: ::String,
3720
+ ?status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED"),
3721
+ ?next_token: ::String,
3722
+ ?max_results: ::Integer
3723
+ ) -> _ListTestCaseExecutionRecordsResponseSuccess
3724
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestCaseExecutionRecordsResponseSuccess
3725
+
3726
+ interface _ListTestCaseExecutionsResponseSuccess
3727
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestCaseExecutionsResponse]
3728
+ def test_case_executions: () -> ::Array[Types::TestCaseExecution]
3729
+ def next_token: () -> ::String
3730
+ end
3731
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_test_case_executions-instance_method
3732
+ def list_test_case_executions: (
3733
+ instance_id: ::String,
3734
+ ?test_case_id: ::String,
3735
+ ?test_case_name: ::String,
3736
+ ?start_time: ::Time,
3737
+ ?end_time: ::Time,
3738
+ ?status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED"),
3739
+ ?next_token: ::String,
3740
+ ?max_results: ::Integer
3741
+ ) -> _ListTestCaseExecutionsResponseSuccess
3742
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestCaseExecutionsResponseSuccess
3743
+
3744
+ interface _ListTestCasesResponseSuccess
3745
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTestCasesResponse]
3746
+ def test_case_summary_list: () -> ::Array[Types::TestCaseSummary]
3747
+ def next_token: () -> ::String
3748
+ end
3749
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_test_cases-instance_method
3750
+ def list_test_cases: (
3751
+ instance_id: ::String,
3752
+ ?next_token: ::String,
3753
+ ?max_results: ::Integer
3754
+ ) -> _ListTestCasesResponseSuccess
3755
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTestCasesResponseSuccess
3756
+
3645
3757
  interface _ListTrafficDistributionGroupUsersResponseSuccess
3646
3758
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTrafficDistributionGroupUsersResponse]
3647
3759
  def next_token: () -> ::String
@@ -4818,6 +4930,56 @@ module Aws
4818
4930
  ) -> _SearchSecurityProfilesResponseSuccess
4819
4931
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchSecurityProfilesResponseSuccess
4820
4932
 
4933
+ interface _SearchTestCasesResponseSuccess
4934
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchTestCasesResponse]
4935
+ def test_cases: () -> ::Array[Types::TestCase]
4936
+ def next_token: () -> ::String
4937
+ def approximate_total_count: () -> ::Integer
4938
+ end
4939
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_test_cases-instance_method
4940
+ def search_test_cases: (
4941
+ instance_id: ::String,
4942
+ ?next_token: ::String,
4943
+ ?max_results: ::Integer,
4944
+ ?search_filter: {
4945
+ tag_filter: {
4946
+ or_conditions: Array[
4947
+ Array[
4948
+ {
4949
+ tag_key: ::String?,
4950
+ tag_value: ::String?
4951
+ },
4952
+ ],
4953
+ ]?,
4954
+ and_conditions: Array[
4955
+ {
4956
+ tag_key: ::String?,
4957
+ tag_value: ::String?
4958
+ },
4959
+ ]?,
4960
+ tag_condition: {
4961
+ tag_key: ::String?,
4962
+ tag_value: ::String?
4963
+ }?
4964
+ }?
4965
+ },
4966
+ ?search_criteria: {
4967
+ or_conditions: Array[
4968
+ untyped,
4969
+ ]?,
4970
+ and_conditions: Array[
4971
+ untyped,
4972
+ ]?,
4973
+ string_condition: {
4974
+ field_name: ::String?,
4975
+ value: ::String?,
4976
+ comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
4977
+ }?,
4978
+ status_condition: ("PUBLISHED" | "SAVED")?
4979
+ }
4980
+ ) -> _SearchTestCasesResponseSuccess
4981
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchTestCasesResponseSuccess
4982
+
4821
4983
  interface _SearchUserHierarchyGroupsResponseSuccess
4822
4984
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchUserHierarchyGroupsResponse]
4823
4985
  def user_hierarchy_groups: () -> ::Array[Types::HierarchyGroup]
@@ -5607,10 +5769,30 @@ module Aws
5607
5769
  untyped,
5608
5770
  ]?,
5609
5771
  value_arn: ::String?
5610
- }]
5772
+ }],
5773
+ ?attachments: Array[
5774
+ {
5775
+ file_name: ::String,
5776
+ s3_url: ::String
5777
+ },
5778
+ ]
5611
5779
  ) -> _StartTaskContactResponseSuccess
5612
5780
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
5613
5781
 
5782
+ interface _StartTestCaseExecutionResponseSuccess
5783
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartTestCaseExecutionResponse]
5784
+ def test_case_execution_id: () -> ::String
5785
+ def test_case_id: () -> ::String
5786
+ def status: () -> ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
5787
+ end
5788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_test_case_execution-instance_method
5789
+ def start_test_case_execution: (
5790
+ instance_id: ::String,
5791
+ test_case_id: ::String,
5792
+ ?client_token: ::String
5793
+ ) -> _StartTestCaseExecutionResponseSuccess
5794
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTestCaseExecutionResponseSuccess
5795
+
5614
5796
  interface _StartWebRTCContactResponseSuccess
5615
5797
  include ::Seahorse::Client::_ResponseSuccess[Types::StartWebRTCContactResponse]
5616
5798
  def connection_data: () -> Types::ConnectionData
@@ -5695,6 +5877,18 @@ module Aws
5695
5877
  ) -> _StopContactStreamingResponseSuccess
5696
5878
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContactStreamingResponseSuccess
5697
5879
 
5880
+ interface _StopTestCaseExecutionResponseSuccess
5881
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopTestCaseExecutionResponse]
5882
+ end
5883
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#stop_test_case_execution-instance_method
5884
+ def stop_test_case_execution: (
5885
+ instance_id: ::String,
5886
+ test_case_execution_id: ::String,
5887
+ test_case_id: ::String,
5888
+ ?client_token: ::String
5889
+ ) -> _StopTestCaseExecutionResponseSuccess
5890
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopTestCaseExecutionResponseSuccess
5891
+
5698
5892
  interface _SubmitContactEvaluationResponseSuccess
5699
5893
  include ::Seahorse::Client::_ResponseSuccess[Types::SubmitContactEvaluationResponse]
5700
5894
  def evaluation_id: () -> ::String
@@ -6845,6 +7039,31 @@ module Aws
6845
7039
  ) -> _UpdateTaskTemplateResponseSuccess
6846
7040
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTaskTemplateResponseSuccess
6847
7041
 
7042
+ interface _UpdateTestCaseResponseSuccess
7043
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTestCaseResponse]
7044
+ end
7045
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_test_case-instance_method
7046
+ def update_test_case: (
7047
+ instance_id: ::String,
7048
+ test_case_id: ::String,
7049
+ ?content: ::String,
7050
+ ?entry_point: {
7051
+ type: ("VOICE_CALL")?,
7052
+ voice_call_entry_point_parameters: {
7053
+ source_phone_number: ::String?,
7054
+ destination_phone_number: ::String?,
7055
+ flow_id: ::String?
7056
+ }?
7057
+ },
7058
+ ?initialization_data: ::String,
7059
+ ?name: ::String,
7060
+ ?description: ::String,
7061
+ ?status: ("PUBLISHED" | "SAVED"),
7062
+ ?last_modified_time: ::Time,
7063
+ ?last_modified_region: ::String
7064
+ ) -> _UpdateTestCaseResponseSuccess
7065
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTestCaseResponseSuccess
7066
+
6848
7067
  interface _UpdateTrafficDistributionResponseSuccess
6849
7068
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTrafficDistributionResponse]
6850
7069
  end
data/sig/errors.rbs CHANGED
@@ -54,6 +54,9 @@ module Aws
54
54
  def message: () -> ::String
55
55
  def reason: () -> ::String
56
56
  end
57
+ class InvalidTestCaseException < ::Aws::Errors::ServiceError
58
+ def problems: () -> ::String
59
+ end
57
60
  class LimitExceededException < ::Aws::Errors::ServiceError
58
61
  def message: () -> ::String
59
62
  end
data/sig/types.rbs CHANGED
@@ -1598,6 +1598,27 @@ module Aws::Connect
1598
1598
  SENSITIVE: []
1599
1599
  end
1600
1600
 
1601
+ class CreateTestCaseRequest
1602
+ attr_accessor instance_id: ::String
1603
+ attr_accessor name: ::String
1604
+ attr_accessor description: ::String
1605
+ attr_accessor content: ::String
1606
+ attr_accessor entry_point: Types::TestCaseEntryPoint
1607
+ attr_accessor initialization_data: ::String
1608
+ attr_accessor status: ("PUBLISHED" | "SAVED")
1609
+ attr_accessor test_case_id: ::String
1610
+ attr_accessor tags: ::Hash[::String, ::String]
1611
+ attr_accessor last_modified_time: ::Time
1612
+ attr_accessor last_modified_region: ::String
1613
+ SENSITIVE: []
1614
+ end
1615
+
1616
+ class CreateTestCaseResponse
1617
+ attr_accessor test_case_id: ::String
1618
+ attr_accessor test_case_arn: ::String
1619
+ SENSITIVE: []
1620
+ end
1621
+
1601
1622
  class CreateTrafficDistributionGroupRequest
1602
1623
  attr_accessor name: ::String
1603
1624
  attr_accessor description: ::String
@@ -2164,6 +2185,15 @@ module Aws::Connect
2164
2185
  class DeleteTaskTemplateResponse < Aws::EmptyStructure
2165
2186
  end
2166
2187
 
2188
+ class DeleteTestCaseRequest
2189
+ attr_accessor instance_id: ::String
2190
+ attr_accessor test_case_id: ::String
2191
+ SENSITIVE: []
2192
+ end
2193
+
2194
+ class DeleteTestCaseResponse < Aws::EmptyStructure
2195
+ end
2196
+
2167
2197
  class DeleteTrafficDistributionGroupRequest
2168
2198
  attr_accessor traffic_distribution_group_id: ::String
2169
2199
  SENSITIVE: []
@@ -2529,6 +2559,18 @@ module Aws::Connect
2529
2559
  SENSITIVE: []
2530
2560
  end
2531
2561
 
2562
+ class DescribeTestCaseRequest
2563
+ attr_accessor instance_id: ::String
2564
+ attr_accessor test_case_id: ::String
2565
+ attr_accessor status: ("PUBLISHED" | "SAVED")
2566
+ SENSITIVE: []
2567
+ end
2568
+
2569
+ class DescribeTestCaseResponse
2570
+ attr_accessor test_case: Types::TestCase
2571
+ SENSITIVE: []
2572
+ end
2573
+
2532
2574
  class DescribeTrafficDistributionGroupRequest
2533
2575
  attr_accessor traffic_distribution_group_id: ::String
2534
2576
  SENSITIVE: []
@@ -3520,6 +3562,14 @@ module Aws::Connect
3520
3562
  SENSITIVE: []
3521
3563
  end
3522
3564
 
3565
+ class ExecutionRecord
3566
+ attr_accessor observation_id: ::String
3567
+ attr_accessor status: ("PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
3568
+ attr_accessor timestamp: ::Time
3569
+ attr_accessor record: ::String
3570
+ SENSITIVE: []
3571
+ end
3572
+
3523
3573
  class Expiry
3524
3574
  attr_accessor duration_in_seconds: ::Integer
3525
3575
  attr_accessor expiry_timestamp: ::Time
@@ -3812,6 +3862,21 @@ module Aws::Connect
3812
3862
  SENSITIVE: []
3813
3863
  end
3814
3864
 
3865
+ class GetTestCaseExecutionSummaryRequest
3866
+ attr_accessor instance_id: ::String
3867
+ attr_accessor test_case_id: ::String
3868
+ attr_accessor test_case_execution_id: ::String
3869
+ SENSITIVE: []
3870
+ end
3871
+
3872
+ class GetTestCaseExecutionSummaryResponse
3873
+ attr_accessor start_time: ::Time
3874
+ attr_accessor end_time: ::Time
3875
+ attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
3876
+ attr_accessor observation_summary: Types::ObservationSummary
3877
+ SENSITIVE: []
3878
+ end
3879
+
3815
3880
  class GetTrafficDistributionRequest
3816
3881
  attr_accessor id: ::String
3817
3882
  SENSITIVE: []
@@ -4201,6 +4266,11 @@ module Aws::Connect
4201
4266
  end
4202
4267
  end
4203
4268
 
4269
+ class InvalidTestCaseException
4270
+ attr_accessor problems: ::Array[Types::ProblemDetail]
4271
+ SENSITIVE: []
4272
+ end
4273
+
4204
4274
  class InvisibleFieldInfo
4205
4275
  attr_accessor id: Types::TaskTemplateFieldIdentifier
4206
4276
  SENSITIVE: []
@@ -4990,6 +5060,53 @@ module Aws::Connect
4990
5060
  SENSITIVE: []
4991
5061
  end
4992
5062
 
5063
+ class ListTestCaseExecutionRecordsRequest
5064
+ attr_accessor instance_id: ::String
5065
+ attr_accessor test_case_id: ::String
5066
+ attr_accessor test_case_execution_id: ::String
5067
+ attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
5068
+ attr_accessor next_token: ::String
5069
+ attr_accessor max_results: ::Integer
5070
+ SENSITIVE: []
5071
+ end
5072
+
5073
+ class ListTestCaseExecutionRecordsResponse
5074
+ attr_accessor execution_records: ::Array[Types::ExecutionRecord]
5075
+ attr_accessor next_token: ::String
5076
+ SENSITIVE: []
5077
+ end
5078
+
5079
+ class ListTestCaseExecutionsRequest
5080
+ attr_accessor instance_id: ::String
5081
+ attr_accessor test_case_id: ::String
5082
+ attr_accessor test_case_name: ::String
5083
+ attr_accessor start_time: ::Time
5084
+ attr_accessor end_time: ::Time
5085
+ attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
5086
+ attr_accessor next_token: ::String
5087
+ attr_accessor max_results: ::Integer
5088
+ SENSITIVE: []
5089
+ end
5090
+
5091
+ class ListTestCaseExecutionsResponse
5092
+ attr_accessor test_case_executions: ::Array[Types::TestCaseExecution]
5093
+ attr_accessor next_token: ::String
5094
+ SENSITIVE: []
5095
+ end
5096
+
5097
+ class ListTestCasesRequest
5098
+ attr_accessor instance_id: ::String
5099
+ attr_accessor next_token: ::String
5100
+ attr_accessor max_results: ::Integer
5101
+ SENSITIVE: []
5102
+ end
5103
+
5104
+ class ListTestCasesResponse
5105
+ attr_accessor test_case_summary_list: ::Array[Types::TestCaseSummary]
5106
+ attr_accessor next_token: ::String
5107
+ SENSITIVE: []
5108
+ end
5109
+
4993
5110
  class ListTrafficDistributionGroupUsersRequest
4994
5111
  attr_accessor traffic_distribution_group_id: ::String
4995
5112
  attr_accessor max_results: ::Integer
@@ -5296,6 +5413,13 @@ module Aws::Connect
5296
5413
  SENSITIVE: []
5297
5414
  end
5298
5415
 
5416
+ class ObservationSummary
5417
+ attr_accessor total_observations: ::Integer
5418
+ attr_accessor observations_passed: ::Integer
5419
+ attr_accessor observations_failed: ::Integer
5420
+ SENSITIVE: []
5421
+ end
5422
+
5299
5423
  class OperationalHour
5300
5424
  attr_accessor start: Types::OverrideTimeSlice
5301
5425
  attr_accessor end: Types::OverrideTimeSlice
@@ -6568,6 +6692,22 @@ module Aws::Connect
6568
6692
  SENSITIVE: []
6569
6693
  end
6570
6694
 
6695
+ class SearchTestCasesRequest
6696
+ attr_accessor instance_id: ::String
6697
+ attr_accessor next_token: ::String
6698
+ attr_accessor max_results: ::Integer
6699
+ attr_accessor search_filter: Types::TestCaseSearchFilter
6700
+ attr_accessor search_criteria: Types::TestCaseSearchCriteria
6701
+ SENSITIVE: []
6702
+ end
6703
+
6704
+ class SearchTestCasesResponse
6705
+ attr_accessor test_cases: ::Array[Types::TestCase]
6706
+ attr_accessor next_token: ::String
6707
+ attr_accessor approximate_total_count: ::Integer
6708
+ SENSITIVE: []
6709
+ end
6710
+
6571
6711
  class SearchUserHierarchyGroupsRequest
6572
6712
  attr_accessor instance_id: ::String
6573
6713
  attr_accessor next_token: ::String
@@ -7070,7 +7210,8 @@ module Aws::Connect
7070
7210
  attr_accessor quick_connect_id: ::String
7071
7211
  attr_accessor related_contact_id: ::String
7072
7212
  attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
7073
- SENSITIVE: [:name, :description]
7213
+ attr_accessor attachments: ::Array[Types::TaskAttachment]
7214
+ SENSITIVE: [:name, :description, :attachments]
7074
7215
  end
7075
7216
 
7076
7217
  class StartTaskContactResponse
@@ -7078,6 +7219,20 @@ module Aws::Connect
7078
7219
  SENSITIVE: []
7079
7220
  end
7080
7221
 
7222
+ class StartTestCaseExecutionRequest
7223
+ attr_accessor instance_id: ::String
7224
+ attr_accessor test_case_id: ::String
7225
+ attr_accessor client_token: ::String
7226
+ SENSITIVE: []
7227
+ end
7228
+
7229
+ class StartTestCaseExecutionResponse
7230
+ attr_accessor test_case_execution_id: ::String
7231
+ attr_accessor test_case_id: ::String
7232
+ attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
7233
+ SENSITIVE: []
7234
+ end
7235
+
7081
7236
  class StartWebRTCContactRequest
7082
7237
  attr_accessor attributes: ::Hash[::String, ::String]
7083
7238
  attr_accessor client_token: ::String
@@ -7153,6 +7308,17 @@ module Aws::Connect
7153
7308
  class StopContactStreamingResponse < Aws::EmptyStructure
7154
7309
  end
7155
7310
 
7311
+ class StopTestCaseExecutionRequest
7312
+ attr_accessor instance_id: ::String
7313
+ attr_accessor test_case_execution_id: ::String
7314
+ attr_accessor test_case_id: ::String
7315
+ attr_accessor client_token: ::String
7316
+ SENSITIVE: []
7317
+ end
7318
+
7319
+ class StopTestCaseExecutionResponse < Aws::EmptyStructure
7320
+ end
7321
+
7156
7322
  class StringCondition
7157
7323
  attr_accessor field_name: ::String
7158
7324
  attr_accessor value: ::String
@@ -7252,6 +7418,12 @@ module Aws::Connect
7252
7418
  SENSITIVE: []
7253
7419
  end
7254
7420
 
7421
+ class TaskAttachment
7422
+ attr_accessor file_name: ::String
7423
+ attr_accessor s3_url: ::String
7424
+ SENSITIVE: []
7425
+ end
7426
+
7255
7427
  class TaskTemplateConstraints
7256
7428
  attr_accessor required_fields: ::Array[Types::RequiredFieldInfo]
7257
7429
  attr_accessor read_only_fields: ::Array[Types::ReadOnlyFieldInfo]
@@ -7318,6 +7490,61 @@ module Aws::Connect
7318
7490
  SENSITIVE: []
7319
7491
  end
7320
7492
 
7493
+ class TestCase
7494
+ attr_accessor arn: ::String
7495
+ attr_accessor id: ::String
7496
+ attr_accessor name: ::String
7497
+ attr_accessor content: ::String
7498
+ attr_accessor entry_point: Types::TestCaseEntryPoint
7499
+ attr_accessor initialization_data: ::String
7500
+ attr_accessor description: ::String
7501
+ attr_accessor status: ("PUBLISHED" | "SAVED")
7502
+ attr_accessor last_modified_time: ::Time
7503
+ attr_accessor last_modified_region: ::String
7504
+ attr_accessor tags: ::Hash[::String, ::String]
7505
+ attr_accessor test_case_sha_256: ::String
7506
+ SENSITIVE: []
7507
+ end
7508
+
7509
+ class TestCaseEntryPoint
7510
+ attr_accessor type: ("VOICE_CALL")
7511
+ attr_accessor voice_call_entry_point_parameters: Types::VoiceCallEntryPointParameters
7512
+ SENSITIVE: []
7513
+ end
7514
+
7515
+ class TestCaseExecution
7516
+ attr_accessor start_time: ::Time
7517
+ attr_accessor end_time: ::Time
7518
+ attr_accessor test_case_execution_id: ::String
7519
+ attr_accessor test_case_id: ::String
7520
+ attr_accessor test_case_execution_status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
7521
+ attr_accessor tags: ::Hash[::String, ::String]
7522
+ SENSITIVE: []
7523
+ end
7524
+
7525
+ class TestCaseSearchCriteria
7526
+ attr_accessor or_conditions: ::Array[Types::TestCaseSearchCriteria]
7527
+ attr_accessor and_conditions: ::Array[Types::TestCaseSearchCriteria]
7528
+ attr_accessor string_condition: Types::StringCondition
7529
+ attr_accessor status_condition: ("PUBLISHED" | "SAVED")
7530
+ SENSITIVE: []
7531
+ end
7532
+
7533
+ class TestCaseSearchFilter
7534
+ attr_accessor tag_filter: Types::ControlPlaneTagFilter
7535
+ SENSITIVE: []
7536
+ end
7537
+
7538
+ class TestCaseSummary
7539
+ attr_accessor id: ::String
7540
+ attr_accessor arn: ::String
7541
+ attr_accessor name: ::String
7542
+ attr_accessor status: ("PUBLISHED" | "SAVED")
7543
+ attr_accessor last_modified_time: ::Time
7544
+ attr_accessor last_modified_region: ::String
7545
+ SENSITIVE: []
7546
+ end
7547
+
7321
7548
  class Threshold
7322
7549
  attr_accessor comparison: ("LT")
7323
7550
  attr_accessor threshold_value: ::Float
@@ -7930,6 +8157,23 @@ module Aws::Connect
7930
8157
  SENSITIVE: []
7931
8158
  end
7932
8159
 
8160
+ class UpdateTestCaseRequest
8161
+ attr_accessor instance_id: ::String
8162
+ attr_accessor test_case_id: ::String
8163
+ attr_accessor content: ::String
8164
+ attr_accessor entry_point: Types::TestCaseEntryPoint
8165
+ attr_accessor initialization_data: ::String
8166
+ attr_accessor name: ::String
8167
+ attr_accessor description: ::String
8168
+ attr_accessor status: ("PUBLISHED" | "SAVED")
8169
+ attr_accessor last_modified_time: ::Time
8170
+ attr_accessor last_modified_region: ::String
8171
+ SENSITIVE: []
8172
+ end
8173
+
8174
+ class UpdateTestCaseResponse < Aws::EmptyStructure
8175
+ end
8176
+
7933
8177
  class UpdateTrafficDistributionRequest
7934
8178
  attr_accessor id: ::String
7935
8179
  attr_accessor telephony_config: Types::TelephonyConfig
@@ -8343,6 +8587,13 @@ module Aws::Connect
8343
8587
  SENSITIVE: []
8344
8588
  end
8345
8589
 
8590
+ class VoiceCallEntryPointParameters
8591
+ attr_accessor source_phone_number: ::String
8592
+ attr_accessor destination_phone_number: ::String
8593
+ attr_accessor flow_id: ::String
8594
+ SENSITIVE: []
8595
+ end
8596
+
8346
8597
  class VoiceRecordingConfiguration
8347
8598
  attr_accessor voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")
8348
8599
  attr_accessor ivr_recording_track: ("ALL")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.236.0
4
+ version: 1.238.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services