aws-sdk-synthetics 1.57.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 889950dbefacfd954f9d332c4982a6ffe8904526536e56e97f1dc8ffdfad9ae5
4
- data.tar.gz: e340340f6411b6e04dc8f7e5822127e44fe34f82e2134c62e0331dd231ee9d54
3
+ metadata.gz: 145a221fc386e819d2d349b97ca9858f7daf4aec6d1c26268c7318524bd1e591
4
+ data.tar.gz: 772bf756ab83a3a88b62ea6fe8b5a4a7b9c606084305f955da70684c72c204cf
5
5
  SHA512:
6
- metadata.gz: 6a2002d0e6b97437db9d9e5b43e0a2cb960249f6351cbec982fc97ec179fcbcc89f574433085e569bde79dbd04d1654caa8fdff3a60473c4a22a56d7628bf5fb
7
- data.tar.gz: 293738863741b86354d9706b4823eda630cb32ec15226e47ca678916b7a74dc3701dd467106cec8398eee13abb3e3e0e2b54930d8f28e883b75526fd118f4952
6
+ metadata.gz: c185d0a8fa5c035bb9c84b2c0b2d443d0eb5d033b83fc151b159a39066ae0826edf49cb6562e5a95ce9e70c70e616f3d8e82d109f523875ed0d8e0a5f4542347
7
+ data.tar.gz: 80d03318d12d19e1eae1c2b67dbfbe4a7f7275a5415c061a9d9a50fcac0eb01ac78478e08706630b8401d0508d423d035c1f95e7e66a5a3cb9fb475689b7cec6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2024-12-17)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.57.0 (2024-11-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
@@ -662,6 +662,7 @@ module Aws::Synthetics
662
662
  # vpc_config: {
663
663
  # subnet_ids: ["SubnetId"],
664
664
  # security_group_ids: ["SecurityGroupId"],
665
+ # ipv_6_allowed_for_dual_stack: false,
665
666
  # },
666
667
  # resources_to_replicate_tags: ["lambda-function"], # accepts lambda-function
667
668
  # provisioned_resource_cleanup: "AUTOMATIC", # accepts AUTOMATIC, OFF
@@ -705,6 +706,7 @@ module Aws::Synthetics
705
706
  # resp.canary.vpc_config.subnet_ids[0] #=> String
706
707
  # resp.canary.vpc_config.security_group_ids #=> Array
707
708
  # resp.canary.vpc_config.security_group_ids[0] #=> String
709
+ # resp.canary.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
708
710
  # resp.canary.visual_reference.base_screenshots #=> Array
709
711
  # resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
710
712
  # resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
@@ -986,6 +988,7 @@ module Aws::Synthetics
986
988
  # resp.canaries[0].vpc_config.subnet_ids[0] #=> String
987
989
  # resp.canaries[0].vpc_config.security_group_ids #=> Array
988
990
  # resp.canaries[0].vpc_config.security_group_ids[0] #=> String
991
+ # resp.canaries[0].vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
989
992
  # resp.canaries[0].visual_reference.base_screenshots #=> Array
990
993
  # resp.canaries[0].visual_reference.base_screenshots[0].screenshot_name #=> String
991
994
  # resp.canaries[0].visual_reference.base_screenshots[0].ignore_coordinates #=> Array
@@ -1220,6 +1223,7 @@ module Aws::Synthetics
1220
1223
  # resp.canary.vpc_config.subnet_ids[0] #=> String
1221
1224
  # resp.canary.vpc_config.security_group_ids #=> Array
1222
1225
  # resp.canary.vpc_config.security_group_ids[0] #=> String
1226
+ # resp.canary.vpc_config.ipv_6_allowed_for_dual_stack #=> Boolean
1223
1227
  # resp.canary.visual_reference.base_screenshots #=> Array
1224
1228
  # resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
1225
1229
  # resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
@@ -1801,6 +1805,7 @@ module Aws::Synthetics
1801
1805
  # vpc_config: {
1802
1806
  # subnet_ids: ["SubnetId"],
1803
1807
  # security_group_ids: ["SecurityGroupId"],
1808
+ # ipv_6_allowed_for_dual_stack: false,
1804
1809
  # },
1805
1810
  # visual_reference: {
1806
1811
  # base_screenshots: [
@@ -1848,7 +1853,7 @@ module Aws::Synthetics
1848
1853
  tracer: tracer
1849
1854
  )
1850
1855
  context[:gem_name] = 'aws-sdk-synthetics'
1851
- context[:gem_version] = '1.57.0'
1856
+ context[:gem_version] = '1.58.0'
1852
1857
  Seahorse::Client::Request.new(handlers, context)
1853
1858
  end
1854
1859
 
@@ -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 any past run of this canary.
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
@@ -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.57.0'
57
+ GEM_VERSION = '1.58.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -116,7 +116,8 @@ module Aws
116
116
  runtime_version: ::String,
117
117
  ?vpc_config: {
118
118
  subnet_ids: Array[::String]?,
119
- security_group_ids: Array[::String]?
119
+ security_group_ids: Array[::String]?,
120
+ ipv_6_allowed_for_dual_stack: bool?
120
121
  },
121
122
  ?resources_to_replicate_tags: Array[("lambda-function")],
122
123
  ?provisioned_resource_cleanup: ("AUTOMATIC" | "OFF"),
@@ -356,7 +357,8 @@ module Aws
356
357
  ?failure_retention_period_in_days: ::Integer,
357
358
  ?vpc_config: {
358
359
  subnet_ids: Array[::String]?,
359
- security_group_ids: Array[::String]?
360
+ security_group_ids: Array[::String]?,
361
+ ipv_6_allowed_for_dual_stack: bool?
360
362
  },
361
363
  ?visual_reference: {
362
364
  base_screenshots: Array[
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.57.0
4
+ version: 1.58.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: 2024-11-07 00:00:00.000000000 Z
11
+ date: 2024-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core