aws-sdk-iotwireless 1.58.0 → 1.60.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: 4cfff4e43a17f2c5e7b9eb72b22d2061860cf79907a0c08bf80ad5a2be9fdd98
4
- data.tar.gz: 69bc212eccc3a5fe7105c4721c89f423efb7a9d3f5289c754711826ce62b6985
3
+ metadata.gz: 9aa2303b104858a54c340c825d22dedf800fc3e1b9075745ebbae355198d3359
4
+ data.tar.gz: 930683049874f4f87d5eb8739e6f00a3e0fae113f59b1df1e58132d517e6424e
5
5
  SHA512:
6
- metadata.gz: bd46c63ed5663b0e6bc33db3b486187cabe971ef68dd178ff7d102b7e64d9db93cc40e4aa7839c3ae73b6a408679ccd3b71221751ec7d5dfb5845eabf2638619
7
- data.tar.gz: d9ff23c88d042cfdb33515405c0af47a2881810cf0498578d7e76ee5f4aeb62f5ca4998c0e90bb547ca3ecc3d14653b566dd350ca034e70db8276ea35745a1b3
6
+ metadata.gz: 792538d2147cee513ae0ba3d22e84e9355c2e83215be8cf4e18436c70c8a7a5ef7bd675722a48ce689f91dd8352fabccae840c99a5b0333121622b8919684613
7
+ data.tar.gz: 31c559cbc277ed72f1fde8f7448486816f920c165307850cec3ffab1a3bd57442cc0acac773979db4967b0ae5d2468a1d26fc35449faeb3485eb1e412a173778
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.59.0 (2024-09-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.58.0 (2024-09-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.60.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:iotwireless)
40
-
41
39
  module Aws::IoTWireless
42
40
  # An API client for IoTWireless. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -5323,7 +5321,7 @@ module Aws::IoTWireless
5323
5321
  tracer: tracer
5324
5322
  )
5325
5323
  context[:gem_name] = 'aws-sdk-iotwireless'
5326
- context[:gem_version] = '1.58.0'
5324
+ context[:gem_version] = '1.60.0'
5327
5325
  Seahorse::Client::Request.new(handlers, context)
5328
5326
  end
5329
5327
 
@@ -52,15 +52,18 @@ module Aws::IoTWireless
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