aws-sdk-iotsitewise 1.75.0 → 1.77.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: 9c0c1635f6c8cc5b9f409702b486f7a7c6bad0ede727221ae30ffefe4f70a7f5
4
- data.tar.gz: 9cf945900281f3e1ceeeeda6f7e25b8d5e3afa0634fa5ca62e7050155386454c
3
+ metadata.gz: 2f003d6ceb6461e526bac6ea36f1d7c02dd45453e4eaaa6165a20f80f78347d1
4
+ data.tar.gz: bfe9af3b2b68914ed33ef8452cc63de490842da08e30897c3046046b61c01b50
5
5
  SHA512:
6
- metadata.gz: 5e152df9e383816ac56577b06ee254569decde5192c856ec8493e6d09fa4bff803c6b2be8fc6e7532fc0fc7731355d1af2a58f140e22b50613c0ea27d35e3cd8
7
- data.tar.gz: 6dd93607edc67591865960eca5e27b887d00676c2ceeebd9197c9cd8c4d853422a67bfbf151f1ad3bdfb40071248667c9bd286c2335e3b0652d36f93c2659f74
6
+ metadata.gz: 8ec0fa872d14ff1a4ef34ad8b704dd90435e93d2fb5ecebb9a4aca9144481f669b12af5cc0a69d863a92b40e3f75faeafc54841b52181a33fa3cd48d557f7fda
7
+ data.tar.gz: c79a3629fd20bb8925964873b946c77212734439637963736757ef4d933509627531a724191f3ed13b25ccc2ca86029496a7c2a48d92c3a573cfe9b67cd44742
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.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.76.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.75.0 (2024-09-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.75.0
1
+ 1.77.0
@@ -907,7 +907,7 @@ module Aws::IoTSiteWise
907
907
  #
908
908
  # For each asset property, IoT SiteWise overwrites TQVs with duplicate
909
909
  # timestamps unless the newer TQV has a different quality. For example,
910
- # if you store a TQV `\{T1, GOOD, V1\}`, then storing `\{T1, GOOD, V2\}`
910
+ # if you store a TQV `{T1, GOOD, V1}`, then storing `{T1, GOOD, V2}`
911
911
  # replaces the existing TQV.
912
912
  #
913
913
  # IoT SiteWise authorizes access to each `BatchPutAssetPropertyValue`
@@ -6780,7 +6780,7 @@ module Aws::IoTSiteWise
6780
6780
  tracer: tracer
6781
6781
  )
6782
6782
  context[:gem_name] = 'aws-sdk-iotsitewise'
6783
- context[:gem_version] = '1.75.0'
6783
+ context[:gem_version] = '1.77.0'
6784
6784
  Seahorse::Client::Request.new(handlers, context)
6785
6785
  end
6786
6786
 
@@ -52,15 +52,18 @@ module Aws::IoTSiteWise
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