aws-sdk-iot 1.136.0 → 1.138.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: dc43ddae282b70b48f11ecaafd869fd40005d734003721985e4e3c1d822e95b2
4
- data.tar.gz: 2fb2eedfe4517cd4c1c7142afec6987a6faa8199680bbf5ceb78aa2e8264b1c9
3
+ metadata.gz: b8939d8513c840d10e2ab38a7b76cf8fcca1f1bac7d2d0f621052c27bbeccf9f
4
+ data.tar.gz: 9fbd391c7eb92174cf53007c2a66e8cd53466a111c7b0ae903f44d7fe418504c
5
5
  SHA512:
6
- metadata.gz: 1281b9ec53beaef7fb4f2fe2b39192abdd5a78531f61c61d524bdb6a520a7f94c43c7ede57ad6b91705b984fb63c12df7ad308cce8bf5884e5a85c9a872fc3ee
7
- data.tar.gz: c46c132c7c0e930e652dde6dcf7db00d6a046938833251a8828dabf1560b0409695c2543e6f898851adfc2c043f06125cbca2d6d1696a2171c1c4f4b08e60189
6
+ metadata.gz: fa92073b3a9597d00215cbe25e3c7fa20526bf4f16bcb58e15f95a37ec132fa165329aeb7df3f120f5840ccbf0f7a13d973888db772b0477640b6e44865c15e5
7
+ data.tar.gz: 7f1f73026cdbad8fe8531e77b617dd9551ce0e8f85f71ad950d9736906ab3b2fc4e24cc1b6982f43ddc89a0a79fd19fb6a61b7a084c6cb857ac1b4460d9989a6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.138.0 (2024-11-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.137.0 (2024-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.136.0 (2024-10-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.136.0
1
+ 1.138.0
@@ -1379,9 +1379,9 @@ module Aws::IoT
1379
1379
  #
1380
1380
  # On Linux and OS X, the command is:
1381
1381
  #
1382
- # `$ ls my-csr-directory/ | xargs -I \{\} aws iot
1382
+ # `$ ls my-csr-directory/ | xargs -I {} aws iot
1383
1383
  # create-certificate-from-csr --certificate-signing-request
1384
- # file://my-csr-directory/\{\}`
1384
+ # file://my-csr-directory/{}`
1385
1385
  #
1386
1386
  # This command lists all of the CSRs in my-csr-directory and pipes each
1387
1387
  # CSR file name to the `aws iot create-certificate-from-csr` Amazon Web
@@ -1391,15 +1391,15 @@ module Aws::IoT
1391
1391
  # You can also run the `aws iot create-certificate-from-csr` part of the
1392
1392
  # command in parallel to speed up the certificate creation process:
1393
1393
  #
1394
- # `$ ls my-csr-directory/ | xargs -P 10 -I \{\} aws iot
1394
+ # `$ ls my-csr-directory/ | xargs -P 10 -I {} aws iot
1395
1395
  # create-certificate-from-csr --certificate-signing-request
1396
- # file://my-csr-directory/\{\} `
1396
+ # file://my-csr-directory/{} `
1397
1397
  #
1398
1398
  # On Windows PowerShell, the command to create certificates for all CSRs
1399
1399
  # in my-csr-directory is:
1400
1400
  #
1401
- # `> ls -Name my-csr-directory | %\{aws iot create-certificate-from-csr
1402
- # --certificate-signing-request file://my-csr-directory/$_\} `
1401
+ # `> ls -Name my-csr-directory | %{aws iot create-certificate-from-csr
1402
+ # --certificate-signing-request file://my-csr-directory/$_} `
1403
1403
  #
1404
1404
  # On a Windows command prompt, the command to create certificates for
1405
1405
  # all CSRs in my-csr-directory is:
@@ -3523,7 +3523,7 @@ module Aws::IoT
3523
3523
  # The attribute payload, which consists of up to three name/value pairs
3524
3524
  # in a JSON document. For example:
3525
3525
  #
3526
- # `\{"attributes":\{"string1":"string2"\}\}`
3526
+ # `{"attributes":{"string1":"string2"}}`
3527
3527
  #
3528
3528
  # @option params [String] :billing_group_name
3529
3529
  # The name of the billing group the thing will be added to.
@@ -15337,7 +15337,7 @@ module Aws::IoT
15337
15337
  # A list of thing attributes, a JSON string containing name-value pairs.
15338
15338
  # For example:
15339
15339
  #
15340
- # `\{"attributes":\{"name1":"value2"\}\}`
15340
+ # `{"attributes":{"name1":"value2"}}`
15341
15341
  #
15342
15342
  # This data is used to add new attributes or update existing attributes.
15343
15343
  #
@@ -15613,7 +15613,7 @@ module Aws::IoT
15613
15613
  tracer: tracer
15614
15614
  )
15615
15615
  context[:gem_name] = 'aws-sdk-iot'
15616
- context[:gem_version] = '1.136.0'
15616
+ context[:gem_version] = '1.138.0'
15617
15617
  Seahorse::Client::Request.new(handlers, context)
15618
15618
  end
15619
15619
 
@@ -52,15 +52,18 @@ module Aws::IoT
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