aws-sdk-iotsitewise 1.30.0 → 1.34.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: 98915b7d9ba277f8000f730d18b7fac03886583cb351dfe6a33c716668e80946
4
- data.tar.gz: 178b1336e0b35362e53127dc1a48d70d73a09cf453d37d47a50e8070a1d9f678
3
+ metadata.gz: daa301ce76c3b74af511bb27dd527aff549dbcd843295a222f93b47b14560450
4
+ data.tar.gz: ccbf8a3a20f48054a892ad8e642befcd32d1f8520994acddf897b5ca957ad460
5
5
  SHA512:
6
- metadata.gz: b26cad8029eda4e60a68a01105323cd2f1786b26a20e3fa94894a0db11cff2761695fbe217ad1364cdcfdf7e89fe5cf24434671b3edf5edeeb4ac9f352bad903
7
- data.tar.gz: b7c08bf25c4b9ea93a2840022059a79835f4a61e8fc5ea904608e3f1b5fb79d4017bf93e6484424c89d63772eb4f99b06a55bbc9d603d25ba08c2e493c8961cf
6
+ metadata.gz: 93129a2346d193565c282677ea9cfd88372489c24f2dffaa1e9841fdb7cc8f0456ad741fe73585ff447ef1a280d53d713a9c0dc96683f362a0dddbf2a1d032f7
7
+ data.tar.gz: 6d2f95add076c446d37e3f2ac229ee52e89009c78bb6179dd7944e49e492989c632ff4843e64df688f5b083be5b9a83aa36268a1f20525b0883ef8d62b9c3d28
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.33.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.32.0 (2021-09-01)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.31.0 (2021-08-23)
20
+ ------------------
21
+
22
+ * Feature - Documentation updates for AWS IoT SiteWise
23
+
4
24
  1.30.0 (2021-08-16)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.34.0
@@ -275,6 +275,15 @@ module Aws::IoTSiteWise
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -2456,9 +2465,13 @@ module Aws::IoTSiteWise
2456
2465
  end
2457
2466
 
2458
2467
  # Get interpolated values for an asset property for a specified time
2459
- # interval, during a period of time. For example, you can use the this
2460
- # operation to return the interpolated temperature values for a wind
2461
- # turbine every 24 hours over a duration of 7 days.
2468
+ # interval, during a period of time. If your time series is missing data
2469
+ # points during the specified time interval, you can use interpolation
2470
+ # to estimate the missing data.
2471
+ #
2472
+ # For example, you can use this operation to return the interpolated
2473
+ # temperature values for a wind turbine every 24 hours over a duration
2474
+ # of 7 days.
2462
2475
  #
2463
2476
  # To identify an asset property, you must specify one of the following:
2464
2477
  #
@@ -2524,18 +2537,34 @@ module Aws::IoTSiteWise
2524
2537
  #
2525
2538
  # Valid values: `LINEAR_INTERPOLATION | LOCF_INTERPOLATION`
2526
2539
  #
2527
- # For the `LOCF_INTERPOLATION` interpolation, if no data point is found
2528
- # for an interval, IoT SiteWise returns the same interpolated value
2529
- # calculated for the previous interval and carries forward this
2530
- # interpolated value until a new data point is found.
2540
+ # * `LINEAR_INTERPOLATION` Estimates missing data using [linear
2541
+ # interpolation][1].
2531
2542
  #
2532
- # For example, you can get the interpolated temperature values for a
2533
- # wind turbine every 24 hours over a duration of 7 days. If the
2534
- # `LOCF_INTERPOLATION` interpolation starts on July 1, 2021, at 9 AM,
2535
- # IoT SiteWise uses the data points from July 1, 2021, at 9 AM to July
2536
- # 2, 2021, at 9 AM to compute the first interpolated value. If no data
2537
- # points is found after 9 A.M. on July 2, 2021, IoT SiteWise uses the
2538
- # same interpolated value for the rest of the days.
2543
+ # For example, you can use this operation to return the interpolated
2544
+ # temperature values for a wind turbine every 24 hours over a duration
2545
+ # of 7 days. If the interpolation starts on July 1, 2021, at 9 AM, IoT
2546
+ # SiteWise returns the first interpolated value on July 2, 2021, at 9
2547
+ # AM, the second interpolated value on July 3, 2021, at 9 AM, and so
2548
+ # on.
2549
+ #
2550
+ # * `LOCF_INTERPOLATION` – Estimates missing data using last observation
2551
+ # carried forward interpolation
2552
+ #
2553
+ # If no data point is found for an interval, IoT SiteWise returns the
2554
+ # last observed data point for the previous interval and carries
2555
+ # forward this interpolated value until a new data point is found.
2556
+ #
2557
+ # For example, you can get the state of an on-off valve every 24 hours
2558
+ # over a duration of 7 days. If the interpolation starts on July 1,
2559
+ # 2021, at 9 AM, IoT SiteWise returns the last observed data point
2560
+ # between July 1, 2021, at 9 AM and July 2, 2021, at 9 AM as the first
2561
+ # interpolated value. If no data point is found after 9 AM on July 2,
2562
+ # 2021, IoT SiteWise uses the same interpolated value for the rest of
2563
+ # the days.
2564
+ #
2565
+ #
2566
+ #
2567
+ # [1]: https://en.wikipedia.org/wiki/Linear_interpolation
2539
2568
  #
