aws-sdk-iotsitewise 1.30.0 → 1.31.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +35 -15
- data/lib/aws-sdk-iotsitewise/types.rb +27 -11
- data/lib/aws-sdk-iotsitewise.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 484f699838e0578c0b4dd8ad299e5f582afb594e19be1f38d3161a1c95572e91
|
4
|
+
data.tar.gz: 0de0eb2d0d61e8e3b1942eb2f738337f7523851bd2ff9f1b157789826f963d94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ceefa1503579b39ca0e13487a67518183a7f4cac37f78ccbe37bb22f162fd0c8abe1a120959ac610d55a548cd66135e7980ad110ee00e9dae22b91ce38d6922
|
7
|
+
data.tar.gz: 14ffc954160d5a8c55e2191c5a98a12aca5495e6a1b50f8ab3bde560c1920913ca4b23b6da21813f0e7c16db9c4682e58f793c4dd514b949637e82f40effb4cc
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.31.0
|
@@ -2456,9 +2456,13 @@ module Aws::IoTSiteWise
|
|
2456
2456
|
end
|
2457
2457
|
|
2458
2458
|
# Get interpolated values for an asset property for a specified time
|
2459
|
-
# interval, during a period of time.
|
2460
|
-
#
|
2461
|
-
#
|
2459
|
+
# interval, during a period of time. If your time series is missing data
|
2460
|
+
# points during the specified time interval, you can use interpolation
|
2461
|
+
# to estimate the missing data.
|
2462
|
+
#
|
2463
|
+
# For example, you can use this operation to return the interpolated
|
2464
|
+
# temperature values for a wind turbine every 24 hours over a duration
|
2465
|
+
# of 7 days.
|
2462
2466
|
#
|
2463
2467
|
# To identify an asset property, you must specify one of the following:
|
2464
2468
|
#
|
@@ -2524,18 +2528,34 @@ module Aws::IoTSiteWise
|
|
2524
2528
|
#
|
2525
2529
|
# Valid values: `LINEAR_INTERPOLATION | LOCF_INTERPOLATION`
|
2526
2530
|
#
|
2527
|
-
#
|
2528
|
-
#
|
2529
|
-
# calculated for the previous interval and carries forward this
|
2530
|
-
# interpolated value until a new data point is found.
|
2531
|
+
# * `LINEAR_INTERPOLATION` – Estimates missing data using [linear
|
2532
|
+
# interpolation][1].
|
2531
2533
|
#
|
2532
|
-
#
|
2533
|
-
#
|
2534
|
-
#
|
2535
|
-
#
|
2536
|
-
#
|
2537
|
-
#
|
2538
|
-
#
|
2534
|
+
# For example, you can use this operation to return the interpolated
|
2535
|
+
# temperature values for a wind turbine every 24 hours over a duration
|
2536
|
+
# of 7 days. If the interpolation starts on July 1, 2021, at 9 AM, IoT
|
2537
|
+
# SiteWise returns the first interpolated value on July 2, 2021, at 9
|
2538
|
+
# AM, the second interpolated value on July 3, 2021, at 9 AM, and so
|
2539
|
+
# on.
|
2540
|
+
#
|
2541
|
+
# * `LOCF_INTERPOLATION` – Estimates missing data using last observation
|
2542
|
+
# carried forward interpolation
|
2543
|
+
#
|
2544
|
+
# If no data point is found for an interval, IoT SiteWise returns the
|
2545
|
+
# last observed data point for the previous interval and carries
|
2546
|
+
# forward this interpolated value until a new data point is found.
|
2547
|
+
#
|
2548
|
+
# For example, you can get the state of an on-off valve every 24 hours
|
2549
|
+
# over a duration of 7 days. If the interpolation starts on July 1,
|
2550
|
+
# 2021, at 9 AM, IoT SiteWise returns the last observed data point
|
2551
|
+
# between July 1, 2021, at 9 AM and July 2, 2021, at 9 AM as the first
|
2552
|
+
# interpolated value. If no data point is found after 9 AM on July 2,
|
2553
|
+
# 2021, IoT SiteWise uses the same interpolated value for the rest of
|
2554
|
+
# the days.
|
2555
|
+
#
|
2556
|
+
#
|
2557
|
+
#
|
2558
|
+
# [1]: https://en.wikipedia.org/wiki/Linear_interpolation
|
2539
2559
|
#
|
2540
2560
|
# @option params [Integer] :interval_window_in_seconds
|
2541
2561
|
# The query interval for the window in seconds. IoT SiteWise computes
|
@@ -4095,7 +4115,7 @@ module Aws::IoTSiteWise
|
|
4095
4115
|
params: params,
|
4096
4116
|
config: config)
|
4097
4117
|
context[:gem_name] = 'aws-sdk-iotsitewise'
|
4098
|
-
context[:gem_version] = '1.
|
4118
|
+
context[:gem_version] = '1.31.0'
|
4099
4119
|
Seahorse::Client::Request.new(handlers, context)
|
4100
4120
|
end
|
4101
4121
|
|
@@ -3844,18 +3844,34 @@ module Aws::IoTSiteWise
|
|
3844
3844
|
#
|
3845
3845
|
# Valid values: `LINEAR_INTERPOLATION | LOCF_INTERPOLATION`
|
3846
3846
|
#
|
3847
|
-
#
|
3848
|
-
#
|
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
|
-
#
|
3853
|
-
#
|
3854
|
-
#
|
3855
|
-
#
|
3856
|
-
#
|
3857
|
-
#
|
3858
|
-
#
|
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
|
data/lib/aws-sdk-iotsitewise.rb
CHANGED
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.
|
4
|
+
version: 1.31.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-
|
11
|
+
date: 2021-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|