aws-sdk-connect 1.252.0 → 1.253.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82ddc849a9d88d0af69a25c592525d49267e551615904fb3bcb1eb7099a2852e
4
- data.tar.gz: 482f5c7c1d8ccf678c8cb2028ae82b7b935ee23b51d0356a51adfaeee42b27b3
3
+ metadata.gz: be812616ea511f85efb066439ad4eab1fe4c037235474fb9c25c21a144871de1
4
+ data.tar.gz: ed8a4b9eb66081a23b7857b762ff68b95e5344c4e779f88a38ac10e8594fa28e
5
5
  SHA512:
6
- metadata.gz: 4824a6025003894a28ff1e240d579ac0d4dabcd785b163f35f4ef114e271012ac1c77e27d1cf54f666ad3707d5a9917a1ab5f08c262ad65835b321de79b333f9
7
- data.tar.gz: b679e1dc3d87d1ebf7c1e11a70b52daad5b4eabc2d8a733633b429640e55a357281245d6f2257d9a03e91ccf05519408801923204575da2edd0ba2855fd70cf2
6
+ metadata.gz: 3d9610b83ac97d5066d46f49f43967aa23c0687d04bc46bdc1c74b8684ccba67ec20cdbd7b947203db3c04feb2d27c32ec06fac1b5f9490e6b3c1a50c2e76fd0
7
+ data.tar.gz: 783ed184b08077dcfdcfc25f8a2b0c88a21537770da1a9b92c5e9ed14e9f1737610bcf071d14df2921addebc9a94f49c53e1f5cbb266dc37db45a566ba5c4fd9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.253.0 (2026-04-17)
5
+ ------------------
6
+
7
+ * Feature - Fixes in SDK for customers using TestCase APIs
8
+
4
9
  1.252.0 (2026-04-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.252.0
1
+ 1.253.0
@@ -17952,10 +17952,10 @@ module Aws::Connect
17952
17952
  # @option params [String] :test_case_name
17953
17953
  # Filter executions by test case name.
17954
17954
  #
17955
- # @option params [Time,DateTime,Date,Integer,String] :start_time
17955
+ # @option params [Integer] :start_time
17956
17956
  # Filter executions that started after this time.
17957
17957
  #
17958
- # @option params [Time,DateTime,Date,Integer,String] :end_time
17958
+ # @option params [Integer] :end_time
17959
17959
  # Filter executions that started before this time.
17960
17960
  #
17961
17961
  # @option params [String] :status
@@ -17980,8 +17980,8 @@ module Aws::Connect
17980
17980
  # instance_id: "InstanceId", # required
17981
17981
  # test_case_id: "TestCaseId",
17982
17982
  # test_case_name: "TestCaseName",
17983
- # start_time: Time.now,
17984
- # end_time: Time.now,
17983
+ # start_time: 1,
17984
+ # end_time: 1,
17985
17985
  # status: "INITIATED", # accepts INITIATED, PASSED, FAILED, IN_PROGRESS, STOPPED
17986
17986
  # next_token: "NextToken",
17987
17987
  # max_results: 1,
@@ -24003,6 +24003,9 @@ module Aws::Connect
24003
24003
  # SDK populates this field. For more information about idempotency, see
24004
24004
  # [Making retries safe with idempotent APIs][1].
24005
24005
  #
24006
+ # **A suitable default value is auto-generated.** You should normally
24007
+ # not need to pass this option.**
24008
+ #
24006
24009
  #
24007
24010
  #
24008
24011
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
@@ -24368,6 +24371,9 @@ module Aws::Connect
24368
24371
  # SDK populates this field. For more information about idempotency, see
24369
24372
  # [Making retries safe with idempotent APIs][1].
24370
24373
  #
24374
+ # **A suitable default value is auto-generated.** You should normally
24375
+ # not need to pass this option.**
24376
+ #
24371
24377
  #
24372
24378
  #
24373
24379
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
@@ -28896,7 +28902,7 @@ module Aws::Connect
28896
28902
  tracer: tracer
28897
28903
  )
28898
28904
  context[:gem_name] = 'aws-sdk-connect'
28899
- context[:gem_version] = '1.252.0'
28905
+ context[:gem_version] = '1.253.0'
28900
28906
  Seahorse::Client::Request.new(handlers, context)
28901
28907
  end
28902
28908
 
@@ -695,6 +695,7 @@ module Aws::Connect
695
695
  EndpointType = Shapes::StringShape.new(name: 'EndpointType')
696
696
  EntityArn = Shapes::StringShape.new(name: 'EntityArn')
697
697
  EntityType = Shapes::StringShape.new(name: 'EntityType')
698
+ EpochMilliseconds = Shapes::IntegerShape.new(name: 'EpochMilliseconds')
698
699
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
699
700
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
700
701
  ErrorResult = Shapes::StructureShape.new(name: 'ErrorResult')
@@ -6225,8 +6226,8 @@ module Aws::Connect
6225
6226
  ListTestCaseExecutionsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
6226
6227
  ListTestCaseExecutionsRequest.add_member(:test_case_id, Shapes::ShapeRef.new(shape: TestCaseId, location: "querystring", location_name: "testCaseId"))
6227
6228
  ListTestCaseExecutionsRequest.add_member(:test_case_name, Shapes::ShapeRef.new(shape: TestCaseName, location: "querystring", location_name: "testCaseName"))
