aws-sdk-iotsitewise 1.75.0 → 1.77.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +2 -2
- data/lib/aws-sdk-iotsitewise/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-iotsitewise/endpoints.rb +2 -922
- data/lib/aws-sdk-iotsitewise/plugins/endpoints.rb +1 -174
- data/lib/aws-sdk-iotsitewise/types.rb +19 -19
- data/lib/aws-sdk-iotsitewise.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f003d6ceb6461e526bac6ea36f1d7c02dd45453e4eaaa6165a20f80f78347d1
|
4
|
+
data.tar.gz: bfe9af3b2b68914ed33ef8452cc63de490842da08e30897c3046046b61c01b50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
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.
|
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
|