aws-sdk-iotsitewise 1.35.0 → 1.36.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotsitewise/client.rb +23 -10
- data/lib/aws-sdk-iotsitewise/client_api.rb +10 -0
- data/lib/aws-sdk-iotsitewise/types.rb +81 -24
- 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: 56a09a019ded1c99680322c2094dba46d7ba9f4433fb9a3378d5178196b55f8e
|
4
|
+
data.tar.gz: '09d6b35c24d701c39ccb11d2e907c2d74aebcf13192c29363fb4850e2741d522'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ddd95a3277bed53de14de33c8ba48a3535dc8ed76dd768f75c946a7d81b0037a745ee47bf313d79dcd622b248d9cdd914f33546aa9fa20a52adfc96a20a9718b
|
7
|
+
data.tar.gz: '0179e2a3ac7b7a249ff908871861cf42a687ac69440fcbc7ad0465877bd466320d1db8030439f5d2d6ca190535950ab6aa0d6158b8c13d56d25efcc26dfd3900'
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.36.0
|
@@ -1172,8 +1172,7 @@ module Aws::IoTSiteWise
|
|
1172
1172
|
# China Regions.
|
1173
1173
|
#
|
1174
1174
|
# * `IAM` – The portal uses Identity and Access Management to
|
1175
|
-
# authenticate users and manage user permissions.
|
1176
|
-
# available in the China Regions.
|
1175
|
+
# authenticate users and manage user permissions.
|
1177
1176
|
#
|
1178
1177
|
# You can't change this value after you create a portal.
|
1179
1178
|
#
|
@@ -2228,6 +2227,7 @@ module Aws::IoTSiteWise
|
|
2228
2227
|
# * {Types::DescribeStorageConfigurationResponse#storage_type #storage_type} => String
|
2229
2228
|
# * {Types::DescribeStorageConfigurationResponse#multi_layer_storage #multi_layer_storage} => Types::MultiLayerStorage
|
2230
2229
|
# * {Types::DescribeStorageConfigurationResponse#disassociated_data_storage #disassociated_data_storage} => String
|
2230
|
+
# * {Types::DescribeStorageConfigurationResponse#retention_period #retention_period} => Types::RetentionPeriod
|
2231
2231
|
# * {Types::DescribeStorageConfigurationResponse#configuration_status #configuration_status} => Types::ConfigurationStatus
|
2232
2232
|
# * {Types::DescribeStorageConfigurationResponse#last_update_date #last_update_date} => Time
|
2233
2233
|
#
|
@@ -2237,6 +2237,8 @@ module Aws::IoTSiteWise
|
|
2237
2237
|
# resp.multi_layer_storage.customer_managed_s3_storage.s3_resource_arn #=> String
|
2238
2238
|
# resp.multi_layer_storage.customer_managed_s3_storage.role_arn #=> String
|
2239
2239
|
# resp.disassociated_data_storage #=> String, one of "ENABLED", "DISABLED"
|
2240
|
+
# resp.retention_period.number_of_days #=> Integer
|
2241
|
+
# resp.retention_period.unlimited #=> Boolean
|
2240
2242
|
# resp.configuration_status.state #=> String, one of "ACTIVE", "UPDATE_IN_PROGRESS", "UPDATE_FAILED"
|
2241
2243
|
# resp.configuration_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
|
2242
2244
|
# resp.configuration_status.error.message #=> String
|
@@ -3568,15 +3570,15 @@ module Aws::IoTSiteWise
|
|
3568
3570
|
# Configures storage settings for IoT SiteWise.
|
3569
3571
|
#
|
3570
3572
|
# @option params [required, String] :storage_type
|
3571
|
-
# The
|
3572
|
-
# can be one of the following values:
|
3573
|
+
# The storage tier that you specified for your data. The `storageType`
|
3574
|
+
# parameter can be one of the following values:
|
3573
3575
|
#
|
3574
|
-
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise
|
3575
|
-
# a service
|
3576
|
+
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise saves your data into the
|
3577
|
+
# hot tier. The hot tier is a service-managed database.
|
3576
3578
|
#
|
3577
|
-
# * `MULTI_LAYER_STORAGE` – IoT SiteWise
|
3578
|
-
#
|
3579
|
-
#
|
3579
|
+
# * `MULTI_LAYER_STORAGE` – IoT SiteWise saves your data in both the
|
3580
|
+
# cold tier and the cold tier. The cold tier is a customer-managed
|
3581
|
+
# Amazon S3 bucket.
|
3580
3582
|
#
|
3581
3583
|
# @option params [Types::MultiLayerStorage] :multi_layer_storage
|
3582
3584
|
# Identifies a storage destination. If you specified
|
@@ -3604,11 +3606,16 @@ module Aws::IoTSiteWise
|
|
3604
3606
|
#
|
3605
3607
|
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/data-streams.html
|
3606
3608
|
#
|
3609
|
+
# @option params [Types::RetentionPeriod] :retention_period
|
3610
|
+
# How many days your data is kept in the hot tier. By default, your data
|
3611
|
+
# is kept indefinitely in the hot tier.
|
3612
|
+
#
|
3607
3613
|
# @return [Types::PutStorageConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3608
3614
|
#
|
3609
3615
|
# * {Types::PutStorageConfigurationResponse#storage_type #storage_type} => String
|
3610
3616
|
# * {Types::PutStorageConfigurationResponse#multi_layer_storage #multi_layer_storage} => Types::MultiLayerStorage
|
3611
3617
|
# * {Types::PutStorageConfigurationResponse#disassociated_data_storage #disassociated_data_storage} => String
|
3618
|
+
# * {Types::PutStorageConfigurationResponse#retention_period #retention_period} => Types::RetentionPeriod
|
3612
3619
|
# * {Types::PutStorageConfigurationResponse#configuration_status #configuration_status} => Types::ConfigurationStatus
|
3613
3620
|
#
|
3614
3621
|
# @example Request syntax with placeholder values
|
@@ -3622,6 +3629,10 @@ module Aws::IoTSiteWise
|
|
3622
3629
|
# },
|
3623
3630
|
# },
|
3624
3631
|
# disassociated_data_storage: "ENABLED", # accepts ENABLED, DISABLED
|
3632
|
+
# retention_period: {
|
3633
|
+
# number_of_days: 1,
|
3634
|
+
# unlimited: false,
|
3635
|
+
# },
|
3625
3636
|
# })
|
3626
3637
|
#
|
3627
3638
|
# @example Response structure
|
@@ -3630,6 +3641,8 @@ module Aws::IoTSiteWise
|
|
3630
3641
|
# resp.multi_layer_storage.customer_managed_s3_storage.s3_resource_arn #=> String
|
3631
3642
|
# resp.multi_layer_storage.customer_managed_s3_storage.role_arn #=> String
|
3632
3643
|
# resp.disassociated_data_storage #=> String, one of "ENABLED", "DISABLED"
|
3644
|
+
# resp.retention_period.number_of_days #=> Integer
|
3645
|
+
# resp.retention_period.unlimited #=> Boolean
|
3633
3646
|
# resp.configuration_status.state #=> String, one of "ACTIVE", "UPDATE_IN_PROGRESS", "UPDATE_FAILED"
|
3634
3647
|
# resp.configuration_status.error.code #=> String, one of "VALIDATION_ERROR", "INTERNAL_FAILURE"
|
3635
3648
|
# resp.configuration_status.error.message #=> String
|
@@ -4401,7 +4414,7 @@ module Aws::IoTSiteWise
|
|
4401
4414
|
params: params,
|
4402
4415
|
config: config)
|
4403
4416
|
context[:gem_name] = 'aws-sdk-iotsitewise'
|
4404
|
-
context[:gem_version] = '1.
|
4417
|
+
context[:gem_version] = '1.36.0'
|
4405
4418
|
Seahorse::Client::Request.new(handlers, context)
|
4406
4419
|
end
|
4407
4420
|
|
@@ -251,6 +251,7 @@ module Aws::IoTSiteWise
|
|
251
251
|
MultiLayerStorage = Shapes::StructureShape.new(name: 'MultiLayerStorage')
|
252
252
|
Name = Shapes::StringShape.new(name: 'Name')
|
253
253
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
254
|
+
NumberOfDays = Shapes::IntegerShape.new(name: 'NumberOfDays')
|
254
255
|
Offset = Shapes::StringShape.new(name: 'Offset')
|
255
256
|
OffsetInNanos = Shapes::IntegerShape.new(name: 'OffsetInNanos')
|
256
257
|
Permission = Shapes::StringShape.new(name: 'Permission')
|
@@ -292,6 +293,7 @@ module Aws::IoTSiteWise
|
|
292
293
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
293
294
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
294
295
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
296
|
+
RetentionPeriod = Shapes::StructureShape.new(name: 'RetentionPeriod')
|
295
297
|
SSOApplicationId = Shapes::StringShape.new(name: 'SSOApplicationId')
|
296
298
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
297
299
|
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
@@ -317,6 +319,7 @@ module Aws::IoTSiteWise
|
|
317
319
|
TraversalType = Shapes::StringShape.new(name: 'TraversalType')
|
318
320
|
TumblingWindow = Shapes::StructureShape.new(name: 'TumblingWindow')
|
319
321
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
322
|
+
Unlimited = Shapes::BooleanShape.new(name: 'Unlimited')
|
320
323
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
321
324
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
322
325
|
UpdateAccessPolicyRequest = Shapes::StructureShape.new(name: 'UpdateAccessPolicyRequest')
|
@@ -871,6 +874,7 @@ module Aws::IoTSiteWise
|
|
871
874
|
DescribeStorageConfigurationResponse.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, required: true, location_name: "storageType"))
|
872
875
|
DescribeStorageConfigurationResponse.add_member(:multi_layer_storage, Shapes::ShapeRef.new(shape: MultiLayerStorage, location_name: "multiLayerStorage"))
|
873
876
|
DescribeStorageConfigurationResponse.add_member(:disassociated_data_storage, Shapes::ShapeRef.new(shape: DisassociatedDataStorageState, location_name: "disassociatedDataStorage"))
|
877
|
+
DescribeStorageConfigurationResponse.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
|
874
878
|
DescribeStorageConfigurationResponse.add_member(:configuration_status, Shapes::ShapeRef.new(shape: ConfigurationStatus, required: true, location_name: "configurationStatus"))
|
875
879
|
DescribeStorageConfigurationResponse.add_member(:last_update_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateDate"))
|
876
880
|
DescribeStorageConfigurationResponse.struct_class = Types::DescribeStorageConfigurationResponse
|
@@ -1267,11 +1271,13 @@ module Aws::IoTSiteWise
|
|
1267
1271
|
PutStorageConfigurationRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, required: true, location_name: "storageType"))
|
1268
1272
|
PutStorageConfigurationRequest.add_member(:multi_layer_storage, Shapes::ShapeRef.new(shape: MultiLayerStorage, location_name: "multiLayerStorage"))
|
1269
1273
|
PutStorageConfigurationRequest.add_member(:disassociated_data_storage, Shapes::ShapeRef.new(shape: DisassociatedDataStorageState, location_name: "disassociatedDataStorage"))
|
1274
|
+
PutStorageConfigurationRequest.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
|
1270
1275
|
PutStorageConfigurationRequest.struct_class = Types::PutStorageConfigurationRequest
|
1271
1276
|
|
1272
1277
|
PutStorageConfigurationResponse.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, required: true, location_name: "storageType"))
|
1273
1278
|
PutStorageConfigurationResponse.add_member(:multi_layer_storage, Shapes::ShapeRef.new(shape: MultiLayerStorage, location_name: "multiLayerStorage"))
|
1274
1279
|
PutStorageConfigurationResponse.add_member(:disassociated_data_storage, Shapes::ShapeRef.new(shape: DisassociatedDataStorageState, location_name: "disassociatedDataStorage"))
|
1280
|
+
PutStorageConfigurationResponse.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
|
1275
1281
|
PutStorageConfigurationResponse.add_member(:configuration_status, Shapes::ShapeRef.new(shape: ConfigurationStatus, required: true, location_name: "configurationStatus"))
|
1276
1282
|
PutStorageConfigurationResponse.struct_class = Types::PutStorageConfigurationResponse
|
1277
1283
|
|
@@ -1289,6 +1295,10 @@ module Aws::IoTSiteWise
|
|
1289
1295
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
1290
1296
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
1291
1297
|
|
1298
|
+
RetentionPeriod.add_member(:number_of_days, Shapes::ShapeRef.new(shape: NumberOfDays, location_name: "numberOfDays"))
|
1299
|
+
RetentionPeriod.add_member(:unlimited, Shapes::ShapeRef.new(shape: Unlimited, location_name: "unlimited"))
|
1300
|
+
RetentionPeriod.struct_class = Types::RetentionPeriod
|
1301
|
+
|
1292
1302
|
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
1293
1303
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
1294
1304
|
|
@@ -2090,8 +2090,7 @@ module Aws::IoTSiteWise
|
|
2090
2090
|
# the China Regions.
|
2091
2091
|
#
|
2092
2092
|
# * `IAM` – The portal uses Identity and Access Management to
|
2093
|
-
# authenticate users and manage user permissions.
|
2094
|
-
# only available in the China Regions.
|
2093
|
+
# authenticate users and manage user permissions.
|
2095
2094
|
#
|
2096
2095
|
# You can't change this value after you create a portal.
|
2097
2096
|
#
|
@@ -3322,15 +3321,15 @@ module Aws::IoTSiteWise
|
|
3322
3321
|
class DescribeStorageConfigurationRequest < Aws::EmptyStructure; end
|
3323
3322
|
|
3324
3323
|
# @!attribute [rw] storage_type
|
3325
|
-
# The
|
3326
|
-
#
|
3324
|
+
# The storage tier that you specified for your data. The `storageType`
|
3325
|
+
# parameter can be one of the following values:
|
3327
3326
|
#
|
3328
|
-
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise
|
3329
|
-
#
|
3327
|
+
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise saves your data into the
|
3328
|
+
# hot tier. The hot tier is a service-managed database.
|
3330
3329
|
#
|
3331
|
-
# * `MULTI_LAYER_STORAGE` – IoT SiteWise
|
3332
|
-
#
|
3333
|
-
#
|
3330
|
+
# * `MULTI_LAYER_STORAGE` – IoT SiteWise saves your data in both the
|
3331
|
+
# cold tier and the cold tier. The cold tier is a customer-managed
|
3332
|
+
# Amazon S3 bucket.
|
3334
3333
|
# @return [String]
|
3335
3334
|
#
|
3336
3335
|
# @!attribute [rw] multi_layer_storage
|
@@ -3359,6 +3358,11 @@ module Aws::IoTSiteWise
|
|
3359
3358
|
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/data-streams.html
|
3360
3359
|
# @return [String]
|
3361
3360
|
#
|
3361
|
+
# @!attribute [rw] retention_period
|
3362
|
+
# How many days your data is kept in the hot tier. By default, your
|
3363
|
+
# data is kept indefinitely in the hot tier.
|
3364
|
+
# @return [Types::RetentionPeriod]
|
3365
|
+
#
|
3362
3366
|
# @!attribute [rw] configuration_status
|
3363
3367
|
# Contains current status information for the configuration.
|
3364
3368
|
# @return [Types::ConfigurationStatus]
|
@@ -3372,6 +3376,7 @@ module Aws::IoTSiteWise
|
|
3372
3376
|
:storage_type,
|
3373
3377
|
:multi_layer_storage,
|
3374
3378
|
:disassociated_data_storage,
|
3379
|
+
:retention_period,
|
3375
3380
|
:configuration_status,
|
3376
3381
|
:last_update_date)
|
3377
3382
|
SENSITIVE = []
|
@@ -5865,18 +5870,22 @@ module Aws::IoTSiteWise
|
|
5865
5870
|
# },
|
5866
5871
|
# },
|
5867
5872
|
# disassociated_data_storage: "ENABLED", # accepts ENABLED, DISABLED
|
5873
|
+
# retention_period: {
|
5874
|
+
# number_of_days: 1,
|
5875
|
+
# unlimited: false,
|
5876
|
+
# },
|
5868
5877
|
# }
|
5869
5878
|
#
|
5870
5879
|
# @!attribute [rw] storage_type
|
5871
|
-
# The
|
5872
|
-
#
|
5880
|
+
# The storage tier that you specified for your data. The `storageType`
|
5881
|
+
# parameter can be one of the following values:
|
5873
5882
|
#
|
5874
|
-
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise
|
5875
|
-
#
|
5883
|
+
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise saves your data into the
|
5884
|
+
# hot tier. The hot tier is a service-managed database.
|
5876
5885
|
#
|
5877
|
-
# * `MULTI_LAYER_STORAGE` – IoT SiteWise
|
5878
|
-
#
|
5879
|
-
#
|
5886
|
+
# * `MULTI_LAYER_STORAGE` – IoT SiteWise saves your data in both the
|
5887
|
+
# cold tier and the cold tier. The cold tier is a customer-managed
|
5888
|
+
# Amazon S3 bucket.
|
5880
5889
|
# @return [String]
|
5881
5890
|
#
|
5882
5891
|
# @!attribute [rw] multi_layer_storage
|
@@ -5907,24 +5916,30 @@ module Aws::IoTSiteWise
|
|
5907
5916
|
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/data-streams.html
|
5908
5917
|
# @return [String]
|
5909
5918
|
#
|
5919
|
+
# @!attribute [rw] retention_period
|
5920
|
+
# How many days your data is kept in the hot tier. By default, your
|
5921
|
+
# data is kept indefinitely in the hot tier.
|
5922
|
+
# @return [Types::RetentionPeriod]
|
5923
|
+
#
|
5910
5924
|
class PutStorageConfigurationRequest < Struct.new(
|
5911
5925
|
:storage_type,
|
5912
5926
|
:multi_layer_storage,
|
5913
|
-
:disassociated_data_storage
|
5927
|
+
:disassociated_data_storage,
|
5928
|
+
:retention_period)
|
5914
5929
|
SENSITIVE = []
|
5915
5930
|
include Aws::Structure
|
5916
5931
|
end
|
5917
5932
|
|
5918
5933
|
# @!attribute [rw] storage_type
|
5919
|
-
# The
|
5920
|
-
#
|
5934
|
+
# The storage tier that you specified for your data. The `storageType`
|
5935
|
+
# parameter can be one of the following values:
|
5921
5936
|
#
|
5922
|
-
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise
|
5923
|
-
#
|
5937
|
+
# * `SITEWISE_DEFAULT_STORAGE` – IoT SiteWise saves your data into the
|
5938
|
+
# hot tier. The hot tier is a service-managed database.
|
5924
5939
|
#
|
5925
|
-
# * `MULTI_LAYER_STORAGE` – IoT SiteWise
|
5926
|
-
#
|
5927
|
-
#
|
5940
|
+
# * `MULTI_LAYER_STORAGE` – IoT SiteWise saves your data in both the
|
5941
|
+
# cold tier and the cold tier. The cold tier is a customer-managed
|
5942
|
+
# Amazon S3 bucket.
|
5928
5943
|
# @return [String]
|
5929
5944
|
#
|
5930
5945
|
# @!attribute [rw] multi_layer_storage
|
@@ -5953,6 +5968,11 @@ module Aws::IoTSiteWise
|
|
5953
5968
|
# [1]: https://docs.aws.amazon.com/iot-sitewise/latest/userguide/data-streams.html
|
5954
5969
|
# @return [String]
|
5955
5970
|
#
|
5971
|
+
# @!attribute [rw] retention_period
|
5972
|
+
# How many days your data is kept in the hot tier. By default, your
|
5973
|
+
# data is kept indefinitely in the hot tier.
|
5974
|
+
# @return [Types::RetentionPeriod]
|
5975
|
+
#
|
5956
5976
|
# @!attribute [rw] configuration_status
|
5957
5977
|
# Contains current status information for the configuration.
|
5958
5978
|
# @return [Types::ConfigurationStatus]
|
@@ -5961,6 +5981,7 @@ module Aws::IoTSiteWise
|
|
5961
5981
|
:storage_type,
|
5962
5982
|
:multi_layer_storage,
|
5963
5983
|
:disassociated_data_storage,
|
5984
|
+
:retention_period,
|
5964
5985
|
:configuration_status)
|
5965
5986
|
SENSITIVE = []
|
5966
5987
|
include Aws::Structure
|
@@ -6027,6 +6048,42 @@ module Aws::IoTSiteWise
|
|
6027
6048
|
include Aws::Structure
|
6028
6049
|
end
|
6029
6050
|
|
6051
|
+
# How many days your data is kept in the hot tier. By default, your data
|
6052
|
+
# is kept indefinitely in the hot tier.
|
6053
|
+
#
|
6054
|
+
# @note When making an API call, you may pass RetentionPeriod
|
6055
|
+
# data as a hash:
|
6056
|
+
#
|
6057
|
+
# {
|
6058
|
+
# number_of_days: 1,
|
6059
|
+
# unlimited: false,
|
6060
|
+
# }
|
6061
|
+
#
|
6062
|
+
# @!attribute [rw] number_of_days
|
6063
|
+
# The number of days that your data is kept.
|
6064
|
+
#
|
6065
|
+
# <note markdown="1"> If you specified a value for this parameter, the `unlimited`
|
6066
|
+
# parameter must be `false`.
|
6067
|
+
#
|
6068
|
+
# </note>
|
6069
|
+
# @return [Integer]
|
6070
|
+
#
|
6071
|
+
# @!attribute [rw] unlimited
|
6072
|
+
# If true, your data is kept indefinitely.
|
6073
|
+
#
|
6074
|
+
# <note markdown="1"> If configured to `true`, you must not specify a value for the
|
6075
|
+
# `numberOfDays` parameter.
|
6076
|
+
#
|
6077
|
+
# </note>
|
6078
|
+
# @return [Boolean]
|
6079
|
+
#
|
6080
|
+
class RetentionPeriod < Struct.new(
|
6081
|
+
:number_of_days,
|
6082
|
+
:unlimited)
|
6083
|
+
SENSITIVE = []
|
6084
|
+
include Aws::Structure
|
6085
|
+
end
|
6086
|
+
|
6030
6087
|
# The requested service is unavailable.
|
6031
6088
|
#
|
6032
6089
|
# @!attribute [rw] message
|
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.36.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-
|
11
|
+
date: 2021-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|