aws-sdk-connect 1.236.0 → 1.237.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +652 -1
- data/lib/aws-sdk-connect/client_api.rb +417 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/types.rb +938 -63
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +213 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +244 -0
- metadata +1 -1
data/lib/aws-sdk-connect.rb
CHANGED
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]
|
|
@@ -5611,6 +5773,20 @@ module Aws
|
|
|
5611
5773
|
) -> _StartTaskContactResponseSuccess
|
|
5612
5774
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
|
|
5613
5775
|
|
|
5776
|
+
interface _StartTestCaseExecutionResponseSuccess
|
|
5777
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartTestCaseExecutionResponse]
|
|
5778
|
+
def test_case_execution_id: () -> ::String
|
|
5779
|
+
def test_case_id: () -> ::String
|
|
5780
|
+
def status: () -> ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
5781
|
+
end
|
|
5782
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_test_case_execution-instance_method
|
|
5783
|
+
def start_test_case_execution: (
|
|
5784
|
+
instance_id: ::String,
|
|
5785
|
+
test_case_id: ::String,
|
|
5786
|
+
?client_token: ::String
|
|
5787
|
+
) -> _StartTestCaseExecutionResponseSuccess
|
|
5788
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTestCaseExecutionResponseSuccess
|
|
5789
|
+
|
|
5614
5790
|
interface _StartWebRTCContactResponseSuccess
|
|
5615
5791
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartWebRTCContactResponse]
|
|
5616
5792
|
def connection_data: () -> Types::ConnectionData
|
|
@@ -5695,6 +5871,18 @@ module Aws
|
|
|
5695
5871
|
) -> _StopContactStreamingResponseSuccess
|
|
5696
5872
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContactStreamingResponseSuccess
|
|
5697
5873
|
|
|
5874
|
+
interface _StopTestCaseExecutionResponseSuccess
|
|
5875
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopTestCaseExecutionResponse]
|
|
5876
|
+
end
|
|
5877
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#stop_test_case_execution-instance_method
|
|
5878
|
+
def stop_test_case_execution: (
|
|
5879
|
+
instance_id: ::String,
|
|
5880
|
+
test_case_execution_id: ::String,
|
|
5881
|
+
test_case_id: ::String,
|
|
5882
|
+
?client_token: ::String
|
|
5883
|
+
) -> _StopTestCaseExecutionResponseSuccess
|
|
5884
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopTestCaseExecutionResponseSuccess
|
|
5885
|
+
|
|
5698
5886
|
interface _SubmitContactEvaluationResponseSuccess
|
|
5699
5887
|
include ::Seahorse::Client::_ResponseSuccess[Types::SubmitContactEvaluationResponse]
|
|
5700
5888
|
def evaluation_id: () -> ::String
|
|
@@ -6845,6 +7033,31 @@ module Aws
|
|
|
6845
7033
|
) -> _UpdateTaskTemplateResponseSuccess
|
|
6846
7034
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTaskTemplateResponseSuccess
|
|
6847
7035
|
|
|
7036
|
+
interface _UpdateTestCaseResponseSuccess
|
|
7037
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTestCaseResponse]
|
|
7038
|
+
end
|
|
7039
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_test_case-instance_method
|
|
7040
|
+
def update_test_case: (
|
|
7041
|
+
instance_id: ::String,
|
|
7042
|
+
test_case_id: ::String,
|
|
7043
|
+
?content: ::String,
|
|
7044
|
+
?entry_point: {
|
|
7045
|
+
type: ("VOICE_CALL")?,
|
|
7046
|
+
voice_call_entry_point_parameters: {
|
|
7047
|
+
source_phone_number: ::String?,
|
|
7048
|
+
destination_phone_number: ::String?,
|
|
7049
|
+
flow_id: ::String?
|
|
7050
|
+
}?
|
|
7051
|
+
},
|
|
7052
|
+
?initialization_data: ::String,
|
|
7053
|
+
?name: ::String,
|
|
7054
|
+
?description: ::String,
|
|
7055
|
+
?status: ("PUBLISHED" | "SAVED"),
|
|
7056
|
+
?last_modified_time: ::Time,
|
|
7057
|
+
?last_modified_region: ::String
|
|
7058
|
+
) -> _UpdateTestCaseResponseSuccess
|
|
7059
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTestCaseResponseSuccess
|
|
7060
|
+
|
|
6848
7061
|
interface _UpdateTrafficDistributionResponseSuccess
|
|
6849
7062
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTrafficDistributionResponse]
|
|
6850
7063
|
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
|
|
@@ -7078,6 +7218,20 @@ module Aws::Connect
|
|
|
7078
7218
|
SENSITIVE: []
|
|
7079
7219
|
end
|
|
7080
7220
|
|
|
7221
|
+
class StartTestCaseExecutionRequest
|
|
7222
|
+
attr_accessor instance_id: ::String
|
|
7223
|
+
attr_accessor test_case_id: ::String
|
|
7224
|
+
attr_accessor client_token: ::String
|
|
7225
|
+
SENSITIVE: []
|
|
7226
|
+
end
|
|
7227
|
+
|
|
7228
|
+
class StartTestCaseExecutionResponse
|
|
7229
|
+
attr_accessor test_case_execution_id: ::String
|
|
7230
|
+
attr_accessor test_case_id: ::String
|
|
7231
|
+
attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
7232
|
+
SENSITIVE: []
|
|
7233
|
+
end
|
|
7234
|
+
|
|
7081
7235
|
class StartWebRTCContactRequest
|
|
7082
7236
|
attr_accessor attributes: ::Hash[::String, ::String]
|
|
7083
7237
|
attr_accessor client_token: ::String
|
|
@@ -7153,6 +7307,17 @@ module Aws::Connect
|
|
|
7153
7307
|
class StopContactStreamingResponse < Aws::EmptyStructure
|
|
7154
7308
|
end
|
|
7155
7309
|
|
|
7310
|
+
class StopTestCaseExecutionRequest
|
|
7311
|
+
attr_accessor instance_id: ::String
|
|
7312
|
+
attr_accessor test_case_execution_id: ::String
|
|
7313
|
+
attr_accessor test_case_id: ::String
|
|
7314
|
+
attr_accessor client_token: ::String
|
|
7315
|
+
SENSITIVE: []
|
|
7316
|
+
end
|
|
7317
|
+
|
|
7318
|
+
class StopTestCaseExecutionResponse < Aws::EmptyStructure
|
|
7319
|
+
end
|
|
7320
|
+
|
|
7156
7321
|
class StringCondition
|
|
7157
7322
|
attr_accessor field_name: ::String
|
|
7158
7323
|
attr_accessor value: ::String
|
|
@@ -7318,6 +7483,61 @@ module Aws::Connect
|
|
|
7318
7483
|
SENSITIVE: []
|
|
7319
7484
|
end
|
|
7320
7485
|
|
|
7486
|
+
class TestCase
|
|
7487
|
+
attr_accessor arn: ::String
|
|
7488
|
+
attr_accessor id: ::String
|
|
7489
|
+
attr_accessor name: ::String
|
|
7490
|
+
attr_accessor content: ::String
|
|
7491
|
+
attr_accessor entry_point: Types::TestCaseEntryPoint
|
|
7492
|
+
attr_accessor initialization_data: ::String
|
|
7493
|
+
attr_accessor description: ::String
|
|
7494
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
7495
|
+
attr_accessor last_modified_time: ::Time
|
|
7496
|
+
attr_accessor last_modified_region: ::String
|
|
7497
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
7498
|
+
attr_accessor test_case_sha_256: ::String
|
|
7499
|
+
SENSITIVE: []
|
|
7500
|
+
end
|
|
7501
|
+
|
|
7502
|
+
class TestCaseEntryPoint
|
|
7503
|
+
attr_accessor type: ("VOICE_CALL")
|
|
7504
|
+
attr_accessor voice_call_entry_point_parameters: Types::VoiceCallEntryPointParameters
|
|
7505
|
+
SENSITIVE: []
|
|
7506
|
+
end
|
|
7507
|
+
|
|
7508
|
+
class TestCaseExecution
|
|
7509
|
+
attr_accessor start_time: ::Time
|
|
7510
|
+
attr_accessor end_time: ::Time
|
|
7511
|
+
attr_accessor test_case_execution_id: ::String
|
|
7512
|
+
attr_accessor test_case_id: ::String
|
|
7513
|
+
attr_accessor test_case_execution_status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
7514
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
7515
|
+
SENSITIVE: []
|
|
7516
|
+
end
|
|
7517
|
+
|
|
7518
|
+
class TestCaseSearchCriteria
|
|
7519
|
+
attr_accessor or_conditions: ::Array[Types::TestCaseSearchCriteria]
|
|
7520
|
+
attr_accessor and_conditions: ::Array[Types::TestCaseSearchCriteria]
|
|
7521
|
+
attr_accessor string_condition: Types::StringCondition
|
|
7522
|
+
attr_accessor status_condition: ("PUBLISHED" | "SAVED")
|
|
7523
|
+
SENSITIVE: []
|
|
7524
|
+
end
|
|
7525
|
+
|
|
7526
|
+
class TestCaseSearchFilter
|
|
7527
|
+
attr_accessor tag_filter: Types::ControlPlaneTagFilter
|
|
7528
|
+
SENSITIVE: []
|
|
7529
|
+
end
|
|
7530
|
+
|
|
7531
|
+
class TestCaseSummary
|
|
7532
|
+
attr_accessor id: ::String
|
|
7533
|
+
attr_accessor arn: ::String
|
|
7534
|
+
attr_accessor name: ::String
|
|
7535
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
7536
|
+
attr_accessor last_modified_time: ::Time
|
|
7537
|
+
attr_accessor last_modified_region: ::String
|
|
7538
|
+
SENSITIVE: []
|
|
7539
|
+
end
|
|
7540
|
+
|
|
7321
7541
|
class Threshold
|
|
7322
7542
|
attr_accessor comparison: ("LT")
|
|
7323
7543
|
attr_accessor threshold_value: ::Float
|
|
@@ -7930,6 +8150,23 @@ module Aws::Connect
|
|
|
7930
8150
|
SENSITIVE: []
|
|
7931
8151
|
end
|
|
7932
8152
|
|
|
8153
|
+
class UpdateTestCaseRequest
|
|
8154
|
+
attr_accessor instance_id: ::String
|
|
8155
|
+
attr_accessor test_case_id: ::String
|
|
8156
|
+
attr_accessor content: ::String
|
|
8157
|
+
attr_accessor entry_point: Types::TestCaseEntryPoint
|
|
8158
|
+
attr_accessor initialization_data: ::String
|
|
8159
|
+
attr_accessor name: ::String
|
|
8160
|
+
attr_accessor description: ::String
|
|
8161
|
+
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
8162
|
+
attr_accessor last_modified_time: ::Time
|
|
8163
|
+
attr_accessor last_modified_region: ::String
|
|
8164
|
+
SENSITIVE: []
|
|
8165
|
+
end
|
|
8166
|
+
|
|
8167
|
+
class UpdateTestCaseResponse < Aws::EmptyStructure
|
|
8168
|
+
end
|
|
8169
|
+
|
|
7933
8170
|
class UpdateTrafficDistributionRequest
|
|
7934
8171
|
attr_accessor id: ::String
|
|
7935
8172
|
attr_accessor telephony_config: Types::TelephonyConfig
|
|
@@ -8343,6 +8580,13 @@ module Aws::Connect
|
|
|
8343
8580
|
SENSITIVE: []
|
|
8344
8581
|
end
|
|
8345
8582
|
|
|
8583
|
+
class VoiceCallEntryPointParameters
|
|
8584
|
+
attr_accessor source_phone_number: ::String
|
|
8585
|
+
attr_accessor destination_phone_number: ::String
|
|
8586
|
+
attr_accessor flow_id: ::String
|
|
8587
|
+
SENSITIVE: []
|
|
8588
|
+
end
|
|
8589
|
+
|
|
8346
8590
|
class VoiceRecordingConfiguration
|
|
8347
8591
|
attr_accessor voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")
|
|
8348
8592
|
attr_accessor ivr_recording_track: ("ALL")
|