aws-sdk-synthetics 1.82.0 → 1.84.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: 6b9ee29b24b1179b5a86823011367e4ec95e7f925839c632d9010c067589d879
4
- data.tar.gz: df4f8c09e672c8f9ed66c3f5303b32ed8f6aaa64f836d47092d0719caf856060
3
+ metadata.gz: 582d4c027232416d704a8488be822733d9e1d416bf1e139a81939d1fcf5984c0
4
+ data.tar.gz: b4d386a1e30bd9d6e19ce0e0d2a65cd52f3e6a4fb5fc114a02cc3fa18c2d1381
5
5
  SHA512:
6
- metadata.gz: '09f266222a3a17cda437e8f0d0bbdf8a292467cff874f09147b052db8fca5d0bb78c62ec7c98d8535359ed7a36d958e8b55385b784fb4570c3df9e6a37033ac7'
7
- data.tar.gz: 28171a287caa77d10ce5e78c3a20de7a053fc352f088ceea717f8c19ad937de013d39e6321c21f5a2d8904304c3ff8a0afeaa81d0eb7bbc8d1fef20b0bd72379
6
+ metadata.gz: 3d7daaa3e5611e51e17287199b2be1883d8a70ba82580fa7a01db3c8d5787ea9db4f1b996e48462a230ad0c400728b2b6b84bc7333d7d10a3a297ae8e3f8c1fc
7
+ data.tar.gz: 80f353d3b9898f270fec37565f0fa346e9293d6b140311293f8be1c24bf0bcabf1892a81e5d36f54bb7467bc05c6544b281ce90737b0c543ff79b7589470b46a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.83.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.82.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.84.0
@@ -199,7 +199,7 @@ module Aws::Synthetics
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::Synthetics
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -2391,7 +2389,7 @@ module Aws::Synthetics
2391
2389
  tracer: tracer
2392
2390
  )
2393
2391
  context[:gem_name] = 'aws-sdk-synthetics'
2394
- context[:gem_version] = '1.82.0'
2392
+ context[:gem_version] = '1.84.0'
2395
2393
  Seahorse::Client::Request.new(handlers, context)
2396
2394
  end
2397
2395
 
@@ -54,7 +54,7 @@ module Aws::Synthetics
54
54
  autoload :EndpointProvider, 'aws-sdk-synthetics/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-synthetics/endpoints'
56
56
 
