aws-sdk-lightsail 1.128.0 → 1.129.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: 3b541fe8e4f93badc6396d3a34297c94d6f5f68c3ef5bae5459866b1ac930c24
4
- data.tar.gz: 613fdf0d15b695de2d06cfe1497a24db3192105c4a970eef74cfb6cdae0cf331
3
+ metadata.gz: b3cd4e359214d9f98974974b0caefc47010cf2df13937aa30ea9f53a544f38ce
4
+ data.tar.gz: '0781ae2d9ddd2160e4e8d76e53ca4c5a42120faab0f8f4b625edf48bd623bcd2'
5
5
  SHA512:
6
- metadata.gz: eab4d556eda2afc7bcbd513ee161d6cc9248f55492140e0e0392c5721d013490a87ec1f6ba6a70bf34b33cce6df27db120367659d1fe5621bf8d9c23bc854678
7
- data.tar.gz: 220126277e2d06342370e11735ad290be84289f177618bf02c88564efa78b36c8998540a37b108ceead8a3e8d7c094e3ba5f4e9d1c7aee1cb5c82632cbafb9a7
6
+ metadata.gz: b95099eca149a9f40913d358d2cbd0d7afa75528e53695f9f45ad6df7d7e387916054a54d76fc16870727211f057a1bee088e1b1efbc88b8583cd26a85c71d69
7
+ data.tar.gz: 4e0b050651c1974b3a40ee5051858ffef65c7966410c5294da351926a287089fede07a56cc23d278eadf0ddd1b80c1c77026b92d4c31e2e87de2225d85483f3b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.129.0 (2026-05-13)
5
+ ------------------
6
+
7
+ * Feature - Added OriginIpAddressTypeEnum (ipv4, ipv6, dualstack) and ipAddressType field to Origin and InputOrigin structures for Lightsail CDN distributions. Allows customers to specify how the distribution connects to origins, using IPv4, IPv6, or dualstack networking
8
+
4
9
  1.128.0 (2026-04-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.128.0
1
+ 1.129.0
@@ -2419,6 +2419,7 @@ module Aws::Lightsail
2419
2419
  # region_name: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-north-1, ca-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-southeast-3, ap-southeast-5
2420
2420
  # protocol_policy: "http-only", # accepts http-only, https-only
2421
2421
  # response_timeout: 1,
2422
+ # ip_address_type: "ipv4", # accepts ipv4, ipv6, dualstack
2422
2423
  # },
2423
2424
  # default_cache_behavior: { # required
2424
2425
  # behavior: "dont-cache", # accepts dont-cache, cache
@@ -2481,6 +2482,7 @@ module Aws::Lightsail
2481
2482
  # resp.distribution.origin.region_name #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-north-1", "ca-central-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-southeast-3", "ap-southeast-5"
2482
2483
  # resp.distribution.origin.protocol_policy #=> String, one of "http-only", "https-only"
2483
2484
  # resp.distribution.origin.response_timeout #=> Integer
2485
+ # resp.distribution.origin.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
2484
2486
  # resp.distribution.origin_public_dns #=> String
2485
2487
  # resp.distribution.default_cache_behavior.behavior #=> String, one of "dont-cache", "cache"
2486
2488
  # resp.distribution.cache_behavior_settings.default_ttl #=> Integer
@@ -7397,6 +7399,7 @@ module Aws::Lightsail
7397
7399
  # resp.distributions[0].origin.region_name #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "eu-north-1", "ca-central-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-southeast-3", "ap-southeast-5"
7398
7400
  # resp.distributions[0].origin.protocol_policy #=> String, one of "http-only", "https-only"
7399
7401
  # resp.distributions[0].origin.response_timeout #=> Integer
7402
+ # resp.distributions[0].origin.ip_address_type #=> String, one of "ipv4", "ipv6", "dualstack"
7400
7403
  # resp.distributions[0].origin_public_dns #=> String
7401
7404
  # resp.distributions[0].default_cache_behavior.behavior #=> String, one of "dont-cache", "cache"
7402
7405
  # resp.distributions[0].cache_behavior_settings.default_ttl #=> Integer
@@ -11968,6 +11971,7 @@ module Aws::Lightsail
11968
11971
  # region_name: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, eu-north-1, ca-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-southeast-3, ap-southeast-5
11969
11972
  # protocol_policy: "http-only", # accepts http-only, https-only
11970
11973
  # response_timeout: 1,
11974
+ # ip_address_type: "ipv4", # accepts ipv4, ipv6, dualstack
11971
11975
  # },
11972
11976
  # default_cache_behavior: {
11973
11977
  # behavior: "dont-cache", # accepts dont-cache, cache
@@ -12600,7 +12604,7 @@ module Aws::Lightsail
12600
12604
  tracer: tracer
12601
12605
  )
12602
12606
  context[:gem_name] = 'aws-sdk-lightsail'
12603
- context[:gem_version] = '1.128.0'
12607
+ context[:gem_version] = '1.129.0'
12604
12608
  Seahorse::Client::Request.new(handlers, context)
12605
12609
  end
12606
12610
 
@@ -528,6 +528,7 @@ module Aws::Lightsail
528
528
  OperationStatus = Shapes::StringShape.new(name: 'OperationStatus')
529
529
  OperationType = Shapes::StringShape.new(name: 'OperationType')
530
530
  Origin = Shapes::StructureShape.new(name: 'Origin')
531
+ OriginIpAddressTypeEnum = Shapes::StringShape.new(name: 'OriginIpAddressTypeEnum')
531
532
  OriginProtocolPolicyEnum = Shapes::StringShape.new(name: 'OriginProtocolPolicyEnum')
532
533
  PartnerIdList = Shapes::ListShape.new(name: 'PartnerIdList')
533
534
  PasswordData = Shapes::StructureShape.new(name: 'PasswordData')
@@ -2281,6 +2282,7 @@ module Aws::Lightsail
2281
2282
  InputOrigin.add_member(:region_name, Shapes::ShapeRef.new(shape: RegionName, location_name: "regionName"))
2282
2283
  InputOrigin.add_member(:protocol_policy, Shapes::ShapeRef.new(shape: OriginProtocolPolicyEnum, location_name: "protocolPolicy"))
2283
2284
  InputOrigin.add_member(:response_timeout, Shapes::ShapeRef.new(shape: integer, location_name: "responseTimeout"))
2285
+ InputOrigin.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: OriginIpAddressTypeEnum, location_name: "ipAddressType"))
2284
2286
  InputOrigin.struct_class = Types::InputOrigin
2285
2287
 
2286
2288
  Instance.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
@@ -2625,6 +2627,7 @@ module Aws::Lightsail
2625
2627
  Origin.add_member(:region_name, Shapes::ShapeRef.new(shape: RegionName, location_name: "regionName"))
2626
2628
  Origin.add_member(:protocol_policy, Shapes::ShapeRef.new(shape: OriginProtocolPolicyEnum, location_name: "protocolPolicy"))
2627
2629
  Origin.add_member(:response_timeout, Shapes::ShapeRef.new(shape: integer, location_name: "responseTimeout"))
2630
+ Origin.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: OriginIpAddressTypeEnum, location_name: "ipAddressType"))
2628
2631
  Origin.struct_class = Types::Origin
2629
2632
 
2630
2633
  PartnerIdList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
@@ -9984,13 +9984,22 @@ module Aws::Lightsail
9984
9984
  # you don't specify otherwise) is 30 seconds.
9985
9985
  # @return [Integer]
9986
9986
  #
9987
+ # @!attribute [rw] ip_address_type
9988
+ # The IP address type that the distribution uses when connecting to
9989
+ # the origin.
9990
+ #
9991
+ # The possible values are `ipv4` for IPv4 only, `ipv6` for IPv6 only,
9992
+ # and `dualstack` for IPv4 and IPv6.
9993
+ # @return [String]
9994
+ #
9987
9995
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/InputOrigin AWS API Documentation
9988
9996
  #
