aws-sdk-lightsail 1.102.0 → 1.103.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: 6dbb5c3af0e8df15e74cc4aa30466bd2020122d7b872a83b2d730edf5e13f124
4
- data.tar.gz: 3add043be907a06ad48263c9f718f01db6b0148f8d772bc6b24c05fc6d6724c7
3
+ metadata.gz: 2df9d4a04d786956774cd548854eaf565a8b7adbcf31cc286a6a69e3c4c97968
4
+ data.tar.gz: 4789772a6aed7b3cc255aec00d85217cd1f9f4793f759a353bab0d0d1e3dfb5d
5
5
  SHA512:
6
- metadata.gz: 9e77735e199ebc11a3fdf2d1be9be10e840574968bc432fa57849bf201ca59554a0d98c2b3489812ca854d47c602aea5afa4606d87cbcaa9013137649bb7498f
7
- data.tar.gz: b13e9df6a6df6f573b0be6afcd2cf0cdf2b5dfb54b9fe2c941f590858c37942855ac9c1413663c6a79ba9c750fcdfdc359a38fc6f7bfb73c2451a2402a945d15
6
+ metadata.gz: 0aae14eb34946d7bd508d05c1343654ecf714bba2a80103af50fb6a93f0f91eaa8981923d21051694224924717fba0a183a3bcc97bc24efd668a0fcbad838827
7
+ data.tar.gz: c0b282ca9de716184d593922915d0f837a05dacd4433069598e2c8fe34fbfea9a316314a8c329e029e66254882f58ad3837a4a4377c0e8522ea3baae270606ed
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.103.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.102.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.103.0
@@ -12448,7 +12448,7 @@ module Aws::Lightsail
12448
12448
  tracer: tracer
12449
12449
  )
12450
12450
  context[:gem_name] = 'aws-sdk-lightsail'
12451
- context[:gem_version] = '1.102.0'
12451
+ context[:gem_version] = '1.103.0'
12452
12452
  Seahorse::Client::Request.new(handlers, context)
12453
12453
  end
12454
12454
 
@@ -52,15 +52,18 @@ module Aws::Lightsail
52
52
  self[:region] = options[:region]
53
53
  self[:use_dual_stack] = options[:use_dual_stack]
54
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
- if self[:use_dual_stack].nil?
56
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
- end
58
55
  self[:use_fips] = options[:use_fips]
59
56
  self[:use_fips] = false if self[:use_fips].nil?
60
- if self[:use_fips].nil?
61
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
62
- end
63
57
  self[:endpoint] = options[:endpoint]
64
58
  end
59
+
60
+ def self.create(config, options={})
61
+ new({
62
+ region: config.region,
63
+ use_dual_stack: config.use_dualstack_endpoint,
64
+ use_fips: config.use_fips_endpoint,
65
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
66
+ }.merge(options))
67
+ end
65
68
  end
66
69
  end