57
- GEM_VERSION = '1.82.0'
57
+ GEM_VERSION = '1.84.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -95,20 +95,7 @@ module Aws
95
95
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#create_canary-instance_method
96
96
  def create_canary: (
97
97
  name: ::String,
98
- code: {
99
- s3_bucket: ::String?,
100
- s3_key: ::String?,
101
- s3_version: ::String?,
102
- zip_file: ::String?,
103
- handler: ::String?,
104
- blueprint_types: Array[::String]?,
105
- dependencies: Array[
106
- {
107
- type: ("LambdaLayer")?,
108
- reference: ::String
109
- },
110
- ]?
111
- },
98
+ code: Params::canary_code_input,
112
99
  artifact_s3_location: ::String,
113
100
  execution_role_arn: ::String,
114
101
  schedule: {
@@ -138,7 +125,7 @@ module Aws
138
125
  ?browser_configs: Array[
139
126
  {
140
127
  browser_type: ("CHROME" | "FIREFOX")?
141
- },
128
+ }
142
129
  ],
143
130
  ?tags: Hash[::String, ::String],
144
131
  ?artifact_config: {
@@ -329,20 +316,7 @@ module Aws
329
316
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#start_canary_dry_run-instance_method
330
317
  def start_canary_dry_run: (
331
318
  name: ::String,
332
- ?code: {
333
- s3_bucket: ::String?,
334
- s3_key: ::String?,
335
- s3_version: ::String?,
336
- zip_file: ::String?,
337
- handler: ::String?,
338
- blueprint_types: Array[::String]?,
339
- dependencies: Array[
340
- {
341
- type: ("LambdaLayer")?,
342
- reference: ::String
343
- },
344
- ]?
345
- },
319
+ ?code: Params::canary_code_input,
346
320
  ?runtime_version: ::String,
347
321
  ?run_config: {
348
322
  timeout_in_seconds: ::Integer?,
@@ -359,16 +333,7 @@ module Aws
359
333
  ?execution_role_arn: ::String,
360
334
  ?success_retention_period_in_days: ::Integer,
361
335
  ?failure_retention_period_in_days: ::Integer,
362
- ?visual_reference: {
363
- base_screenshots: Array[
364
- {
365
- screenshot_name: ::String,
366
- ignore_coordinates: Array[::String]?
367
- },
368
- ]?,
369
- base_canary_run_id: ::String,
370
- browser_type: ("CHROME" | "FIREFOX")?
371
- },
336
+ ?visual_reference: Params::visual_reference_input,
372
337
  ?artifact_s3_location: ::String,
373
338
  ?artifact_config: {
374
339
  s3_encryption: {
@@ -380,19 +345,10 @@ module Aws
380
345
  ?browser_configs: Array[
381
346
  {
382
347
  browser_type: ("CHROME" | "FIREFOX")?
383
- },
348
+ }
384
349
  ],
385
350
  ?visual_references: Array[
386
- {
387
- base_screenshots: Array[
388
- {
389
- screenshot_name: ::String,
390
- ignore_coordinates: Array[::String]?
391
- },
392
- ]?,
393
- base_canary_run_id: ::String,
394
- browser_type: ("CHROME" | "FIREFOX")?
395
- },
351
+ Params::visual_reference_input
396
352
  ]
397
353
  ) -> _StartCanaryDryRunResponseSuccess
398
354
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCanaryDryRunResponseSuccess
@@ -432,20 +388,7 @@ module Aws
432
388
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Synthetics/Client.html#update_canary-instance_method
433
389
  def update_canary: (
434
390
  name: ::String,
435
- ?code: {
436
- s3_bucket: ::String?,
437
- s3_key: ::String?,
438
- s3_version: ::String?,
439
- zip_file: ::String?,
440
- handler: ::String?,
441
- blueprint_types: Array[::String]?,
442
- dependencies: Array[
443
- {
444
- type: ("LambdaLayer")?,
445
- reference: ::String
446
- },
447
- ]?
448
- },
391
+ ?code: Params::canary_code_input,
449
392
  ?execution_role_arn: ::String,
450
393
  ?runtime_version: ::String,
451
394
  ?schedule: {
@@ -469,16 +412,7 @@ module Aws
469
412
  security_group_ids: Array[::String]?,
470
413
  ipv_6_allowed_for_dual_stack: bool?
471
414
  },
472
- ?visual_reference: {
473
- base_screenshots: Array[
474
- {
475
- screenshot_name: ::String,
476
- ignore_coordinates: Array[::String]?
477
- },
478
- ]?,
479
- base_canary_run_id: ::String,
480
- browser_type: ("CHROME" | "FIREFOX")?
481
- },
415
+ ?visual_reference: Params::visual_reference_input,
482
416
  ?artifact_s3_location: ::String,
483
417
  ?artifact_config: {
484
418
  s3_encryption: {
@@ -489,21 +423,12 @@ module Aws
489
423
  ?provisioned_resource_cleanup: ("AUTOMATIC" | "OFF"),
490
424
  ?dry_run_id: ::String,
491
425
  ?visual_references: Array[
492
- {
493
- base_screenshots: Array[
494
- {
495
- screenshot_name: ::String,
496
- ignore_coordinates: Array[::String]?
497
- },
498
- ]?,
499
- base_canary_run_id: ::String,
500
- browser_type: ("CHROME" | "FIREFOX")?
501
- },
426
+ Params::visual_reference_input
502
427
  ],
503
428
  ?browser_configs: Array[
504
429
  {
505
430
  browser_type: ("CHROME" | "FIREFOX")?
506
- },
431
+ }
507
432
  ]
508
433
  ) -> _UpdateCanaryResponseSuccess
509
434
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCanaryResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,39 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Synthetics
10
+ module Params
11
+ type canary_code_input = {
12
+ s3_bucket: ::String?,
13
+ s3_key: ::String?,
14
+ s3_version: ::String?,
15
+ zip_file: ::String?,
16
+ handler: ::String?,
17
+ blueprint_types: Array[::String]?,
18
+ dependencies: Array[
19
+ {
20
+ type: ("LambdaLayer")?,
21
+ reference: ::String
22
+ }
23
+ ]?
24
+ }
25
+
26
+ type visual_reference_input = {
27
+ base_screenshots: Array[
28
+ {
29
+ screenshot_name: ::String,
30
+ ignore_coordinates: Array[::String]?
31
+ }
32
+ ]?,
33
+ base_canary_run_id: ::String,
34
+ browser_type: ("CHROME" | "FIREFOX")?
35
+ }
36
+
37
+ end
38
+ end
39
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-synthetics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.82.0
4
+ version: 1.84.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-synthetics/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs