aws-sdk-iotsitewise 1.20.0 → 1.21.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.rb +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +112 -1
- data/lib/aws-sdk-iotsitewise/client_api.rb +53 -0
- data/lib/aws-sdk-iotsitewise/types.rb +133 -1
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c789475f03b89d05d057235f39f636a2d8c27a90e6b738487cc818a1f00afa9
|
4
|
+
data.tar.gz: b4fa70938975588276e959ed51a34ea23dd60e60cf9231b94b09412976a0c3dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c54299f95b473647d1a71e79294147053c33eb20beebc1170daac936c79a4c1378b83a7910368a542806084840ba260909e485c19286e41a00dc6bd15876a7d
|
7
|
+
data.tar.gz: 8137218471e20566afeea65fd599988eef7028a0316f7cd18c74629158927d78f5c2026f08cf456776ac5ad8e679f8193066eb9c9dc3d012c9f931b3b02dc567
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.21.0 (2021-04-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS IoT SiteWise interpolation API will get interpolated values for an asset property per specified time interval during a period of time.
|
8
|
+
|
4
9
|
1.20.0 (2021-03-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.21.0
|
data/lib/aws-sdk-iotsitewise.rb
CHANGED
@@ -2325,6 +2325,117 @@ module Aws::IoTSiteWise
|
|
2325
2325
|
req.send_request(options)
|
2326
2326
|
end
|
2327
2327
|
|
2328
|
+
# Get interpolated values for an asset property for a specified time
|
2329
|
+
# interval, during a period of time. For example, you can use the this
|
2330
|
+
# operation to return the interpolated temperature values for a wind
|
2331
|
+
# turbine every 24 hours over a duration of 7 days.
|
2332
|
+
#
|
2333
|
+
# To identify an asset property, you must specify one of the following:
|
2334
|
+
#
|
2335
|
+
# * The `assetId` and `propertyId` of an asset property.
|
2336
|
+
#
|
2337
|
+
# * A `propertyAlias`, which is a data stream alias (for example,
|
2338
|
+
# `/company/windfarm/3/turbine/7/temperature`). To define an asset
|
2339
|
+
# property's alias, see [UpdateAssetProperty][1].
|
2340
|
+
#
|
2341
|
+
#
|
2342
|
+
#
|
2343
|
+
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_UpdateAssetProperty.html
|
2344
|
+
#
|
2345
|
+
# @option params [String] :asset_id
|
2346
|
+
# The ID of the asset.
|
2347
|
+
#
|
2348
|
+
# @option params [String] :property_id
|
2349
|
+
# The ID of the asset property.
|
2350
|
+
#
|
2351
|
+
# @option params [String] :property_alias
|
2352
|
+
# The property alias that identifies the property, such as an OPC-UA
|
2353
|
+
# server data stream path (for example,
|
2354
|
+
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
2355
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
2356
|
+
# *AWS IoT SiteWise User Guide*.
|
2357
|
+
#
|
2358
|
+
#
|
2359
|
+
#
|
2360
|
+
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/connect-data-streams.html
|
2361
|
+
#
|
2362
|
+
# @option params [required, Integer] :start_time_in_seconds
|
2363
|
+
# The exclusive start of the range from which to interpolate data,
|
2364
|
+
# expressed in seconds in Unix epoch time.
|
2365
|
+
#
|
2366
|
+
# @option params [Integer] :start_time_offset_in_nanos
|
2367
|
+
# The nanosecond offset converted from `startTimeInSeconds`.
|
2368
|
+
#
|
2369
|
+
# @option params [required, Integer] :end_time_in_seconds
|
2370
|
+
# The inclusive end of the range from which to interpolate data,
|
2371
|
+
# expressed in seconds in Unix epoch time.
|
2372
|
+
#
|
2373
|
+
# @option params [Integer] :end_time_offset_in_nanos
|
2374
|
+
# The nanosecond offset converted from `endTimeInSeconds`.
|
2375
|
+
#
|
2376
|
+
# @option params [required, String] :quality
|
2377
|
+
# The quality of the asset property value. You can use this parameter as
|
2378
|
+
# a filter to choose only the asset property values that have a specific
|
2379
|
+
# quality.
|
2380
|
+
#
|
2381
|
+
# @option params [required, Integer] :interval_in_seconds
|
2382
|
+
# The time interval in seconds over which to interpolate data. Each
|
2383
|
+
# interval starts when the previous one ends.
|
2384
|
+
#
|
2385
|
+
# @option params [String] :next_token
|
2386
|
+
# The token to be used for the next set of paginated results.
|
2387
|
+
#
|
2388
|
+
# @option params [Integer] :max_results
|
2389
|
+
# The maximum number of results to be returned per paginated request. If
|
2390
|
+
# not specified, the default value is 10.
|
2391
|
+
#
|
2392
|
+
# @option params [required, String] :type
|
2393
|
+
# The interpolation type.
|
2394
|
+
#
|
2395
|
+
# Valid values: `LINEAR_INTERPOLATION`
|
2396
|
+
#
|
2397
|
+
# @return [Types::GetInterpolatedAssetPropertyValuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2398
|
+
#
|
2399
|
+
# * {Types::GetInterpolatedAssetPropertyValuesResponse#interpolated_asset_property_values #interpolated_asset_property_values} => Array<Types::InterpolatedAssetPropertyValue>
|
2400
|
+
# * {Types::GetInterpolatedAssetPropertyValuesResponse#next_token #next_token} => String
|
2401
|
+
#
|
2402
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2403
|
+
#
|
2404
|
+
# @example Request syntax with placeholder values
|
2405
|
+
#
|
2406
|
+
# resp = client.get_interpolated_asset_property_values({
|
2407
|
+
# asset_id: "ID",
|
2408
|
+
# property_id: "ID",
|
2409
|
+
# property_alias: "AssetPropertyAlias",
|
2410
|
+
# start_time_in_seconds: 1, # required
|
2411
|
+
# start_time_offset_in_nanos: 1,
|
2412
|
+
# end_time_in_seconds: 1, # required
|
2413
|
+
# end_time_offset_in_nanos: 1,
|
2414
|
+
# quality: "GOOD", # required, accepts GOOD, BAD, UNCERTAIN
|
2415
|
+
# interval_in_seconds: 1, # required
|
2416
|
+
# next_token: "NextToken",
|
2417
|
+
# max_results: 1,
|
2418
|
+
# type: "InterpolationType", # required
|
2419
|
+
# })
|
2420
|
+
#
|
2421
|
+
# @example Response structure
|
2422
|
+
#
|
2423
|
+
# resp.interpolated_asset_property_values #=> Array
|
2424
|
+
# resp.interpolated_asset_property_values[0].timestamp.time_in_seconds #=> Integer
|
2425
|
+
# resp.interpolated_asset_property_values[0].timestamp.offset_in_nanos #=> Integer
|
2426
|
+
# resp.interpolated_asset_property_values[0].value.string_value #=> String
|
2427
|
+
# resp.interpolated_asset_property_values[0].value.integer_value #=> Integer
|
2428
|
+
# resp.interpolated_asset_property_values[0].value.double_value #=> Float
|
2429
|
+
# resp.interpolated_asset_property_values[0].value.boolean_value #=> Boolean
|
2430
|
+
# resp.next_token #=> String
|
2431
|
+
#
|
2432
|
+
# @overload get_interpolated_asset_property_values(params = {})
|
2433
|
+
# @param [Hash] params ({})
|
2434
|
+
def get_interpolated_asset_property_values(params = {}, options = {})
|
2435
|
+
req = build_request(:get_interpolated_asset_property_values, params)
|
2436
|
+
req.send_request(options)
|
2437
|
+
end
|
2438
|
+
|
2328
2439
|
# Retrieves a paginated list of access policies for an identity (an AWS
|
2329
2440
|
# SSO user, an AWS SSO group, or an IAM user) or an AWS IoT SiteWise
|
2330
2441
|
# Monitor resource (a portal or project).
|
@@ -3697,7 +3808,7 @@ module Aws::IoTSiteWise
|
|
3697
3808
|
params: params,
|
3698
3809
|
config: config)
|
3699
3810
|
context[:gem_name] = 'aws-sdk-iotsitewise'
|
3700
|
-
context[:gem_version] = '1.
|
3811
|
+
context[:gem_version] = '1.21.0'
|
3701
3812
|
Seahorse::Client::Request.new(handlers, context)
|
3702
3813
|
end
|
3703
3814
|
|
@@ -164,6 +164,8 @@ module Aws::IoTSiteWise
|
|
164
164
|
GetAssetPropertyValueHistoryResponse = Shapes::StructureShape.new(name: 'GetAssetPropertyValueHistoryResponse')
|
165
165
|
GetAssetPropertyValueRequest = Shapes::StructureShape.new(name: 'GetAssetPropertyValueRequest')
|
166
166
|
GetAssetPropertyValueResponse = Shapes::StructureShape.new(name: 'GetAssetPropertyValueResponse')
|
167
|
+
GetInterpolatedAssetPropertyValuesRequest = Shapes::StructureShape.new(name: 'GetInterpolatedAssetPropertyValuesRequest')
|
168
|
+
GetInterpolatedAssetPropertyValuesResponse = Shapes::StructureShape.new(name: 'GetInterpolatedAssetPropertyValuesResponse')
|
167
169
|
Greengrass = Shapes::StructureShape.new(name: 'Greengrass')
|
168
170
|
GroupIdentity = Shapes::StructureShape.new(name: 'GroupIdentity')
|
169
171
|
IAMRoleIdentity = Shapes::StructureShape.new(name: 'IAMRoleIdentity')
|
@@ -179,7 +181,11 @@ module Aws::IoTSiteWise
|
|
179
181
|
ImageFileType = Shapes::StringShape.new(name: 'ImageFileType')
|
180
182
|
ImageLocation = Shapes::StructureShape.new(name: 'ImageLocation')
|
181
183
|
InternalFailureException = Shapes::StructureShape.new(name: 'InternalFailureException')
|
184
|
+
InterpolatedAssetPropertyValue = Shapes::StructureShape.new(name: 'InterpolatedAssetPropertyValue')
|
185
|
+
InterpolatedAssetPropertyValues = Shapes::ListShape.new(name: 'InterpolatedAssetPropertyValues')
|
186
|
+
InterpolationType = Shapes::StringShape.new(name: 'InterpolationType')
|
182
187
|
Interval = Shapes::StringShape.new(name: 'Interval')
|
188
|
+
IntervalInSeconds = Shapes::IntegerShape.new(name: 'IntervalInSeconds')
|
183
189
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
184
190
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
185
191
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
@@ -209,6 +215,7 @@ module Aws::IoTSiteWise
|
|
209
215
|
LoggingLevel = Shapes::StringShape.new(name: 'LoggingLevel')
|
210
216
|
LoggingOptions = Shapes::StructureShape.new(name: 'LoggingOptions')
|
211
217
|
Macro = Shapes::StringShape.new(name: 'Macro')
|
218
|
+
MaxInterpolatedResults = Shapes::IntegerShape.new(name: 'MaxInterpolatedResults')
|
212
219
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
213
220
|
Measurement = Shapes::StructureShape.new(name: 'Measurement')
|
214
221
|
Metric = Shapes::StructureShape.new(name: 'Metric')
|
@@ -875,6 +882,24 @@ module Aws::IoTSiteWise
|
|
875
882
|
GetAssetPropertyValueResponse.add_member(:property_value, Shapes::ShapeRef.new(shape: AssetPropertyValue, location_name: "propertyValue"))
|
876
883
|
GetAssetPropertyValueResponse.struct_class = Types::GetAssetPropertyValueResponse
|
877
884
|
|
885
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ID, location: "querystring", location_name: "assetId"))
|
886
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:property_id, Shapes::ShapeRef.new(shape: ID, location: "querystring", location_name: "propertyId"))
|
887
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:property_alias, Shapes::ShapeRef.new(shape: AssetPropertyAlias, location: "querystring", location_name: "propertyAlias"))
|
888
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:start_time_in_seconds, Shapes::ShapeRef.new(shape: TimeInSeconds, required: true, location: "querystring", location_name: "startTimeInSeconds"))
|
889
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:start_time_offset_in_nanos, Shapes::ShapeRef.new(shape: OffsetInNanos, location: "querystring", location_name: "startTimeOffsetInNanos"))
|
890
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:end_time_in_seconds, Shapes::ShapeRef.new(shape: TimeInSeconds, required: true, location: "querystring", location_name: "endTimeInSeconds"))
|
891
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:end_time_offset_in_nanos, Shapes::ShapeRef.new(shape: OffsetInNanos, location: "querystring", location_name: "endTimeOffsetInNanos"))
|
892
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:quality, Shapes::ShapeRef.new(shape: Quality, required: true, location: "querystring", location_name: "quality"))
|
893
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:interval_in_seconds, Shapes::ShapeRef.new(shape: IntervalInSeconds, required: true, location: "querystring", location_name: "intervalInSeconds"))
|
894
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
895
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxInterpolatedResults, location: "querystring", location_name: "maxResults"))
|
896
|
+
GetInterpolatedAssetPropertyValuesRequest.add_member(:type, Shapes::ShapeRef.new(shape: InterpolationType, required: true, location: "querystring", location_name: "type"))
|
897
|
+
GetInterpolatedAssetPropertyValuesRequest.struct_class = Types::GetInterpolatedAssetPropertyValuesRequest
|
898
|
+
|
899
|
+
GetInterpolatedAssetPropertyValuesResponse.add_member(:interpolated_asset_property_values, Shapes::ShapeRef.new(shape: InterpolatedAssetPropertyValues, required: true, location_name: "interpolatedAssetPropertyValues"))
|
900
|
+
GetInterpolatedAssetPropertyValuesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
901
|
+
GetInterpolatedAssetPropertyValuesResponse.struct_class = Types::GetInterpolatedAssetPropertyValuesResponse
|
902
|
+
|
878
903
|
Greengrass.add_member(:group_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "groupArn"))
|
879
904
|
Greengrass.struct_class = Types::Greengrass
|
880
905
|
|
@@ -910,6 +935,12 @@ module Aws::IoTSiteWise
|
|
910
935
|
InternalFailureException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
911
936
|
InternalFailureException.struct_class = Types::InternalFailureException
|
912
937
|
|
938
|
+
InterpolatedAssetPropertyValue.add_member(:timestamp, Shapes::ShapeRef.new(shape: TimeInNanos, required: true, location_name: "timestamp"))
|
939
|
+
InterpolatedAssetPropertyValue.add_member(:value, Shapes::ShapeRef.new(shape: Variant, required: true, location_name: "value"))
|
940
|
+
InterpolatedAssetPropertyValue.struct_class = Types::InterpolatedAssetPropertyValue
|
941
|
+
|
942
|
+
InterpolatedAssetPropertyValues.member = Shapes::ShapeRef.new(shape: InterpolatedAssetPropertyValue)
|
943
|
+
|
913
944
|
InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
914
945
|
InvalidRequestException.struct_class = Types::InvalidRequestException
|
915
946
|
|
@@ -1800,6 +1831,28 @@ module Aws::IoTSiteWise
|
|
1800
1831
|
)
|
1801
1832
|
end)
|
1802
1833
|
|
1834
|
+
api.add_operation(:get_interpolated_asset_property_values, Seahorse::Model::Operation.new.tap do |o|
|
1835
|
+
o.name = "GetInterpolatedAssetPropertyValues"
|
1836
|
+
o.http_method = "GET"
|
1837
|
+
o.http_request_uri = "/properties/interpolated"
|
1838
|
+
o.endpoint_pattern = {
|
1839
|
+
"hostPrefix" => "data.",
|
1840
|
+
}
|
1841
|
+
o.input = Shapes::ShapeRef.new(shape: GetInterpolatedAssetPropertyValuesRequest)
|
1842
|
+
o.output = Shapes::ShapeRef.new(shape: GetInterpolatedAssetPropertyValuesResponse)
|
1843
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1844
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1845
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1846
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1847
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1848
|
+
o[:pager] = Aws::Pager.new(
|
1849
|
+
limit_key: "max_results",
|
1850
|
+
tokens: {
|
1851
|
+
"next_token" => "next_token"
|
1852
|
+
}
|
1853
|
+
)
|
1854
|
+
end)
|
1855
|
+
|
1803
1856
|
api.add_operation(:list_access_policies, Seahorse::Model::Operation.new.tap do |o|
|
1804
1857
|
o.name = "ListAccessPolicies"
|
1805
1858
|
o.http_method = "GET"
|
@@ -3448,6 +3448,121 @@ module Aws::IoTSiteWise
|
|
3448
3448
|
include Aws::Structure
|
3449
3449
|
end
|
3450
3450
|
|
3451
|
+
# @note When making an API call, you may pass GetInterpolatedAssetPropertyValuesRequest
|
3452
|
+
# data as a hash:
|
3453
|
+
#
|
3454
|
+
# {
|
3455
|
+
# asset_id: "ID",
|
3456
|
+
# property_id: "ID",
|
3457
|
+
# property_alias: "AssetPropertyAlias",
|
3458
|
+
# start_time_in_seconds: 1, # required
|
3459
|
+
# start_time_offset_in_nanos: 1,
|
3460
|
+
# end_time_in_seconds: 1, # required
|
3461
|
+
# end_time_offset_in_nanos: 1,
|
3462
|
+
# quality: "GOOD", # required, accepts GOOD, BAD, UNCERTAIN
|
3463
|
+
# interval_in_seconds: 1, # required
|
3464
|
+
# next_token: "NextToken",
|
3465
|
+
# max_results: 1,
|
3466
|
+
# type: "InterpolationType", # required
|
3467
|
+
# }
|
3468
|
+
#
|
3469
|
+
# @!attribute [rw] asset_id
|
3470
|
+
# The ID of the asset.
|
3471
|
+
# @return [String]
|
3472
|
+
#
|
3473
|
+
# @!attribute [rw] property_id
|
3474
|
+
# The ID of the asset property.
|
3475
|
+
# @return [String]
|
3476
|
+
#
|
3477
|
+
# @!attribute [rw] property_alias
|
3478
|
+
# The property alias that identifies the property, such as an OPC-UA
|
3479
|
+
# server data stream path (for example,
|
3480
|
+
# `/company/windfarm/3/turbine/7/temperature`). For more information,
|
3481
|
+
# see [Mapping industrial data streams to asset properties][1] in the
|
3482
|
+
# *AWS IoT SiteWise User Guide*.
|
3483
|
+
#
|
3484
|
+
#
|
3485
|
+
#
|
3486
|
+
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/connect-data-streams.html
|
3487
|
+
# @return [String]
|
3488
|
+
#
|
3489
|
+
# @!attribute [rw] start_time_in_seconds
|
3490
|
+
# The exclusive start of the range from which to interpolate data,
|
3491
|
+
# expressed in seconds in Unix epoch time.
|
3492
|
+
# @return [Integer]
|
3493
|
+
#
|
3494
|
+
# @!attribute [rw] start_time_offset_in_nanos
|
3495
|
+
# The nanosecond offset converted from `startTimeInSeconds`.
|
3496
|
+
# @return [Integer]
|
3497
|
+
#
|
3498
|
+
# @!attribute [rw] end_time_in_seconds
|
3499
|
+
# The inclusive end of the range from which to interpolate data,
|
3500
|
+
# expressed in seconds in Unix epoch time.
|
3501
|
+
# @return [Integer]
|
3502
|
+
#
|
3503
|
+
# @!attribute [rw] end_time_offset_in_nanos
|
3504
|
+
# The nanosecond offset converted from `endTimeInSeconds`.
|
3505
|
+
# @return [Integer]
|
3506
|
+
#
|
3507
|
+
# @!attribute [rw] quality
|
3508
|
+
# The quality of the asset property value. You can use this parameter
|
3509
|
+
# as a filter to choose only the asset property values that have a
|
3510
|
+
# specific quality.
|
3511
|
+
# @return [String]
|
3512
|
+
#
|
3513
|
+
# @!attribute [rw] interval_in_seconds
|
3514
|
+
# The time interval in seconds over which to interpolate data. Each
|
3515
|
+
# interval starts when the previous one ends.
|
3516
|
+
# @return [Integer]
|
3517
|
+
#
|
3518
|
+
# @!attribute [rw] next_token
|
3519
|
+
# The token to be used for the next set of paginated results.
|
3520
|
+
# @return [String]
|
3521
|
+
#
|
3522
|
+
# @!attribute [rw] max_results
|
3523
|
+
# The maximum number of results to be returned per paginated request.
|
3524
|
+
# If not specified, the default value is 10.
|
3525
|
+
# @return [Integer]
|
3526
|
+
#
|
3527
|
+
# @!attribute [rw] type
|
3528
|
+
# The interpolation type.
|
3529
|
+
#
|
3530
|
+
# Valid values: `LINEAR_INTERPOLATION`
|
3531
|
+
# @return [String]
|
3532
|
+
#
|
3533
|
+
class GetInterpolatedAssetPropertyValuesRequest < Struct.new(
|
3534
|
+
:asset_id,
|
3535
|
+
:property_id,
|
3536
|
+
:property_alias,
|
3537
|
+
:start_time_in_seconds,
|
3538
|
+
:start_time_offset_in_nanos,
|
3539
|
+
:end_time_in_seconds,
|
3540
|
+
:end_time_offset_in_nanos,
|
3541
|
+
:quality,
|
3542
|
+
:interval_in_seconds,
|
3543
|
+
:next_token,
|
3544
|
+
:max_results,
|
3545
|
+
:type)
|
3546
|
+
SENSITIVE = []
|
3547
|
+
include Aws::Structure
|
3548
|
+
end
|
3549
|
+
|
3550
|
+
# @!attribute [rw] interpolated_asset_property_values
|
3551
|
+
# The requested interpolated values.
|
3552
|
+
# @return [Array<Types::InterpolatedAssetPropertyValue>]
|
3553
|
+
#
|
3554
|
+
# @!attribute [rw] next_token
|
3555
|
+
# The token for the next set of results, or null if there are no
|
3556
|
+
# additional results.
|
3557
|
+
# @return [String]
|
3558
|
+
#
|
3559
|
+
class GetInterpolatedAssetPropertyValuesResponse < Struct.new(
|
3560
|
+
:interpolated_asset_property_values,
|
3561
|
+
:next_token)
|
3562
|
+
SENSITIVE = []
|
3563
|
+
include Aws::Structure
|
3564
|
+
end
|
3565
|
+
|
3451
3566
|
# Contains details for a gateway that runs on AWS IoT Greengrass. To
|
3452
3567
|
# create a gateway that runs on AWS IoT Greengrass, you must add the IoT
|
3453
3568
|
# SiteWise connector to a Greengrass group and deploy it. Your
|
@@ -3524,7 +3639,7 @@ module Aws::IoTSiteWise
|
|
3524
3639
|
#
|
3525
3640
|
#
|
3526
3641
|
#
|
3527
|
-
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.
|
3642
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
|
3528
3643
|
# @return [String]
|
3529
3644
|
#
|
3530
3645
|
class IAMRoleIdentity < Struct.new(
|
@@ -3711,6 +3826,23 @@ module Aws::IoTSiteWise
|
|
3711
3826
|
include Aws::Structure
|
3712
3827
|
end
|
3713
3828
|
|
3829
|
+
# Contains information about an interpolated asset property value.
|
3830
|
+
#
|
3831
|
+
# @!attribute [rw] timestamp
|
3832
|
+
# Contains a timestamp with optional nanosecond granularity.
|
3833
|
+
# @return [Types::TimeInNanos]
|
3834
|
+
#
|
3835
|
+
# @!attribute [rw] value
|
3836
|
+
# Contains an asset property value (of a single type only).
|
3837
|
+
# @return [Types::Variant]
|
3838
|
+
#
|
3839
|
+
class InterpolatedAssetPropertyValue < Struct.new(
|
3840
|
+
:timestamp,
|
3841
|
+
:value)
|
3842
|
+
SENSITIVE = []
|
3843
|
+
include Aws::Structure
|
3844
|
+
end
|
3845
|
+
|
3714
3846
|
# The request isn't valid. This can occur if your request contains
|
3715
3847
|
# malformed JSON or unsupported characters. Check your request and try
|
3716
3848
|
# again.
|
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.21.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-
|
11
|
+
date: 2021-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -67,8 +67,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
67
67
|
licenses:
|
68
68
|
- Apache-2.0
|
69
69
|
metadata:
|
70
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
71
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
70
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotsitewise
|
71
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotsitewise/CHANGELOG.md
|
72
72
|
post_install_message:
|
73
73
|
rdoc_options: []
|
74
74
|
require_paths:
|
@@ -84,8 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
|
88
|
-
rubygems_version: 2.7.6.2
|
87
|
+
rubygems_version: 3.1.6
|
89
88
|
signing_key:
|
90
89
|
specification_version: 4
|
91
90
|
summary: AWS SDK for Ruby - AWS IoT SiteWise
|