aws-sdk-synthetics 1.57.0 → 1.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-synthetics/client.rb +29 -1
- data/lib/aws-sdk-synthetics/client_api.rb +2 -0
- data/lib/aws-sdk-synthetics/types.rb +17 -3
- data/lib/aws-sdk-synthetics.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc68f140009c1f442c96c510ae74b6afb99987af244c92755494c6141a240748
|
4
|
+
data.tar.gz: ba19dde63c0d16f242323ed08501e641117ef3b939783f09418e931ffb9f5288
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d28b14dbefdfc0deea64a8ed3bc679a8309eb020eaa83fcf01a117f067266a3e15c3dedcc50221a8832e238dce40ed9891ae769d9272170aff421be3c20d64a
|
7
|
+
data.tar.gz: b2ae7fdc3dccc6af869f7182fc3a1906bce07ed50350df0f825d7e3f9f6e56c19bcbbbdee6a847508b672fc721f5f789a5d8efc4c2cef202c46b6318eae313b8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.59.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.58.0 (2024-12-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support to toggle outbound IPv6 traffic on canaries connected to dualstack subnets. This behavior can be controlled via the new Ipv6AllowedForDualStack parameter of the VpcConfig input object in CreateCanary and UpdateCanary APIs.
|
13
|
+
|
4
14
|
1.57.0 (2024-11-07)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.59.0
|
@@ -257,11 +257,34 @@ module Aws::Synthetics
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -662,6 +685,7 @@ module Aws::Synthetics
|
|
662
685
|
# vpc_config: {
|
663
686
|
# subnet_ids: ["SubnetId"],
|
664
687
|
# security_group_ids: ["SecurityGroupId"],
|
688
|
+
# ipv_6_allowed_for_dual_stack: false,
|
665
689
|
# },
|
666
690
|
# resources_to_replicate_tags: ["lambda-function"], # accepts lambda-function
|
667
691
|
# provisioned_resource_cleanup: "AUTOMATIC", # accepts AUTOMATIC, OFF
|
@@ -705,6 +729,7 @@ module Aws::Synthetics
|
|
705
729
|
# resp.canary.vpc_config.subnet_ids[0] #=> String
|
706
730
|
# resp.canary.vpc_config.security_group_ids #=> Array
|
707
731
|
# resp.canary.vpc_config.security_group_ids[0] #=> String
|
732
|
+
# resp.canary.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
708
733
|
# resp.canary.visual_reference.base_screenshots #=> Array
|
709
734
|
# resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
|
710
735
|
# resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
|
@@ -986,6 +1011,7 @@ module Aws::Synthetics
|
|
986
1011
|
# resp.canaries[0].vpc_config.subnet_ids[0] #=> String
|
987
1012
|
# resp.canaries[0].vpc_config.security_group_ids #=> Array
|
988
1013
|
# resp.canaries[0].vpc_config.security_group_ids[0] #=> String
|
1014
|
+
# resp.canaries[0].vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
989
1015
|
# resp.canaries[0].visual_reference.base_screenshots #=> Array
|
990
1016
|
# resp.canaries[0].visual_reference.base_screenshots[0].screenshot_name #=> String
|
991
1017
|
# resp.canaries[0].visual_reference.base_screenshots[0].ignore_coordinates #=> Array
|
@@ -1220,6 +1246,7 @@ module Aws::Synthetics
|
|
1220
1246
|
# resp.canary.vpc_config.subnet_ids[0] #=> String
|
1221
1247
|
# resp.canary.vpc_config.security_group_ids #=> Array
|
1222
1248
|
# resp.canary.vpc_config.security_group_ids[0] #=> String
|
1249
|
+
# resp.canary.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
|
1223
1250
|
# resp.canary.visual_reference.base_screenshots #=> Array
|
1224
1251
|
# resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
|
1225
1252
|
# resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
|
@@ -1801,6 +1828,7 @@ module Aws::Synthetics
|
|
1801
1828
|
# vpc_config: {
|
1802
1829
|
# subnet_ids: ["SubnetId"],
|
1803
1830
|
# security_group_ids: ["SecurityGroupId"],
|
1831
|
+
# ipv_6_allowed_for_dual_stack: false,
|
1804
1832
|
# },
|
1805
1833
|
# visual_reference: {
|
1806
1834
|
# base_screenshots: [
|
@@ -1848,7 +1876,7 @@ module Aws::Synthetics
|
|
1848
1876
|
tracer: tracer
|
1849
1877
|
)
|
1850
1878
|
context[:gem_name] = 'aws-sdk-synthetics'
|
1851
|
-
context[:gem_version] = '1.
|
1879
|
+
context[:gem_version] = '1.59.0'
|
1852
1880
|
Seahorse::Client::Request.new(handlers, context)
|
1853
1881
|
end
|
1854
1882
|
|
@@ -503,11 +503,13 @@ module Aws::Synthetics
|
|
503
503
|
|
504
504
|
VpcConfigInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
|
505
505
|
VpcConfigInput.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
506
|
+
VpcConfigInput.add_member(:ipv_6_allowed_for_dual_stack, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Ipv6AllowedForDualStack"))
|
506
507
|
VpcConfigInput.struct_class = Types::VpcConfigInput
|
507
508
|
|
508
509
|
VpcConfigOutput.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
509
510
|
VpcConfigOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
|
510
511
|
VpcConfigOutput.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
512
|
+
VpcConfigOutput.add_member(:ipv_6_allowed_for_dual_stack, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Ipv6AllowedForDualStack"))
|
511
513
|
VpcConfigOutput.struct_class = Types::VpcConfigOutput
|
512
514
|
|
513
515
|
|
@@ -1918,7 +1918,9 @@ module Aws::Synthetics
|
|
1918
1918
|
# are `nextrun` to use the screenshots from the next run after this
|
1919
1919
|
# update is made, `lastrun` to use the screenshots from the most
|
1920
1920
|
# recent run before this update was made, or the value of `Id` in the
|
1921
|
-
# [ CanaryRun][1] from
|
1921
|
+
# [ CanaryRun][1] from a run of this a canary in the past 31 days. If
|
1922
|
+
# you specify the `Id` of a canary run older than 31 days, the
|
1923
|
+
# operation returns a 400 validation exception error..
|
1922
1924
|
#
|
1923
1925
|
#
|
1924
1926
|
#
|
@@ -1977,11 +1979,17 @@ module Aws::Synthetics
|
|
1977
1979
|
# The IDs of the security groups for this canary.
|
1978
1980
|
# @return [Array<String>]
|
1979
1981
|
#
|
1982
|
+
# @!attribute [rw] ipv_6_allowed_for_dual_stack
|
1983
|
+
# Set this to `true` to allow outbound IPv6 traffic on VPC canaries
|
1984
|
+
# that are connected to dual-stack subnets. The default is `false`
|
1985
|
+
# @return [Boolean]
|
1986
|
+
#
|
1980
1987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/VpcConfigInput AWS API Documentation
|
1981
1988
|
#
|
1982
1989
|
class VpcConfigInput < Struct.new(
|
1983
1990
|
:subnet_ids,
|
1984
|
-
:security_group_ids
|
1991
|
+
:security_group_ids,
|
1992
|
+
:ipv_6_allowed_for_dual_stack)
|
1985
1993
|
SENSITIVE = []
|
1986
1994
|
include Aws::Structure
|
1987
1995
|
end
|
@@ -2006,12 +2014,18 @@ module Aws::Synthetics
|
|
2006
2014
|
# The IDs of the security groups for this canary.
|
2007
2015
|
# @return [Array<String>]
|
2008
2016
|
#
|
2017
|
+
# @!attribute [rw] ipv_6_allowed_for_dual_stack
|
2018
|
+
# Indicates whether this canary allows outbound IPv6 traffic if it is
|
2019
|
+
# connected to dual-stack subnets.
|
2020
|
+
# @return [Boolean]
|
2021
|
+
#
|
2009
2022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/VpcConfigOutput AWS API Documentation
|
2010
2023
|
#
|
2011
2024
|
class VpcConfigOutput < Struct.new(
|
2012
2025
|
:vpc_id,
|
2013
2026
|
:subnet_ids,
|
2014
|
-
:security_group_ids
|
2027
|
+
:security_group_ids,
|
2028
|
+
:ipv_6_allowed_for_dual_stack)
|
2015
2029
|
SENSITIVE = []
|
2016
2030
|
include Aws::Structure
|
2017
2031
|
end
|
data/lib/aws-sdk-synthetics.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -116,7 +118,8 @@ module Aws
|
|
116
118
|
runtime_version: ::String,
|
117
119
|
?vpc_config: {
|
118
120
|
subnet_ids: Array[::String]?,
|
119
|
-
security_group_ids: Array[::String]
|
121
|
+
security_group_ids: Array[::String]?,
|
122
|
+
ipv_6_allowed_for_dual_stack: bool?
|
120
123
|
},
|
121
124
|
?resources_to_replicate_tags: Array[("lambda-function")],
|
122
125
|
?provisioned_resource_cleanup: ("AUTOMATIC" | "OFF"),
|
@@ -356,7 +359,8 @@ module Aws
|
|
356
359
|
?failure_retention_period_in_days: ::Integer,
|
357
360
|
?vpc_config: {
|
358
361
|
subnet_ids: Array[::String]?,
|
359
|
-
security_group_ids: Array[::String]
|
362
|
+
security_group_ids: Array[::String]?,
|
363
|
+
ipv_6_allowed_for_dual_stack: bool?
|
360
364
|
},
|
361
365
|
?visual_reference: {
|
362
366
|
base_screenshots: Array[
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -469,6 +469,7 @@ module Aws::Synthetics
|
|
469
469
|
class VpcConfigInput
|
470
470
|
attr_accessor subnet_ids: ::Array[::String]
|
471
471
|
attr_accessor security_group_ids: ::Array[::String]
|
472
|
+
attr_accessor ipv_6_allowed_for_dual_stack: bool
|
472
473
|
SENSITIVE: []
|
473
474
|
end
|
474
475
|
|
@@ -476,6 +477,7 @@ module Aws::Synthetics
|
|
476
477
|
attr_accessor vpc_id: ::String
|
477
478
|
attr_accessor subnet_ids: ::Array[::String]
|
478
479
|
attr_accessor security_group_ids: ::Array[::String]
|
480
|
+
attr_accessor ipv_6_allowed_for_dual_stack: bool
|
479
481
|
SENSITIVE: []
|
480
482
|
end
|
481
483
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-synthetics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.59.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|