6228
- ListTestCaseExecutionsRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "startTime"))
6229
- ListTestCaseExecutionsRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "endTime"))
6229
+ ListTestCaseExecutionsRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: EpochMilliseconds, location: "querystring", location_name: "startTime"))
6230
+ ListTestCaseExecutionsRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: EpochMilliseconds, location: "querystring", location_name: "endTime"))
6230
6231
  ListTestCaseExecutionsRequest.add_member(:status, Shapes::ShapeRef.new(shape: TestCaseExecutionStatus, location: "querystring", location_name: "status"))
6231
6232
  ListTestCaseExecutionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
6232
6233
  ListTestCaseExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
@@ -8066,7 +8067,7 @@ module Aws::Connect
8066
8067
 
8067
8068
  StartTestCaseExecutionRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
8068
8069
  StartTestCaseExecutionRequest.add_member(:test_case_id, Shapes::ShapeRef.new(shape: TestCaseId, required: true, location: "uri", location_name: "TestCaseId"))
8069
- StartTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
8070
+ StartTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
8070
8071
  StartTestCaseExecutionRequest.struct_class = Types::StartTestCaseExecutionRequest
8071
8072
 
8072
8073
  StartTestCaseExecutionResponse.add_member(:test_case_execution_id, Shapes::ShapeRef.new(shape: TestCaseExecutionId, location_name: "TestCaseExecutionId"))
@@ -8136,7 +8137,7 @@ module Aws::Connect
8136
8137
  StopTestCaseExecutionRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
8137
8138
  StopTestCaseExecutionRequest.add_member(:test_case_execution_id, Shapes::ShapeRef.new(shape: TestCaseExecutionId, required: true, location: "uri", location_name: "TestCaseExecutionId"))
8138
8139
  StopTestCaseExecutionRequest.add_member(:test_case_id, Shapes::ShapeRef.new(shape: TestCaseId, required: true, location: "uri", location_name: "TestCaseId"))
8139
- StopTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
8140
+ StopTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
8140
8141
  StopTestCaseExecutionRequest.struct_class = Types::StopTestCaseExecutionRequest
8141
8142
 
8142
8143
  StopTestCaseExecutionResponse.struct_class = Types::StopTestCaseExecutionResponse
@@ -23006,11 +23006,11 @@ module Aws::Connect
23006
23006
  #
23007
23007
  # @!attribute [rw] start_time
23008
23008
  # Filter executions that started after this time.
23009
- # @return [Time]
23009
+ # @return [Integer]
23010
23010
  #
23011
23011
  # @!attribute [rw] end_time
23012
23012
  # Filter executions that started before this time.
23013
- # @return [Time]
23013
+ # @return [Integer]
23014
23014
  #
23015
23015
  # @!attribute [rw] status
23016
23016
  # Filter executions by status.
@@ -32088,6 +32088,9 @@ module Aws::Connect
32088
32088
  # SDK populates this field. For more information about idempotency,
32089
32089
  # see [Making retries safe with idempotent APIs][1].
32090
32090
  #
32091
+ # **A suitable default value is auto-generated.** You should normally
32092
+ # not need to pass this option.
32093
+ #
32091
32094
  #
32092
32095
  #
32093
32096
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
@@ -32451,6 +32454,9 @@ module Aws::Connect
32451
32454
  # SDK populates this field. For more information about idempotency,
32452
32455
  # see [Making retries safe with idempotent APIs][1].
32453
32456
  #
32457
+ # **A suitable default value is auto-generated.** You should normally
32458
+ # not need to pass this option.
32459
+ #
32454
32460
  #
32455
32461
  #
32456
32462
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
@@ -33100,7 +33106,8 @@ module Aws::Connect
33100
33106
  # @return [Types::TestCaseEntryPoint]
33101
33107
  #
33102
33108
  # @!attribute [rw] initialization_data
33103
- # Defines the test attributes for precise data representation.
33109
+ # Defines the test attributes for precise data representation. The
33110
+ # value must be a valid JSON string.
33104
33111
  # @return [String]
33105
33112
  #
33106
33113
  # @!attribute [rw] description
@@ -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.252.0'
57
+ GEM_VERSION = '1.253.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -3868,8 +3868,8 @@ module Aws
3868
3868
  instance_id: ::String,
3869
3869
  ?test_case_id: ::String,
3870
3870
  ?test_case_name: ::String,
3871
- ?start_time: ::Time,
3872
- ?end_time: ::Time,
3871
+ ?start_time: ::Integer,
3872
+ ?end_time: ::Integer,
3873
3873
  ?status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED"),
3874
3874
  ?next_token: ::String,
3875
3875
  ?max_results: ::Integer
data/sig/types.rbs CHANGED
@@ -5209,8 +5209,8 @@ module Aws::Connect
5209
5209
  attr_accessor instance_id: ::String
5210
5210
  attr_accessor test_case_id: ::String
5211
5211
  attr_accessor test_case_name: ::String
5212
- attr_accessor start_time: ::Time
5213
- attr_accessor end_time: ::Time
5212
+ attr_accessor start_time: ::Integer
5213
+ attr_accessor end_time: ::Integer
5214
5214
  attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
5215
5215
  attr_accessor next_token: ::String
5216
5216
  attr_accessor max_results: ::Integer
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.252.0
4
+ version: 1.253.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services