9989
9997
  class InputOrigin < Struct.new(
9990
9998
  :name,
9991
9999
  :region_name,
9992
10000
  :protocol_policy,
9993
- :response_timeout)
10001
+ :response_timeout,
10002
+ :ip_address_type)
9994
10003
  SENSITIVE = []
9995
10004
  include Aws::Structure
9996
10005
  end
@@ -12180,6 +12189,14 @@ module Aws::Lightsail
12180
12189
  # you don't specify otherwise) is 30 seconds.
12181
12190
  # @return [Integer]
12182
12191
  #
12192
+ # @!attribute [rw] ip_address_type
12193
+ # The IP address type that the distribution uses when connecting to
12194
+ # the origin.
12195
+ #
12196
+ # The possible values are `ipv4` for IPv4 only, `ipv6` for IPv6 only,
12197
+ # and `dualstack` for IPv4 and IPv6.
12198
+ # @return [String]
12199
+ #
12183
12200
  # @see http://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/Origin AWS API Documentation
12184
12201
  #
12185
12202
  class Origin < Struct.new(
@@ -12187,7 +12204,8 @@ module Aws::Lightsail
12187
12204
  :resource_type,
12188
12205
  :region_name,
12189
12206
  :protocol_policy,
12190
- :response_timeout)
12207
+ :response_timeout,
12208
+ :ip_address_type)
12191
12209
  SENSITIVE = []
12192
12210
  include Aws::Structure
12193
12211
  end
@@ -54,7 +54,7 @@ module Aws::Lightsail
54
54
  autoload :EndpointProvider, 'aws-sdk-lightsail/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-lightsail/endpoints'
56
56
 
57
- GEM_VERSION = '1.128.0'
57
+ GEM_VERSION = '1.129.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -438,7 +438,8 @@ module Aws
438
438
  name: ::String?,
439
439
  region_name: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "eu-north-1" | "ca-central-1" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-3" | "ap-southeast-5")?,
440
440
  protocol_policy: ("http-only" | "https-only")?,
441
- response_timeout: ::Integer?
441
+ response_timeout: ::Integer?,
442
+ ip_address_type: ("ipv4" | "ipv6" | "dualstack")?
442
443
  },
443
444
  default_cache_behavior: {
444
445
  behavior: ("dont-cache" | "cache")?
@@ -2210,7 +2211,8 @@ module Aws
2210
2211
  name: ::String?,
2211
2212
  region_name: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "eu-north-1" | "ca-central-1" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-3" | "ap-southeast-5")?,
2212
2213
  protocol_policy: ("http-only" | "https-only")?,
2213
- response_timeout: ::Integer?
2214
+ response_timeout: ::Integer?,
2215
+ ip_address_type: ("ipv4" | "ipv6" | "dualstack")?
2214
2216
  },
2215
2217
  ?default_cache_behavior: {
2216
2218
  behavior: ("dont-cache" | "cache")?
data/sig/types.rbs CHANGED
@@ -2109,6 +2109,7 @@ module Aws::Lightsail
2109
2109
  attr_accessor region_name: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "eu-north-1" | "ca-central-1" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-3" | "ap-southeast-5")
2110
2110
  attr_accessor protocol_policy: ("http-only" | "https-only")
2111
2111
  attr_accessor response_timeout: ::Integer
2112
+ attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
2112
2113
  SENSITIVE: []
2113
2114
  end
2114
2115
 
@@ -2481,6 +2482,7 @@ module Aws::Lightsail
2481
2482
  attr_accessor region_name: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "eu-north-1" | "ca-central-1" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-3" | "ap-southeast-5")
2482
2483
  attr_accessor protocol_policy: ("http-only" | "https-only")
2483
2484
  attr_accessor response_timeout: ::Integer
2485
+ attr_accessor ip_address_type: ("ipv4" | "ipv6" | "dualstack")
2484
2486
  SENSITIVE: []
2485
2487
  end
2486
2488
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lightsail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.128.0
4
+ version: 1.129.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.244.0
21
+ version: 3.247.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.244.0
31
+ version: 3.247.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement