aws-sdk-iotsitewise 1.30.0 → 1.31.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: 98915b7d9ba277f8000f730d18b7fac03886583cb351dfe6a33c716668e80946
4
- data.tar.gz: 178b1336e0b35362e53127dc1a48d70d73a09cf453d37d47a50e8070a1d9f678
3
+ metadata.gz: 484f699838e0578c0b4dd8ad299e5f582afb594e19be1f38d3161a1c95572e91
4
+ data.tar.gz: 0de0eb2d0d61e8e3b1942eb2f738337f7523851bd2ff9f1b157789826f963d94
5
5
  SHA512:
6
- metadata.gz: b26cad8029eda4e60a68a01105323cd2f1786b26a20e3fa94894a0db11cff2761695fbe217ad1364cdcfdf7e89fe5cf24434671b3edf5edeeb4ac9f352bad903
7
- data.tar.gz: b7c08bf25c4b9ea93a2840022059a79835f4a61e8fc5ea904608e3f1b5fb79d4017bf93e6484424c89d63772eb4f99b06a55bbc9d603d25ba08c2e493c8961cf
6
+ metadata.gz: 3ceefa1503579b39ca0e13487a67518183a7f4cac37f78ccbe37bb22f162fd0c8abe1a120959ac610d55a548cd66135e7980ad110ee00e9dae22b91ce38d6922
7
+ data.tar.gz: 14ffc954160d5a8c55e2191c5a98a12aca5495e6a1b50f8ab3bde560c1920913ca4b23b6da21813f0e7c16db9c4682e58f793c4dd514b949637e82f40effb4cc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2021-08-23)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS IoT SiteWise
8
+
4
9
  1.30.0 (2021-08-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
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. 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.
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
- # 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.
2531
+ # * `LINEAR_INTERPOLATION` Estimates missing data using [linear
2532
+ # interpolation][1].
2531
2533
  #
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.
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.30.0'
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
- # 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.31.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.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-16 00:00:00.000000000 Z
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