aws-sdk-iotsitewise 1.78.0 → 1.80.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +49 -1
- data/lib/aws-sdk-iotsitewise/client_api.rb +12 -0
- data/lib/aws-sdk-iotsitewise/types.rb +57 -6
- data/lib/aws-sdk-iotsitewise.rb +1 -1
- data/sig/client.rbs +11 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +10 -0
- 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: f51b74777360f90c42bc8fab44134c05648eea498ddad517087404821fa96020
|
4
|
+
data.tar.gz: '068678d7814796737720034c2fe356d7c1fd6d95d360a7c931bfef37e4dded87'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 739b7398735adacdcdcaf7264d34d6918a5577cb9398799060b9427035706b165563cf3224d465b2a08e65db2075bd036fea146adb8e2fba814f47224ee6e119
|
7
|
+
data.tar.gz: fc560ee7762a75b60ab6d7fbb1b94b26563cc08d12813252a7e4167f511e459952baee4bc1e435f8cd78c2ebc947444316e97f30f1a250d20b5d7a8415826121
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2025-01-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS IoT SiteWise now supports ingestion and querying of Null (all data types) and NaN (double type) values of bad or uncertain data quality. New partial error handling prevents data loss during ingestion. Enabled by default for new customers; existing customers can opt-in.
|
8
|
+
|
9
|
+
1.79.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.78.0 (2024-11-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -268,11 +268,34 @@ module Aws::IoTSiteWise
|
|
268
268
|
# Used when loading credentials from the shared credentials file
|
269
269
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
270
270
|
#
|
271
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
272
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
273
|
+
#
|
274
|
+
# * `when_supported` - (default) When set, a checksum will be
|
275
|
+
# calculated for all request payloads of operations modeled with the
|
276
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
277
|
+
# `requestAlgorithmMember` is modeled.
|
278
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
279
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
280
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
281
|
+
# is modeled and supplied.
|
282
|
+
#
|
271
283
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
272
284
|
# The minimum size in bytes that triggers compression for request
|
273
285
|
# bodies. The value must be non-negative integer value between 0
|
274
286
|
# and 10485780 bytes inclusive.
|
275
287
|
#
|
288
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
289
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
290
|
+
#
|
291
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
292
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
293
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
294
|
+
# are supported.
|
295
|
+
# * `when_required` - When set, checksum validation is not performed on
|
296
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
297
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
298
|
+
#
|
276
299
|
# @option options [Proc] :retry_backoff
|
277
300
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
278
301
|
# This option is only used in the `legacy` retry mode.
|
@@ -799,6 +822,7 @@ module Aws::IoTSiteWise
|
|
799
822
|
# resp.success_entries[0].asset_property_value.value.integer_value #=> Integer
|
800
823
|
# resp.success_entries[0].asset_property_value.value.double_value #=> Float
|
801
824
|
# resp.success_entries[0].asset_property_value.value.boolean_value #=> Boolean
|
825
|
+
# resp.success_entries[0].asset_property_value.value.null_value.value_type #=> String, one of "D", "B", "S", "I", "U"
|
802
826
|
# resp.success_entries[0].asset_property_value.timestamp.time_in_seconds #=> Integer
|
803
827
|
# resp.success_entries[0].asset_property_value.timestamp.offset_in_nanos #=> Integer
|
804
828
|
# resp.success_entries[0].asset_property_value.quality #=> String, one of "GOOD", "BAD", "UNCERTAIN"
|
@@ -881,6 +905,7 @@ module Aws::IoTSiteWise
|
|
881
905
|
# resp.success_entries[0].asset_property_value_history[0].value.integer_value #=> Integer
|
882
906
|
# resp.success_entries[0].asset_property_value_history[0].value.double_value #=> Float
|
883
907
|
# resp.success_entries[0].asset_property_value_history[0].value.boolean_value #=> Boolean
|
908
|
+
# resp.success_entries[0].asset_property_value_history[0].value.null_value.value_type #=> String, one of "D", "B", "S", "I", "U"
|
884
909
|
# resp.success_entries[0].asset_property_value_history[0].timestamp.time_in_seconds #=> Integer
|
885
910
|
# resp.success_entries[0].asset_property_value_history[0].timestamp.offset_in_nanos #=> Integer
|
886
911
|
# resp.success_entries[0].asset_property_value_history[0].quality #=> String, one of "GOOD", "BAD", "UNCERTAIN"
|
@@ -932,6 +957,12 @@ module Aws::IoTSiteWise
|
|
932
957
|
# [2]: https://docs.aws.amazon.com/iot-sitewise/latest/APIReference/API_UpdateAssetProperty.html
|
933
958
|
# [3]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/security_iam_service-with-iam.html#security_iam_service-with-iam-id-based-policies-batchputassetpropertyvalue-action
|
934
959
|
#
|
960
|
+
# @option params [Boolean] :enable_partial_entry_processing
|
961
|
+
# This setting enables partial ingestion at entry-level. If set to
|
962
|
+
# `true`, we ingest all TQVs not resulting in an error. If set to
|
963
|
+
# `false`, an invalid TQV fails ingestion of the entire entry that
|
964
|
+
# contains it.
|
965
|
+
#
|
935
966
|
# @option params [required, Array<Types::PutAssetPropertyValueEntry>] :entries
|
936
967
|
# The list of asset property value entries for the batch put request.
|
937
968
|
# You can specify up to 10 entries per request.
|
@@ -943,6 +974,7 @@ module Aws::IoTSiteWise
|
|
943
974
|
# @example Request syntax with placeholder values
|
944
975
|
#
|
945
976
|
# resp = client.batch_put_asset_property_value({
|
977
|
+
# enable_partial_entry_processing: false,
|
946
978
|
# entries: [ # required
|
947
979
|
# {
|
948
980
|
# entry_id: "EntryId", # required
|
@@ -956,6 +988,9 @@ module Aws::IoTSiteWise
|
|
956
988
|
# integer_value: 1,
|
957
989
|
# double_value: 1.0,
|
958
990
|
# boolean_value: false,
|
991
|
+
# null_value: {
|
992
|
+
# value_type: "D", # required, accepts D, B, S, I, U
|
993
|
+
# },
|
959
994
|
# },
|
960
995
|
# timestamp: { # required
|
961
996
|
# time_in_seconds: 1, # required
|
@@ -3829,6 +3864,7 @@ module Aws::IoTSiteWise
|
|
3829
3864
|
# * {Types::DescribeStorageConfigurationResponse#last_update_date #last_update_date} => Time
|
3830
3865
|
# * {Types::DescribeStorageConfigurationResponse#warm_tier #warm_tier} => String
|
3831
3866
|
# * {Types::DescribeStorageConfigurationResponse#warm_tier_retention_period #warm_tier_retention_period} => Types::WarmTierRetentionPeriod
|
3867
|
+
# * {Types::DescribeStorageConfigurationResponse#disallow_ingest_null_na_n #disallow_ingest_null_na_n} => Boolean
|
3832
3868
|
#
|
3833
3869
|
# @example Response structure
|
3834
3870
|
#
|
@@ -3845,6 +3881,7 @@ module Aws::IoTSiteWise
|
|
3845
3881
|
# resp.warm_tier #=> String, one of "ENABLED", "DISABLED"
|
3846
3882
|
# resp.warm_tier_retention_period.number_of_days #=> Integer
|
3847
3883
|
# resp.warm_tier_retention_period.unlimited #=> Boolean
|
3884
|
+
# resp.disallow_ingest_null_na_n #=> Boolean
|
3848
3885
|
#
|
3849
3886
|
# @overload describe_storage_configuration(params = {})
|
3850
3887
|
# @param [Hash] params ({})
|
@@ -4310,6 +4347,7 @@ module Aws::IoTSiteWise
|
|
4310
4347
|
# resp.property_value.value.integer_value #=> Integer
|
4311
4348
|
# resp.property_value.value.double_value #=> Float
|
4312
4349
|
# resp.property_value.value.boolean_value #=> Boolean
|
4350
|
+
# resp.property_value.value.null_value.value_type #=> String, one of "D", "B", "S", "I", "U"
|
4313
4351
|
# resp.property_value.timestamp.time_in_seconds #=> Integer
|
4314
4352
|
# resp.property_value.timestamp.offset_in_nanos #=> Integer
|
4315
4353
|
# resp.property_value.quality #=> String, one of "GOOD", "BAD", "UNCERTAIN"
|
@@ -4410,6 +4448,7 @@ module Aws::IoTSiteWise
|
|
4410
4448
|
# resp.asset_property_value_history[0].value.integer_value #=> Integer
|
4411
4449
|
# resp.asset_property_value_history[0].value.double_value #=> Float
|
4412
4450
|
# resp.asset_property_value_history[0].value.boolean_value #=> Boolean
|
4451
|
+
# resp.asset_property_value_history[0].value.null_value.value_type #=> String, one of "D", "B", "S", "I", "U"
|
4413
4452
|
# resp.asset_property_value_history[0].timestamp.time_in_seconds #=> Integer
|
4414
4453
|
# resp.asset_property_value_history[0].timestamp.offset_in_nanos #=> Integer
|
4415
4454
|
# resp.asset_property_value_history[0].quality #=> String, one of "GOOD", "BAD", "UNCERTAIN"
|
@@ -4583,6 +4622,7 @@ module Aws::IoTSiteWise
|
|
4583
4622
|
# resp.interpolated_asset_property_values[0].value.integer_value #=> Integer
|
4584
4623
|
# resp.interpolated_asset_property_values[0].value.double_value #=> Float
|
4585
4624
|
# resp.interpolated_asset_property_values[0].value.boolean_value #=> Boolean
|
4625
|
+
# resp.interpolated_asset_property_values[0].value.null_value.value_type #=> String, one of "D", "B", "S", "I", "U"
|
4586
4626
|
# resp.next_token #=> String
|
4587
4627
|
#
|
4588
4628
|
# @overload get_interpolated_asset_property_values(params = {})
|
@@ -6137,6 +6177,11 @@ module Aws::IoTSiteWise
|
|
6137
6177
|
# tier before it is deleted. You can set this only if cold tier is
|
6138
6178
|
# enabled.
|
6139
6179
|
#
|
6180
|
+
# @option params [Boolean] :disallow_ingest_null_na_n
|
6181
|
+
# Describes the configuration for ingesting NULL and NaN data. By
|
6182
|
+
# default the feature is allowed. The feature is disallowed if the value
|
6183
|
+
# is `true`.
|
6184
|
+
#
|
6140
6185
|
# @return [Types::PutStorageConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6141
6186
|
#
|
6142
6187
|
# * {Types::PutStorageConfigurationResponse#storage_type #storage_type} => String
|
@@ -6146,6 +6191,7 @@ module Aws::IoTSiteWise
|
|
6146
6191
|
# * {Types::PutStorageConfigurationResponse#configuration_status #configuration_status} => Types::ConfigurationStatus
|
6147
6192
|
# * {Types::PutStorageConfigurationResponse#warm_tier #warm_tier} => String
|
6148
6193
|
# * {Types::PutStorageConfigurationResponse#warm_tier_retention_period #warm_tier_retention_period} => Types::WarmTierRetentionPeriod
|
6194
|
+
# * {Types::PutStorageConfigurationResponse#disallow_ingest_null_na_n #disallow_ingest_null_na_n} => Boolean
|
6149
6195
|
#
|
6150
6196
|
# @example Request syntax with placeholder values
|
6151
6197
|
#
|
@@ -6167,6 +6213,7 @@ module Aws::IoTSiteWise
|
|
6167
6213
|
# number_of_days: 1,
|
6168
6214
|
# unlimited: false,
|
6169
6215
|
# },
|
6216
|
+
# disallow_ingest_null_na_n: false,
|
6170
6217
|
# })
|
6171
6218
|
#
|
6172
6219
|
# @example Response structure
|
@@ -6183,6 +6230,7 @@ module Aws::IoTSiteWise
|
|
6183
6230
|
# resp.warm_tier #=> String, one of "ENABLED", "DISABLED"
|
6184
6231
|
# resp.warm_tier_retention_period.number_of_days #=> Integer
|
6185
6232
|
# resp.warm_tier_retention_period.unlimited #=> Boolean
|
6233
|
+
# resp.disallow_ingest_null_na_n #=> Boolean
|
6186
6234
|
#
|
6187
6235
|
# @overload put_storage_configuration(params = {})
|
6188
6236
|
# @param [Hash] params ({})
|
@@ -7383,7 +7431,7 @@ module Aws::IoTSiteWise
|
|
7383
7431
|
tracer: tracer
|
7384
7432
|
)
|
7385
7433
|
context[:gem_name] = 'aws-sdk-iotsitewise'
|
7386
|
-
context[:gem_version] = '1.
|
7434
|
+
context[:gem_version] = '1.80.0'
|
7387
7435
|
Seahorse::Client::Request.new(handlers, context)
|
7388
7436
|
end
|
7389
7437
|
|
@@ -148,6 +148,7 @@ module Aws::IoTSiteWise
|
|
148
148
|
BatchPutAssetPropertyValueErrorCode = Shapes::StringShape.new(name: 'BatchPutAssetPropertyValueErrorCode')
|
149
149
|
BatchPutAssetPropertyValueRequest = Shapes::StructureShape.new(name: 'BatchPutAssetPropertyValueRequest')
|
150
150
|
BatchPutAssetPropertyValueResponse = Shapes::StructureShape.new(name: 'BatchPutAssetPropertyValueResponse')
|
151
|
+
BooleanValue = Shapes::BooleanShape.new(name: 'BooleanValue')
|
151
152
|
Bucket = Shapes::StringShape.new(name: 'Bucket')
|
152
153
|
CapabilityConfiguration = Shapes::StringShape.new(name: 'CapabilityConfiguration')
|
153
154
|
CapabilityNamespace = Shapes::StringShape.new(name: 'CapabilityNamespace')
|
@@ -271,6 +272,7 @@ module Aws::IoTSiteWise
|
|
271
272
|
DetailedErrorCode = Shapes::StringShape.new(name: 'DetailedErrorCode')
|
272
273
|
DetailedErrorMessage = Shapes::StringShape.new(name: 'DetailedErrorMessage')
|
273
274
|
DetailedErrors = Shapes::ListShape.new(name: 'DetailedErrors')
|
275
|
+
DisallowIngestNullNaN = Shapes::BooleanShape.new(name: 'DisallowIngestNullNaN')
|
274
276
|
DisassociateAssetsRequest = Shapes::StructureShape.new(name: 'DisassociateAssetsRequest')
|
275
277
|
DisassociateTimeSeriesFromAssetPropertyRequest = Shapes::StructureShape.new(name: 'DisassociateTimeSeriesFromAssetPropertyRequest')
|
276
278
|
DisassociatedDataStorageState = Shapes::StringShape.new(name: 'DisassociatedDataStorageState')
|
@@ -445,6 +447,7 @@ module Aws::IoTSiteWise
|
|
445
447
|
PropertyValueBooleanValue = Shapes::BooleanShape.new(name: 'PropertyValueBooleanValue')
|
446
448
|
PropertyValueDoubleValue = Shapes::FloatShape.new(name: 'PropertyValueDoubleValue')
|
447
449
|
PropertyValueIntegerValue = Shapes::IntegerShape.new(name: 'PropertyValueIntegerValue')
|
450
|
+
PropertyValueNullValue = Shapes::StructureShape.new(name: 'PropertyValueNullValue')
|
448
451
|
PropertyValueStringValue = Shapes::StringShape.new(name: 'PropertyValueStringValue')
|
449
452
|
PutAssetPropertyValueEntries = Shapes::ListShape.new(name: 'PutAssetPropertyValueEntries')
|
450
453
|
PutAssetPropertyValueEntry = Shapes::StructureShape.new(name: 'PutAssetPropertyValueEntry')
|
@@ -458,6 +461,7 @@ module Aws::IoTSiteWise
|
|
458
461
|
Quality = Shapes::StringShape.new(name: 'Quality')
|
459
462
|
QueryStatement = Shapes::StringShape.new(name: 'QueryStatement')
|
460
463
|
QueryTimeoutException = Shapes::StructureShape.new(name: 'QueryTimeoutException')
|
464
|
+
RawValueType = Shapes::StringShape.new(name: 'RawValueType')
|
461
465
|
Reference = Shapes::StructureShape.new(name: 'Reference')
|
462
466
|
Resolution = Shapes::StringShape.new(name: 'Resolution')
|
463
467
|
Resource = Shapes::StructureShape.new(name: 'Resource')
|
@@ -1010,6 +1014,7 @@ module Aws::IoTSiteWise
|
|
1010
1014
|
|
1011
1015
|
BatchPutAssetPropertyErrors.member = Shapes::ShapeRef.new(shape: BatchPutAssetPropertyError)
|
1012
1016
|
|
1017
|
+
BatchPutAssetPropertyValueRequest.add_member(:enable_partial_entry_processing, Shapes::ShapeRef.new(shape: BooleanValue, location_name: "enablePartialEntryProcessing"))
|
1013
1018
|
BatchPutAssetPropertyValueRequest.add_member(:entries, Shapes::ShapeRef.new(shape: PutAssetPropertyValueEntries, required: true, location_name: "entries"))
|
1014
1019
|
BatchPutAssetPropertyValueRequest.struct_class = Types::BatchPutAssetPropertyValueRequest
|
1015
1020
|
|
@@ -1560,6 +1565,7 @@ module Aws::IoTSiteWise
|
|
1560
1565
|
DescribeStorageConfigurationResponse.add_member(:last_update_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateDate"))
|
1561
1566
|
DescribeStorageConfigurationResponse.add_member(:warm_tier, Shapes::ShapeRef.new(shape: WarmTierState, location_name: "warmTier"))
|
1562
1567
|
DescribeStorageConfigurationResponse.add_member(:warm_tier_retention_period, Shapes::ShapeRef.new(shape: WarmTierRetentionPeriod, location_name: "warmTierRetentionPeriod"))
|
1568
|
+
DescribeStorageConfigurationResponse.add_member(:disallow_ingest_null_na_n, Shapes::ShapeRef.new(shape: DisallowIngestNullNaN, location_name: "disallowIngestNullNaN"))
|
1563
1569
|
DescribeStorageConfigurationResponse.struct_class = Types::DescribeStorageConfigurationResponse
|
1564
1570
|
|
1565
1571
|
DescribeTimeSeriesRequest.add_member(:alias, Shapes::ShapeRef.new(shape: PropertyAlias, location: "querystring", location_name: "alias"))
|
@@ -2087,6 +2093,9 @@ module Aws::IoTSiteWise
|
|
2087
2093
|
PropertyType.add_member(:metric, Shapes::ShapeRef.new(shape: Metric, location_name: "metric"))
|
2088
2094
|
PropertyType.struct_class = Types::PropertyType
|
2089
2095
|
|
2096
|
+
PropertyValueNullValue.add_member(:value_type, Shapes::ShapeRef.new(shape: RawValueType, required: true, location_name: "valueType"))
|
2097
|
+
PropertyValueNullValue.struct_class = Types::PropertyValueNullValue
|
2098
|
+
|
2090
2099
|
PutAssetPropertyValueEntries.member = Shapes::ShapeRef.new(shape: PutAssetPropertyValueEntry)
|
2091
2100
|
|
2092
2101
|
PutAssetPropertyValueEntry.add_member(:entry_id, Shapes::ShapeRef.new(shape: EntryId, required: true, location_name: "entryId"))
|
@@ -2116,6 +2125,7 @@ module Aws::IoTSiteWise
|
|
2116
2125
|
PutStorageConfigurationRequest.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
|
2117
2126
|
PutStorageConfigurationRequest.add_member(:warm_tier, Shapes::ShapeRef.new(shape: WarmTierState, location_name: "warmTier"))
|
2118
2127
|
PutStorageConfigurationRequest.add_member(:warm_tier_retention_period, Shapes::ShapeRef.new(shape: WarmTierRetentionPeriod, location_name: "warmTierRetentionPeriod"))
|
2128
|
+
PutStorageConfigurationRequest.add_member(:disallow_ingest_null_na_n, Shapes::ShapeRef.new(shape: DisallowIngestNullNaN, location_name: "disallowIngestNullNaN"))
|
2119
2129
|
PutStorageConfigurationRequest.struct_class = Types::PutStorageConfigurationRequest
|
2120
2130
|
|
2121
2131
|
PutStorageConfigurationResponse.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, required: true, location_name: "storageType"))
|
@@ -2125,6 +2135,7 @@ module Aws::IoTSiteWise
|
|
2125
2135
|
PutStorageConfigurationResponse.add_member(:configuration_status, Shapes::ShapeRef.new(shape: ConfigurationStatus, required: true, location_name: "configurationStatus"))
|
2126
2136
|
PutStorageConfigurationResponse.add_member(:warm_tier, Shapes::ShapeRef.new(shape: WarmTierState, location_name: "warmTier"))
|
2127
2137
|
PutStorageConfigurationResponse.add_member(:warm_tier_retention_period, Shapes::ShapeRef.new(shape: WarmTierRetentionPeriod, location_name: "warmTierRetentionPeriod"))
|
2138
|
+
PutStorageConfigurationResponse.add_member(:disallow_ingest_null_na_n, Shapes::ShapeRef.new(shape: DisallowIngestNullNaN, location_name: "disallowIngestNullNaN"))
|
2128
2139
|
PutStorageConfigurationResponse.struct_class = Types::PutStorageConfigurationResponse
|
2129
2140
|
|
2130
2141
|
Qualities.member = Shapes::ShapeRef.new(shape: Quality)
|
@@ -2377,6 +2388,7 @@ module Aws::IoTSiteWise
|
|
2377
2388
|
Variant.add_member(:integer_value, Shapes::ShapeRef.new(shape: PropertyValueIntegerValue, location_name: "integerValue"))
|
2378
2389
|
Variant.add_member(:double_value, Shapes::ShapeRef.new(shape: PropertyValueDoubleValue, location_name: "doubleValue"))
|
2379
2390
|
Variant.add_member(:boolean_value, Shapes::ShapeRef.new(shape: PropertyValueBooleanValue, location_name: "booleanValue"))
|
2391
|
+
Variant.add_member(:null_value, Shapes::ShapeRef.new(shape: PropertyValueNullValue, location_name: "nullValue"))
|
2380
2392
|
Variant.struct_class = Types::Variant
|
2381
2393
|
|
2382
2394
|
WarmTierRetentionPeriod.add_member(:number_of_days, Shapes::ShapeRef.new(shape: NumberOfDays, location_name: "numberOfDays"))
|
@@ -2290,12 +2290,20 @@ module Aws::IoTSiteWise
|
|
2290
2290
|
include Aws::Structure
|
2291
2291
|
end
|
2292
2292
|
|
2293
|
+
# @!attribute [rw] enable_partial_entry_processing
|
2294
|
+
# This setting enables partial ingestion at entry-level. If set to
|
2295
|
+
# `true`, we ingest all TQVs not resulting in an error. If set to
|
2296
|
+
# `false`, an invalid TQV fails ingestion of the entire entry that
|
2297
|
+
# contains it.
|
2298
|
+
# @return [Boolean]
|
2299
|
+
#
|
2293
2300
|
# @!attribute [rw] entries
|
2294
2301
|
# The list of asset property value entries for the batch put request.
|
2295
2302
|
# You can specify up to 10 entries per request.
|
2296
2303
|
# @return [Array<Types::PutAssetPropertyValueEntry>]
|
2297
2304
|
#
|
2298
2305
|
class BatchPutAssetPropertyValueRequest < Struct.new(
|
2306
|
+
:enable_partial_entry_processing,
|
2299
2307
|
:entries)
|
2300
2308
|
SENSITIVE = []
|
2301
2309
|
include Aws::Structure
|
@@ -5348,6 +5356,12 @@ module Aws::IoTSiteWise
|
|
5348
5356
|
# enabled.
|
5349
5357
|
# @return [Types::WarmTierRetentionPeriod]
|
5350
5358
|
#
|
5359
|
+
# @!attribute [rw] disallow_ingest_null_na_n
|
5360
|
+
# Describes the configuration for ingesting NULL and NaN data. By
|
5361
|
+
# default the feature is allowed. The feature is disallowed if the
|
5362
|
+
# value is `true`.
|
5363
|
+
# @return [Boolean]
|
5364
|
+
#
|
5351
5365
|
class DescribeStorageConfigurationResponse < Struct.new(
|
5352
5366
|
:storage_type,
|
5353
5367
|
:multi_layer_storage,
|
@@ -5356,7 +5370,8 @@ module Aws::IoTSiteWise
|
|
5356
5370
|
:configuration_status,
|
5357
5371
|
:last_update_date,
|
5358
5372
|
:warm_tier,
|
5359
|
-
:warm_tier_retention_period
|
5373
|
+
:warm_tier_retention_period,
|
5374
|
+
:disallow_ingest_null_na_n)
|
5360
5375
|
SENSITIVE = []
|
5361
5376
|
include Aws::Structure
|
5362
5377
|
end
|
@@ -8105,6 +8120,19 @@ module Aws::IoTSiteWise
|
|
8105
8120
|
include Aws::Structure
|
8106
8121
|
end
|
8107
8122
|
|
8123
|
+
# The value type of null asset property data with BAD and UNCERTAIN
|
8124
|
+
# qualities.
|
8125
|
+
#
|
8126
|
+
# @!attribute [rw] value_type
|
8127
|
+
# The type of null asset property data.
|
8128
|
+
# @return [String]
|
8129
|
+
#
|
8130
|
+
class PropertyValueNullValue < Struct.new(
|
8131
|
+
:value_type)
|
8132
|
+
SENSITIVE = []
|
8133
|
+
include Aws::Structure
|
8134
|
+
end
|
8135
|
+
|
8108
8136
|
# Contains a list of value updates for an asset property in the list of
|
8109
8137
|
# asset entries consumed by the [BatchPutAssetPropertyValue][1] API
|
8110
8138
|
# operation.
|
@@ -8261,13 +8289,20 @@ module Aws::IoTSiteWise
|
|
8261
8289
|
# enabled.
|
8262
8290
|
# @return [Types::WarmTierRetentionPeriod]
|
8263
8291
|
#
|
8292
|
+
# @!attribute [rw] disallow_ingest_null_na_n
|
8293
|
+
# Describes the configuration for ingesting NULL and NaN data. By
|
8294
|
+
# default the feature is allowed. The feature is disallowed if the
|
8295
|
+
# value is `true`.
|
8296
|
+
# @return [Boolean]
|
8297
|
+
#
|
8264
8298
|
class PutStorageConfigurationRequest < Struct.new(
|
8265
8299
|
:storage_type,
|
8266
8300
|
:multi_layer_storage,
|
8267
8301
|
:disassociated_data_storage,
|
8268
8302
|
:retention_period,
|
8269
8303
|
:warm_tier,
|
8270
|
-
:warm_tier_retention_period
|
8304
|
+
:warm_tier_retention_period,
|
8305
|
+
:disallow_ingest_null_na_n)
|
8271
8306
|
SENSITIVE = []
|
8272
8307
|
include Aws::Structure
|
8273
8308
|
end
|
@@ -8331,6 +8366,12 @@ module Aws::IoTSiteWise
|
|
8331
8366
|
# enabled.
|
8332
8367
|
# @return [Types::WarmTierRetentionPeriod]
|
8333
8368
|
#
|
8369
|
+
# @!attribute [rw] disallow_ingest_null_na_n
|
8370
|
+
# Describes the configuration for ingesting NULL and NaN data. By
|
8371
|
+
# default the feature is allowed. The feature is disallowed if the
|
8372
|
+
# value is `true`.
|
8373
|
+
# @return [Boolean]
|
8374
|
+
#
|
8334
8375
|
class PutStorageConfigurationResponse < Struct.new(
|
8335
8376
|
:storage_type,
|
8336
8377
|
:multi_layer_storage,
|
@@ -8338,7 +8379,8 @@ module Aws::IoTSiteWise
|
|
8338
8379
|
:retention_period,
|
8339
8380
|
:configuration_status,
|
8340
8381
|
:warm_tier,
|
8341
|
-
:warm_tier_retention_period
|
8382
|
+
:warm_tier_retention_period,
|
8383
|
+
:disallow_ingest_null_na_n)
|
8342
8384
|
SENSITIVE = []
|
8343
8385
|
include Aws::Structure
|
8344
8386
|
end
|
@@ -9700,7 +9742,9 @@ module Aws::IoTSiteWise
|
|
9700
9742
|
# Contains an asset property value (of a single type only).
|
9701
9743
|
#
|
9702
9744
|
# @!attribute [rw] string_value
|
9703
|
-
# Asset property data of type string (sequence of characters).
|
9745
|
+
# Asset property data of type string (sequence of characters). The
|
9746
|
+
# allowed pattern: "^$\|\[^\\u0000-\\u001F\\u007F\]+". The max
|
9747
|
+
# length is 1024.
|
9704
9748
|
# @return [String]
|
9705
9749
|
#
|
9706
9750
|
# @!attribute [rw] integer_value
|
@@ -9708,18 +9752,25 @@ module Aws::IoTSiteWise
|
|
9708
9752
|
# @return [Integer]
|
9709
9753
|
#
|
9710
9754
|
# @!attribute [rw] double_value
|
9711
|
-
# Asset property data of type double (floating point number).
|
9755
|
+
# Asset property data of type double (floating point number). The min
|
9756
|
+
# value is -10^10. The max value is 10^10. Double.NaN is allowed.
|
9712
9757
|
# @return [Float]
|
9713
9758
|
#
|
9714
9759
|
# @!attribute [rw] boolean_value
|
9715
9760
|
# Asset property data of type Boolean (true or false).
|
9716
9761
|
# @return [Boolean]
|
9717
9762
|
#
|
9763
|
+
# @!attribute [rw] null_value
|
9764
|
+
# The type of null asset property data with BAD and UNCERTAIN
|
9765
|
+
# qualities.
|
9766
|
+
# @return [Types::PropertyValueNullValue]
|
9767
|
+
#
|
9718
9768
|
class Variant < Struct.new(
|
9719
9769
|
:string_value,
|
9720
9770
|
:integer_value,
|
9721
9771
|
:double_value,
|
9722
|
-
:boolean_value
|
9772
|
+
:boolean_value,
|
9773
|
+
:null_value)
|
9723
9774
|
SENSITIVE = []
|
9724
9775
|
include Aws::Structure
|
9725
9776
|
end
|
data/lib/aws-sdk-iotsitewise.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -42,7 +42,9 @@ module Aws
|
|
42
42
|
?max_attempts: Integer,
|
43
43
|
?output_event_stream_handler: Proc,
|
44
44
|
?profile: String,
|
45
|
+
?request_checksum_calculation: String,
|
45
46
|
?request_min_compression_size_bytes: Integer,
|
47
|
+
?response_checksum_validation: String,
|
46
48
|
?retry_backoff: Proc,
|
47
49
|
?retry_base_delay: Float,
|
48
50
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -201,6 +203,7 @@ module Aws
|
|
201
203
|
end
|
202
204
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#batch_put_asset_property_value-instance_method
|
203
205
|
def batch_put_asset_property_value: (
|
206
|
+
?enable_partial_entry_processing: bool,
|
204
207
|
entries: Array[
|
205
208
|
{
|
206
209
|
entry_id: ::String,
|
@@ -213,7 +216,10 @@ module Aws
|
|
213
216
|
string_value: ::String?,
|
214
217
|
integer_value: ::Integer?,
|
215
218
|
double_value: ::Float?,
|
216
|
-
boolean_value: bool
|
219
|
+
boolean_value: bool?,
|
220
|
+
null_value: {
|
221
|
+
value_type: ("D" | "B" | "S" | "I" | "U")
|
222
|
+
}?
|
217
223
|
},
|
218
224
|
timestamp: {
|
219
225
|
time_in_seconds: ::Integer,
|
@@ -1106,6 +1112,7 @@ module Aws
|
|
1106
1112
|
def last_update_date: () -> ::Time
|
1107
1113
|
def warm_tier: () -> ("ENABLED" | "DISABLED")
|
1108
1114
|
def warm_tier_retention_period: () -> Types::WarmTierRetentionPeriod
|
1115
|
+
def disallow_ingest_null_na_n: () -> bool
|
1109
1116
|
end
|
1110
1117
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#describe_storage_configuration-instance_method
|
1111
1118
|
def describe_storage_configuration: (
|
@@ -1561,6 +1568,7 @@ module Aws
|
|
1561
1568
|
def configuration_status: () -> Types::ConfigurationStatus
|
1562
1569
|
def warm_tier: () -> ("ENABLED" | "DISABLED")
|
1563
1570
|
def warm_tier_retention_period: () -> Types::WarmTierRetentionPeriod
|
1571
|
+
def disallow_ingest_null_na_n: () -> bool
|
1564
1572
|
end
|
1565
1573
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTSiteWise/Client.html#put_storage_configuration-instance_method
|
1566
1574
|
def put_storage_configuration: (
|
@@ -1580,7 +1588,8 @@ module Aws
|
|
1580
1588
|
?warm_tier_retention_period: {
|
1581
1589
|
number_of_days: ::Integer?,
|
1582
1590
|
unlimited: bool?
|
1583
|
-
}
|
1591
|
+
},
|
1592
|
+
?disallow_ingest_null_na_n: bool
|
1584
1593
|
) -> _PutStorageConfigurationResponseSuccess
|
1585
1594
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutStorageConfigurationResponseSuccess
|
1586
1595
|
|
data/sig/resource.rbs
CHANGED
@@ -42,7 +42,9 @@ module Aws
|
|
42
42
|
?max_attempts: Integer,
|
43
43
|
?output_event_stream_handler: Proc,
|
44
44
|
?profile: String,
|
45
|
+
?request_checksum_calculation: String,
|
45
46
|
?request_min_compression_size_bytes: Integer,
|
47
|
+
?response_checksum_validation: String,
|
46
48
|
?retry_backoff: Proc,
|
47
49
|
?retry_base_delay: Float,
|
48
50
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -518,6 +518,7 @@ module Aws::IoTSiteWise
|
|
518
518
|
end
|
519
519
|
|
520
520
|
class BatchPutAssetPropertyValueRequest
|
521
|
+
attr_accessor enable_partial_entry_processing: bool
|
521
522
|
attr_accessor entries: ::Array[Types::PutAssetPropertyValueEntry]
|
522
523
|
SENSITIVE: []
|
523
524
|
end
|
@@ -1231,6 +1232,7 @@ module Aws::IoTSiteWise
|
|
1231
1232
|
attr_accessor last_update_date: ::Time
|
1232
1233
|
attr_accessor warm_tier: ("ENABLED" | "DISABLED")
|
1233
1234
|
attr_accessor warm_tier_retention_period: Types::WarmTierRetentionPeriod
|
1235
|
+
attr_accessor disallow_ingest_null_na_n: bool
|
1234
1236
|
SENSITIVE: []
|
1235
1237
|
end
|
1236
1238
|
|
@@ -1939,6 +1941,11 @@ module Aws::IoTSiteWise
|
|
1939
1941
|
SENSITIVE: []
|
1940
1942
|
end
|
1941
1943
|
|
1944
|
+
class PropertyValueNullValue
|
1945
|
+
attr_accessor value_type: ("D" | "B" | "S" | "I" | "U")
|
1946
|
+
SENSITIVE: []
|
1947
|
+
end
|
1948
|
+
|
1942
1949
|
class PutAssetPropertyValueEntry
|
1943
1950
|
attr_accessor entry_id: ::String
|
1944
1951
|
attr_accessor asset_id: ::String
|
@@ -1976,6 +1983,7 @@ module Aws::IoTSiteWise
|
|
1976
1983
|
attr_accessor retention_period: Types::RetentionPeriod
|
1977
1984
|
attr_accessor warm_tier: ("ENABLED" | "DISABLED")
|
1978
1985
|
attr_accessor warm_tier_retention_period: Types::WarmTierRetentionPeriod
|
1986
|
+
attr_accessor disallow_ingest_null_na_n: bool
|
1979
1987
|
SENSITIVE: []
|
1980
1988
|
end
|
1981
1989
|
|
@@ -1987,6 +1995,7 @@ module Aws::IoTSiteWise
|
|
1987
1995
|
attr_accessor configuration_status: Types::ConfigurationStatus
|
1988
1996
|
attr_accessor warm_tier: ("ENABLED" | "DISABLED")
|
1989
1997
|
attr_accessor warm_tier_retention_period: Types::WarmTierRetentionPeriod
|
1998
|
+
attr_accessor disallow_ingest_null_na_n: bool
|
1990
1999
|
SENSITIVE: []
|
1991
2000
|
end
|
1992
2001
|
|
@@ -2311,6 +2320,7 @@ module Aws::IoTSiteWise
|
|
2311
2320
|
attr_accessor integer_value: ::Integer
|
2312
2321
|
attr_accessor double_value: ::Float
|
2313
2322
|
attr_accessor boolean_value: bool
|
2323
|
+
attr_accessor null_value: Types::PropertyValueNullValue
|
2314
2324
|
SENSITIVE: []
|
2315
2325
|
end
|
2316
2326
|
|
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.80.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:
|
11
|
+
date: 2025-01-21 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.
|
22
|
+
version: 3.216.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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|