aws-sdk-iotanalytics 1.38.0 → 1.39.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-iotanalytics.rb +1 -1
- data/lib/aws-sdk-iotanalytics/client.rb +32 -6
- data/lib/aws-sdk-iotanalytics/client_api.rb +26 -0
- data/lib/aws-sdk-iotanalytics/types.rb +140 -4
- 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: e9ceb834f81b418ecc02439e01af293f64d52e700ff5ab95a9b5337f80d48114
|
4
|
+
data.tar.gz: 8f6a3152eb3f0c39c0f762a33632627165b7a8e64baf42f33118f5254a9aadd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e0ac1b8922bebe82fb8503fc08ab35e518ccc1ba00c5adabf1a5fd5fd65a04d4501eed0c2d6d3398525aef884a363d0babce4d92b2daa5969002d7a6166af26
|
7
|
+
data.tar.gz: ddb2eb466b27b56e199ded3b9827d1a7486b42811b4054ef461c5228573b8fb0d9339452ede79d54393e9f8d574a82da1cab845eedd41e0fbbe31a0f6a632421
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
data/lib/aws-sdk-iotanalytics.rb
CHANGED
@@ -691,7 +691,9 @@ module Aws::IoTAnalytics
|
|
691
691
|
req.send_request(options)
|
692
692
|
end
|
693
693
|
|
694
|
-
# Creates a data store, which is a repository for messages.
|
694
|
+
# Creates a data store, which is a repository for messages. Only data
|
695
|
+
# stores that are used to save pipeline data can be configured with
|
696
|
+
# `ParquetConfiguration`.
|
695
697
|
#
|
696
698
|
# @option params [required, String] :datastore_name
|
697
699
|
# The name of the data store.
|
@@ -721,6 +723,9 @@ module Aws::IoTAnalytics
|
|
721
723
|
#
|
722
724
|
# [1]: https://parquet.apache.org/
|
723
725
|
#
|
726
|
+
# @option params [Types::DatastorePartitions] :datastore_partitions
|
727
|
+
# Contains information about the partitions in a data store.
|
728
|
+
#
|
724
729
|
# @return [Types::CreateDatastoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
725
730
|
#
|
726
731
|
# * {Types::CreateDatastoreResponse#datastore_name #datastore_name} => String
|
@@ -764,6 +769,19 @@ module Aws::IoTAnalytics
|
|
764
769
|
# },
|
765
770
|
# },
|
766
771
|
# },
|
772
|
+
# datastore_partitions: {
|
773
|
+
# partitions: [
|
774
|
+
# {
|
775
|
+
# attribute_partition: {
|
776
|
+
# attribute_name: "PartitionAttributeName", # required
|
777
|
+
# },
|
778
|
+
# timestamp_partition: {
|
779
|
+
# attribute_name: "PartitionAttributeName", # required
|
780
|
+
# timestamp_format: "TimestampFormat",
|
781
|
+
# },
|
782
|
+
# },
|
783
|
+
# ],
|
784
|
+
# },
|
767
785
|
# })
|
768
786
|
#
|
769
787
|
# @example Response structure
|
@@ -1154,6 +1172,10 @@ module Aws::IoTAnalytics
|
|
1154
1172
|
# resp.datastore.file_format_configuration.parquet_configuration.schema_definition.columns #=> Array
|
1155
1173
|
# resp.datastore.file_format_configuration.parquet_configuration.schema_definition.columns[0].name #=> String
|
1156
1174
|
# resp.datastore.file_format_configuration.parquet_configuration.schema_definition.columns[0].type #=> String
|
1175
|
+
# resp.datastore.datastore_partitions.partitions #=> Array
|
1176
|
+
# resp.datastore.datastore_partitions.partitions[0].attribute_partition.attribute_name #=> String
|
1177
|
+
# resp.datastore.datastore_partitions.partitions[0].timestamp_partition.attribute_name #=> String
|
1178
|
+
# resp.datastore.datastore_partitions.partitions[0].timestamp_partition.timestamp_format #=> String
|
1157
1179
|
# resp.statistics.size.estimated_size_in_bytes #=> Float
|
1158
1180
|
# resp.statistics.size.estimated_on #=> Time
|
1159
1181
|
#
|
@@ -1269,7 +1291,7 @@ module Aws::IoTAnalytics
|
|
1269
1291
|
#
|
1270
1292
|
# @return [Types::GetDatasetContentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1271
1293
|
#
|
1272
|
-
# * {Types::GetDatasetContentResponse#entries #entries} => Array<Types::DatasetEntry>
|
1294
|
+
# * {Types::GetDatasetContentResponse#entries #data.entries} => Array<Types::DatasetEntry> (This method conflicts with a method on Response, call it through the data member)
|
1273
1295
|
# * {Types::GetDatasetContentResponse#timestamp #timestamp} => Time
|
1274
1296
|
# * {Types::GetDatasetContentResponse#status #status} => Types::DatasetContentStatus
|
1275
1297
|
#
|
@@ -1282,9 +1304,9 @@ module Aws::IoTAnalytics
|
|
1282
1304
|
#
|
1283
1305
|
# @example Response structure
|
1284
1306
|
#
|
1285
|
-
# resp.entries #=> Array
|
1286
|
-
# resp.entries[0].entry_name #=> String
|
1287
|
-
# resp.entries[0].data_uri #=> String
|
1307
|
+
# resp.data.entries #=> Array
|
1308
|
+
# resp.data.entries[0].entry_name #=> String
|
1309
|
+
# resp.data.entries[0].data_uri #=> String
|
1288
1310
|
# resp.timestamp #=> Time
|
1289
1311
|
# resp.status.state #=> String, one of "CREATING", "SUCCEEDED", "FAILED"
|
1290
1312
|
# resp.status.reason #=> String
|
@@ -1478,6 +1500,10 @@ module Aws::IoTAnalytics
|
|
1478
1500
|
# resp.datastore_summaries[0].last_update_time #=> Time
|
1479
1501
|
# resp.datastore_summaries[0].last_message_arrival_time #=> Time
|
1480
1502
|
# resp.datastore_summaries[0].file_format_type #=> String, one of "JSON", "PARQUET"
|
1503
|
+
# resp.datastore_summaries[0].datastore_partitions.partitions #=> Array
|
1504
|
+
# resp.datastore_summaries[0].datastore_partitions.partitions[0].attribute_partition.attribute_name #=> String
|
1505
|
+
# resp.datastore_summaries[0].datastore_partitions.partitions[0].timestamp_partition.attribute_name #=> String
|
1506
|
+
# resp.datastore_summaries[0].datastore_partitions.partitions[0].timestamp_partition.timestamp_format #=> String
|
1481
1507
|
# resp.next_token #=> String
|
1482
1508
|
#
|
1483
1509
|
# @overload list_datastores(params = {})
|
@@ -2194,7 +2220,7 @@ module Aws::IoTAnalytics
|
|
2194
2220
|
params: params,
|
2195
2221
|
config: config)
|
2196
2222
|
context[:gem_name] = 'aws-sdk-iotanalytics'
|
2197
|
-
context[:gem_version] = '1.
|
2223
|
+
context[:gem_version] = '1.39.0'
|
2198
2224
|
Seahorse::Client::Request.new(handlers, context)
|
2199
2225
|
end
|
2200
2226
|
|
@@ -87,6 +87,8 @@ module Aws::IoTAnalytics
|
|
87
87
|
DatastoreActivity = Shapes::StructureShape.new(name: 'DatastoreActivity')
|
88
88
|
DatastoreArn = Shapes::StringShape.new(name: 'DatastoreArn')
|
89
89
|
DatastoreName = Shapes::StringShape.new(name: 'DatastoreName')
|
90
|
+
DatastorePartition = Shapes::StructureShape.new(name: 'DatastorePartition')
|
91
|
+
DatastorePartitions = Shapes::StructureShape.new(name: 'DatastorePartitions')
|
90
92
|
DatastoreStatistics = Shapes::StructureShape.new(name: 'DatastoreStatistics')
|
91
93
|
DatastoreStatus = Shapes::StringShape.new(name: 'DatastoreStatus')
|
92
94
|
DatastoreStorage = Shapes::StructureShape.new(name: 'DatastoreStorage')
|
@@ -172,6 +174,9 @@ module Aws::IoTAnalytics
|
|
172
174
|
OutputFileName = Shapes::StringShape.new(name: 'OutputFileName')
|
173
175
|
OutputFileUriValue = Shapes::StructureShape.new(name: 'OutputFileUriValue')
|
174
176
|
ParquetConfiguration = Shapes::StructureShape.new(name: 'ParquetConfiguration')
|
177
|
+
Partition = Shapes::StructureShape.new(name: 'Partition')
|
178
|
+
PartitionAttributeName = Shapes::StringShape.new(name: 'PartitionAttributeName')
|
179
|
+
Partitions = Shapes::ListShape.new(name: 'Partitions')
|
175
180
|
Pipeline = Shapes::StructureShape.new(name: 'Pipeline')
|
176
181
|
PipelineActivities = Shapes::ListShape.new(name: 'PipelineActivities')
|
177
182
|
PipelineActivity = Shapes::StructureShape.new(name: 'PipelineActivity')
|
@@ -231,6 +236,8 @@ module Aws::IoTAnalytics
|
|
231
236
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
232
237
|
TimeExpression = Shapes::StringShape.new(name: 'TimeExpression')
|
233
238
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
239
|
+
TimestampFormat = Shapes::StringShape.new(name: 'TimestampFormat')
|
240
|
+
TimestampPartition = Shapes::StructureShape.new(name: 'TimestampPartition')
|
234
241
|
TriggeringDataset = Shapes::StructureShape.new(name: 'TriggeringDataset')
|
235
242
|
UnlimitedRetentionPeriod = Shapes::BooleanShape.new(name: 'UnlimitedRetentionPeriod')
|
236
243
|
UnlimitedVersioning = Shapes::BooleanShape.new(name: 'UnlimitedVersioning')
|
@@ -368,6 +375,7 @@ module Aws::IoTAnalytics
|
|
368
375
|
CreateDatastoreRequest.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
|
369
376
|
CreateDatastoreRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
370
377
|
CreateDatastoreRequest.add_member(:file_format_configuration, Shapes::ShapeRef.new(shape: FileFormatConfiguration, location_name: "fileFormatConfiguration"))
|
378
|
+
CreateDatastoreRequest.add_member(:datastore_partitions, Shapes::ShapeRef.new(shape: DatastorePartitions, location_name: "datastorePartitions"))
|
371
379
|
CreateDatastoreRequest.struct_class = Types::CreateDatastoreRequest
|
372
380
|
|
373
381
|
CreateDatastoreResponse.add_member(:datastore_name, Shapes::ShapeRef.new(shape: DatastoreName, location_name: "datastoreName"))
|
@@ -487,12 +495,20 @@ module Aws::IoTAnalytics
|
|
487
495
|
Datastore.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
|
488
496
|
Datastore.add_member(:last_message_arrival_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastMessageArrivalTime"))
|
489
497
|
Datastore.add_member(:file_format_configuration, Shapes::ShapeRef.new(shape: FileFormatConfiguration, location_name: "fileFormatConfiguration"))
|
498
|
+
Datastore.add_member(:datastore_partitions, Shapes::ShapeRef.new(shape: DatastorePartitions, location_name: "datastorePartitions"))
|
490
499
|
Datastore.struct_class = Types::Datastore
|
491
500
|
|
492
501
|
DatastoreActivity.add_member(:name, Shapes::ShapeRef.new(shape: ActivityName, required: true, location_name: "name"))
|
493
502
|
DatastoreActivity.add_member(:datastore_name, Shapes::ShapeRef.new(shape: DatastoreName, required: true, location_name: "datastoreName"))
|
494
503
|
DatastoreActivity.struct_class = Types::DatastoreActivity
|
495
504
|
|
505
|
+
DatastorePartition.add_member(:attribute_partition, Shapes::ShapeRef.new(shape: Partition, location_name: "attributePartition"))
|
506
|
+
DatastorePartition.add_member(:timestamp_partition, Shapes::ShapeRef.new(shape: TimestampPartition, location_name: "timestampPartition"))
|
507
|
+
DatastorePartition.struct_class = Types::DatastorePartition
|
508
|
+
|
509
|
+
DatastorePartitions.add_member(:partitions, Shapes::ShapeRef.new(shape: Partitions, location_name: "partitions"))
|
510
|
+
DatastorePartitions.struct_class = Types::DatastorePartitions
|
511
|
+
|
496
512
|
DatastoreStatistics.add_member(:size, Shapes::ShapeRef.new(shape: EstimatedResourceSize, location_name: "size"))
|
497
513
|
DatastoreStatistics.struct_class = Types::DatastoreStatistics
|
498
514
|
|
@@ -513,6 +529,7 @@ module Aws::IoTAnalytics
|
|
513
529
|
DatastoreSummary.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
|
514
530
|
DatastoreSummary.add_member(:last_message_arrival_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastMessageArrivalTime"))
|
515
531
|
DatastoreSummary.add_member(:file_format_type, Shapes::ShapeRef.new(shape: FileFormatType, location_name: "fileFormatType"))
|
532
|
+
DatastoreSummary.add_member(:datastore_partitions, Shapes::ShapeRef.new(shape: DatastorePartitions, location_name: "datastorePartitions"))
|
516
533
|
DatastoreSummary.struct_class = Types::DatastoreSummary
|
517
534
|
|
518
535
|
DeleteChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: ChannelName, required: true, location: "uri", location_name: "channelName"))
|
@@ -715,6 +732,11 @@ module Aws::IoTAnalytics
|
|
715
732
|
ParquetConfiguration.add_member(:schema_definition, Shapes::ShapeRef.new(shape: SchemaDefinition, location_name: "schemaDefinition"))
|
716
733
|
ParquetConfiguration.struct_class = Types::ParquetConfiguration
|
717
734
|
|
735
|
+
Partition.add_member(:attribute_name, Shapes::ShapeRef.new(shape: PartitionAttributeName, required: true, location_name: "attributeName"))
|
736
|
+
Partition.struct_class = Types::Partition
|
737
|
+
|
738
|
+
Partitions.member = Shapes::ShapeRef.new(shape: DatastorePartition)
|
739
|
+
|
718
740
|
Pipeline.add_member(:name, Shapes::ShapeRef.new(shape: PipelineName, location_name: "name"))
|
719
741
|
Pipeline.add_member(:arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "arn"))
|
720
742
|
Pipeline.add_member(:activities, Shapes::ShapeRef.new(shape: PipelineActivities, location_name: "activities"))
|
@@ -858,6 +880,10 @@ module Aws::IoTAnalytics
|
|
858
880
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "message"))
|
859
881
|
ThrottlingException.struct_class = Types::ThrottlingException
|
860
882
|
|
883
|
+
TimestampPartition.add_member(:attribute_name, Shapes::ShapeRef.new(shape: PartitionAttributeName, required: true, location_name: "attributeName"))
|
884
|
+
TimestampPartition.add_member(:timestamp_format, Shapes::ShapeRef.new(shape: TimestampFormat, location_name: "timestampFormat"))
|
885
|
+
TimestampPartition.struct_class = Types::TimestampPartition
|
886
|
+
|
861
887
|
TriggeringDataset.add_member(:name, Shapes::ShapeRef.new(shape: DatasetName, required: true, location_name: "name"))
|
862
888
|
TriggeringDataset.struct_class = Types::TriggeringDataset
|
863
889
|
|
@@ -263,6 +263,11 @@ module Aws::IoTAnalytics
|
|
263
263
|
# @!attribute [rw] s3_paths
|
264
264
|
# Specifies one or more keys that identify the Amazon Simple Storage
|
265
265
|
# Service (Amazon S3) objects that save your channel messages.
|
266
|
+
#
|
267
|
+
# You must use the full path for the key.
|
268
|
+
#
|
269
|
+
# Example path: `channel/mychannel/__dt=2020-02-29
|
270
|
+
# 00:00:00/1582940490000_1582940520000_123456789012_mychannel_0_2118.0.json.gz`
|
266
271
|
# @return [Array<String>]
|
267
272
|
#
|
268
273
|
class ChannelMessages < Struct.new(
|
@@ -819,6 +824,19 @@ module Aws::IoTAnalytics
|
|
819
824
|
# },
|
820
825
|
# },
|
821
826
|
# },
|
827
|
+
# datastore_partitions: {
|
828
|
+
# partitions: [
|
829
|
+
# {
|
830
|
+
# attribute_partition: {
|
831
|
+
# attribute_name: "PartitionAttributeName", # required
|
832
|
+
# },
|
833
|
+
# timestamp_partition: {
|
834
|
+
# attribute_name: "PartitionAttributeName", # required
|
835
|
+
# timestamp_format: "TimestampFormat",
|
836
|
+
# },
|
837
|
+
# },
|
838
|
+
# ],
|
839
|
+
# },
|
822
840
|
# }
|
823
841
|
#
|
824
842
|
# @!attribute [rw] datastore_name
|
@@ -854,12 +872,17 @@ module Aws::IoTAnalytics
|
|
854
872
|
# [1]: https://parquet.apache.org/
|
855
873
|
# @return [Types::FileFormatConfiguration]
|
856
874
|
#
|
875
|
+
# @!attribute [rw] datastore_partitions
|
876
|
+
# Contains information about the partitions in a data store.
|
877
|
+
# @return [Types::DatastorePartitions]
|
878
|
+
#
|
857
879
|
class CreateDatastoreRequest < Struct.new(
|
858
880
|
:datastore_name,
|
859
881
|
:datastore_storage,
|
860
882
|
:retention_period,
|
861
883
|
:tags,
|
862
|
-
:file_format_configuration
|
884
|
+
:file_format_configuration,
|
885
|
+
:datastore_partitions)
|
863
886
|
SENSITIVE = []
|
864
887
|
include Aws::Structure
|
865
888
|
end
|
@@ -1609,6 +1632,10 @@ module Aws::IoTAnalytics
|
|
1609
1632
|
# [1]: https://parquet.apache.org/
|
1610
1633
|
# @return [Types::FileFormatConfiguration]
|
1611
1634
|
#
|
1635
|
+
# @!attribute [rw] datastore_partitions
|
1636
|
+
# Contains information about the partitions in a data store.
|
1637
|
+
# @return [Types::DatastorePartitions]
|
1638
|
+
#
|
1612
1639
|
class Datastore < Struct.new(
|
1613
1640
|
:name,
|
1614
1641
|
:storage,
|
@@ -1618,7 +1645,8 @@ module Aws::IoTAnalytics
|
|
1618
1645
|
:creation_time,
|
1619
1646
|
:last_update_time,
|
1620
1647
|
:last_message_arrival_time,
|
1621
|
-
:file_format_configuration
|
1648
|
+
:file_format_configuration,
|
1649
|
+
:datastore_partitions)
|
1622
1650
|
SENSITIVE = []
|
1623
1651
|
include Aws::Structure
|
1624
1652
|
end
|
@@ -1649,6 +1677,65 @@ module Aws::IoTAnalytics
|
|
1649
1677
|
include Aws::Structure
|
1650
1678
|
end
|
1651
1679
|
|
1680
|
+
# A single partition in a data store.
|
1681
|
+
#
|
1682
|
+
# @note When making an API call, you may pass DatastorePartition
|
1683
|
+
# data as a hash:
|
1684
|
+
#
|
1685
|
+
# {
|
1686
|
+
# attribute_partition: {
|
1687
|
+
# attribute_name: "PartitionAttributeName", # required
|
1688
|
+
# },
|
1689
|
+
# timestamp_partition: {
|
1690
|
+
# attribute_name: "PartitionAttributeName", # required
|
1691
|
+
# timestamp_format: "TimestampFormat",
|
1692
|
+
# },
|
1693
|
+
# }
|
1694
|
+
#
|
1695
|
+
# @!attribute [rw] attribute_partition
|
1696
|
+
# A partition defined by an `attributeName`.
|
1697
|
+
# @return [Types::Partition]
|
1698
|
+
#
|
1699
|
+
# @!attribute [rw] timestamp_partition
|
1700
|
+
# A partition defined by an `attributeName` and a timestamp format.
|
1701
|
+
# @return [Types::TimestampPartition]
|
1702
|
+
#
|
1703
|
+
class DatastorePartition < Struct.new(
|
1704
|
+
:attribute_partition,
|
1705
|
+
:timestamp_partition)
|
1706
|
+
SENSITIVE = []
|
1707
|
+
include Aws::Structure
|
1708
|
+
end
|
1709
|
+
|
1710
|
+
# Contains information about partitions in a data store.
|
1711
|
+
#
|
1712
|
+
# @note When making an API call, you may pass DatastorePartitions
|
1713
|
+
# data as a hash:
|
1714
|
+
#
|
1715
|
+
# {
|
1716
|
+
# partitions: [
|
1717
|
+
# {
|
1718
|
+
# attribute_partition: {
|
1719
|
+
# attribute_name: "PartitionAttributeName", # required
|
1720
|
+
# },
|
1721
|
+
# timestamp_partition: {
|
1722
|
+
# attribute_name: "PartitionAttributeName", # required
|
1723
|
+
# timestamp_format: "TimestampFormat",
|
1724
|
+
# },
|
1725
|
+
# },
|
1726
|
+
# ],
|
1727
|
+
# }
|
1728
|
+
#
|
1729
|
+
# @!attribute [rw] partitions
|
1730
|
+
# A list of partitions in a data store.
|
1731
|
+
# @return [Array<Types::DatastorePartition>]
|
1732
|
+
#
|
1733
|
+
class DatastorePartitions < Struct.new(
|
1734
|
+
:partitions)
|
1735
|
+
SENSITIVE = []
|
1736
|
+
include Aws::Structure
|
1737
|
+
end
|
1738
|
+
|
1652
1739
|
# Statistical information about the data store.
|
1653
1740
|
#
|
1654
1741
|
# @!attribute [rw] size
|
@@ -1755,6 +1842,10 @@ module Aws::IoTAnalytics
|
|
1755
1842
|
# The file format of the data in the data store.
|
1756
1843
|
# @return [String]
|
1757
1844
|
#
|
1845
|
+
# @!attribute [rw] datastore_partitions
|
1846
|
+
# Contains information about the partitions in a data store.
|
1847
|
+
# @return [Types::DatastorePartitions]
|
1848
|
+
#
|
1758
1849
|
class DatastoreSummary < Struct.new(
|
1759
1850
|
:datastore_name,
|
1760
1851
|
:datastore_storage,
|
@@ -1762,7 +1853,8 @@ module Aws::IoTAnalytics
|
|
1762
1853
|
:creation_time,
|
1763
1854
|
:last_update_time,
|
1764
1855
|
:last_message_arrival_time,
|
1765
|
-
:file_format_type
|
1856
|
+
:file_format_type,
|
1857
|
+
:datastore_partitions)
|
1766
1858
|
SENSITIVE = []
|
1767
1859
|
include Aws::Structure
|
1768
1860
|
end
|
@@ -2910,6 +3002,25 @@ module Aws::IoTAnalytics
|
|
2910
3002
|
include Aws::Structure
|
2911
3003
|
end
|
2912
3004
|
|
3005
|
+
# A single partition.
|
3006
|
+
#
|
3007
|
+
# @note When making an API call, you may pass Partition
|
3008
|
+
# data as a hash:
|
3009
|
+
#
|
3010
|
+
# {
|
3011
|
+
# attribute_name: "PartitionAttributeName", # required
|
3012
|
+
# }
|
3013
|
+
#
|
3014
|
+
# @!attribute [rw] attribute_name
|
3015
|
+
# The attribute name of the partition.
|
3016
|
+
# @return [String]
|
3017
|
+
#
|
3018
|
+
class Partition < Struct.new(
|
3019
|
+
:attribute_name)
|
3020
|
+
SENSITIVE = []
|
3021
|
+
include Aws::Structure
|
3022
|
+
end
|
3023
|
+
|
2913
3024
|
# Contains information about a pipeline.
|
2914
3025
|
#
|
2915
3026
|
# @!attribute [rw] name
|
@@ -3544,7 +3655,7 @@ module Aws::IoTAnalytics
|
|
3544
3655
|
# Specifies one or more columns that store your data.
|
3545
3656
|
#
|
3546
3657
|
# Each schema can have up to 100 columns. Each column can have up to
|
3547
|
-
# 100 nested types
|
3658
|
+
# 100 nested types.
|
3548
3659
|
# @return [Array<Types::Column>]
|
3549
3660
|
#
|
3550
3661
|
class SchemaDefinition < Struct.new(
|
@@ -3777,6 +3888,31 @@ module Aws::IoTAnalytics
|
|
3777
3888
|
include Aws::Structure
|
3778
3889
|
end
|
3779
3890
|
|
3891
|
+
# A partition defined by a timestamp.
|
3892
|
+
#
|
3893
|
+
# @note When making an API call, you may pass TimestampPartition
|
3894
|
+
# data as a hash:
|
3895
|
+
#
|
3896
|
+
# {
|
3897
|
+
# attribute_name: "PartitionAttributeName", # required
|
3898
|
+
# timestamp_format: "TimestampFormat",
|
3899
|
+
# }
|
3900
|
+
#
|
3901
|
+
# @!attribute [rw] attribute_name
|
3902
|
+
# The attribute name of the partition defined by a timestamp.
|
3903
|
+
# @return [String]
|
3904
|
+
#
|
3905
|
+
# @!attribute [rw] timestamp_format
|
3906
|
+
# The timestamp format of a partition defined by a timestamp.
|
3907
|
+
# @return [String]
|
3908
|
+
#
|
3909
|
+
class TimestampPartition < Struct.new(
|
3910
|
+
:attribute_name,
|
3911
|
+
:timestamp_format)
|
3912
|
+
SENSITIVE = []
|
3913
|
+
include Aws::Structure
|
3914
|
+
end
|
3915
|
+
|
3780
3916
|
# Information about the dataset whose content generation triggers the
|
3781
3917
|
# new dataset content generation.
|
3782
3918
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iotanalytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.39.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-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
66
66
|
licenses:
|
67
67
|
- Apache-2.0
|
68
68
|
metadata:
|
69
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotanalytics
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotanalytics/CHANGELOG.md
|
71
71
|
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
87
|
-
rubygems_version: 2.7.6.2
|
86
|
+
rubygems_version: 3.1.6
|
88
87
|
signing_key:
|
89
88
|
specification_version: 4
|
90
89
|
summary: AWS SDK for Ruby - AWS IoT Analytics
|