2540
2569
  # @option params [Integer] :interval_window_in_seconds
2541
2570
  # The query interval for the window in seconds. IoT SiteWise computes
@@ -4095,7 +4124,7 @@ module Aws::IoTSiteWise
4095
4124
  params: params,
4096
4125
  config: config)
4097
4126
  context[:gem_name] = 'aws-sdk-iotsitewise'
4098
- context[:gem_version] = '1.30.0'
4127
+ context[:gem_version] = '1.34.0'
4099
4128
  Seahorse::Client::Request.new(handlers, context)
4100
4129
  end
4101
4130
 
@@ -3844,18 +3844,34 @@ module Aws::IoTSiteWise
3844
3844
  #
3845
3845
  # Valid values: `LINEAR_INTERPOLATION | LOCF_INTERPOLATION`
3846
3846
  #
3847
- # For the `LOCF_INTERPOLATION` interpolation, if no data point is
3848
- # found for an interval, IoT SiteWise returns the same interpolated
3849
- # value calculated for the previous interval and carries forward this
3850
- # interpolated value until a new data point is found.
3847
+ # * `LINEAR_INTERPOLATION` Estimates missing data using [linear
3848
+ # interpolation][1].
3851
3849
  #
3852
- # For example, you can get the interpolated temperature values for a
3853
- # wind turbine every 24 hours over a duration of 7 days. If the
3854
- # `LOCF_INTERPOLATION` interpolation starts on July 1, 2021, at 9 AM,
3855
- # IoT SiteWise uses the data points from July 1, 2021, at 9 AM to July
3856
- # 2, 2021, at 9 AM to compute the first interpolated value. If no data
3857
- # points is found after 9 A.M. on July 2, 2021, IoT SiteWise uses the
3858
- # same interpolated value for the rest of the days.
3850
+ # For example, you can use this operation to return the interpolated
3851
+ # temperature values for a wind turbine every 24 hours over a
3852
+ # duration of 7 days. If the interpolation starts on July 1, 2021,
3853
+ # at 9 AM, IoT SiteWise returns the first interpolated value on July
3854
+ # 2, 2021, at 9 AM, the second interpolated value on July 3, 2021,
3855
+ # at 9 AM, and so on.
3856
+ #
3857
+ # * `LOCF_INTERPOLATION` – Estimates missing data using last
3858
+ # observation carried forward interpolation
3859
+ #
3860
+ # If no data point is found for an interval, IoT SiteWise returns
3861
+ # the last observed data point for the previous interval and carries
3862
+ # forward this interpolated value until a new data point is found.
3863
+ #
3864
+ # For example, you can get the state of an on-off valve every 24
3865
+ # hours over a duration of 7 days. If the interpolation starts on
3866
+ # July 1, 2021, at 9 AM, IoT SiteWise returns the last observed data
3867
+ # point between July 1, 2021, at 9 AM and July 2, 2021, at 9 AM as
3868
+ # the first interpolated value. If no data point is found after 9 AM
3869
+ # on July 2, 2021, IoT SiteWise uses the same interpolated value for
3870
+ # the rest of the days.
3871
+ #
3872
+ #
3873
+ #
3874
+ # [1]: https://en.wikipedia.org/wiki/Linear_interpolation
3859
3875
  # @return [String]
3860
3876
  #
3861
3877
  # @!attribute [rw] interval_window_in_seconds
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-iotsitewise/customizations'
49
49
  # @!group service
50
50
  module Aws::IoTSiteWise
51
51
 
52
- GEM_VERSION = '1.30.0'
52
+ GEM_VERSION = '1.34.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotsitewise
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-16 00:00:00.000000000 Z
11
+ date: 2021-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.119.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
- version: '0'
80
+ version: '2.3'
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="