aws-sdk-iotanalytics 1.11.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93ffc0e3c4a474d9433ccf1084d59525569ed658
4
- data.tar.gz: aa0fac8a27d6826c1b24f7120acabde703ddfa11
3
+ metadata.gz: 04f664e0d6b2fa5b6bf2d1e8892645dbb2f3a1ff
4
+ data.tar.gz: 72d7c5f4c33ca19e1637614b4a8923a34661874c
5
5
  SHA512:
6
- metadata.gz: a05a63e3d17fb3b0c066b88f040834baf26609bb1bf8a1226b2e35677d5dd770240afadfc2a92705630a427bd80421f7e3a29b6ae80e93e7f22c4c96e862b480
7
- data.tar.gz: c86a545fcecac719624b02b5d138e3ed1f09eefbcfbd42a23079b8494e77678a4e1237e0f23b0638523afb3b52394d67e2d61208f75ee167b986cddc8a6cc4cb
6
+ metadata.gz: cd1e4b40712ec35e11c26beb4e99f33bc3c54dc73c321aef8f79c7500bd35c8ac092d9364ece856a9841ac69972f6f17db65e15a788f760117d0259a5261aa95
7
+ data.tar.gz: 4570d2431c9194f85bf16a96e4abf5b0d761be54f9863d23bfde2f7b204f751d7159d2af08b4fd9ae3739fa6c2a74de48a35ee7c48a44be1ab60fec38540f457
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-iotanalytics/customizations'
42
42
  # @service
43
43
  module Aws::IoTAnalytics
44
44
 
45
- GEM_VERSION = '1.11.0'
45
+ GEM_VERSION = '1.12.0'
46
46
 
47
47
  end
@@ -214,6 +214,28 @@ module Aws::IoTAnalytics
214
214
  # The list of messages to be sent. Each message has format: '\\\{
215
215
  # "messageId": "string", "payload": "string"\\}'.
216
216
  #
217
+ # Note that the field names of message payloads (data) that you send to
218
+ # AWS IoT Analytics:
219
+ #
220
+ # * Must contain only alphanumeric characters and undescores (\_); no
221
+ # other special characters are allowed.
222
+ #
223
+ # * Must begin with an alphabetic character or single underscore (\_).
224
+ #
225
+ # * Cannot contain hyphens (-).
226
+ #
227
+ # * In regular expression terms:
228
+ # "^\[A-Za-z\_\](\[A-Za-z0-9\]*\|\[A-Za-z0-9\]\[A-Za-z0-9\_\]*)$".
229
+ #
230
+ # * Cannot be greater than 255 characters.
231
+ #
232
+ # * Are case-insensitive. (Fields named "foo" and "FOO" in the same
233
+ # payload are considered duplicates.)
234
+ #
235
+ # For example, \\\{"temp\_01": 29\\} or \\\{"\_temp\_01": 29\\} are
236
+ # valid, but \\\{"temp-01": 29\\}, \\\{"01\_temp": 29\\} or
237
+ # \\\{"\_\_temp\_01": 29\\} are invalid in message payloads.
238
+ #
217
239
  # @return [Types::BatchPutMessageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
218
240
  #
219
241
  # * {Types::BatchPutMessageResponse#batch_put_message_error_entries #batch_put_message_error_entries} => Array<Types::BatchPutMessageErrorEntry>
@@ -338,6 +360,8 @@ module Aws::IoTAnalytics
338
360
  # **DataSetTrigger** objects.
339
361
  #
340
362
  # @option params [Array<Types::DatasetContentDeliveryRule>] :content_delivery_rules
363
+ # When data set contents are created they are delivered to destinations
364
+ # specified here.
341
365
  #
342
366
  # @option params [Types::RetentionPeriod] :retention_period
343
367
  # \[Optional\] How long, in days, message data is kept for the data set.
@@ -442,7 +466,9 @@ module Aws::IoTAnalytics
442
466
  req.send_request(options)
443
467
  end
444
468
 
445
- # Creates the content of a data set by applying a SQL action.
469
+ # Creates the content of a data set by applying a "queryAction" (a SQL
470
+ # query) or a "containerAction" (executing a containerized
471
+ # application).
446
472
  #
447
473
  # @option params [required, String] :dataset_name
448
474
  # The name of the data set.
@@ -1051,6 +1077,16 @@ module Aws::IoTAnalytics
1051
1077
  # @option params [Integer] :max_results
1052
1078
  # The maximum number of results to return in this request.
1053
1079
  #
1080
+ # @option params [Time,DateTime,Date,Integer,String] :scheduled_on_or_after
1081
+ # A filter to limit results to those data set contents whose creation is
1082
+ # scheduled on or after the given time. See the field
1083
+ # `triggers.schedule` in the CreateDataset request. (timestamp)
1084
+ #
1085
+ # @option params [Time,DateTime,Date,Integer,String] :scheduled_before
1086
+ # A filter to limit results to those data set contents whose creation is
1087
+ # scheduled before the given time. See the field `triggers.schedule` in
1088
+ # the CreateDataset request. (timestamp)
1089
+ #
1054
1090
  # @return [Types::ListDatasetContentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1055
1091
  #
1056
1092
  # * {Types::ListDatasetContentsResponse#dataset_content_summaries #dataset_content_summaries} => Array&lt;Types::DatasetContentSummary&gt;
@@ -1062,6 +1098,8 @@ module Aws::IoTAnalytics
1062
1098
  # dataset_name: "DatasetName", # required
1063
1099
  # next_token: "NextToken",
1064
1100
  # max_results: 1,
1101
+ # scheduled_on_or_after: Time.now,
1102
+ # scheduled_before: Time.now,
1065
1103
  # })
1066
1104
  #
1067
1105
  # @example Response structure
@@ -1438,7 +1476,7 @@ module Aws::IoTAnalytics
1438
1476
  # which can be used to manage a resource.
1439
1477
  #
1440
1478
  # @option params [required, String] :resource_arn
1441
- # The ARN of the resource whose tags will be modified.
1479
+ # The ARN of the resource whose tags you want to modify.
1442
1480
  #
1443
1481
  # @option params [required, Array<Types::Tag>] :tags
1444
1482
  # The new or modified tags for the resource.
@@ -1467,10 +1505,10 @@ module Aws::IoTAnalytics
1467
1505
  # Removes the given tags (metadata) from the resource.
1468
1506
  #
1469
1507
  # @option params [required, String] :resource_arn
1470
- # The ARN of the resource whose tags will be removed.
1508
+ # The ARN of the resource whose tags you want to remove.
1471
1509
  #
1472
1510
  # @option params [required, Array<String>] :tag_keys
1473
- # The keys of those tags which will be removed.
1511
+ # The keys of those tags which you want to remove.
1474
1512
  #
1475
1513
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1476
1514
  #
@@ -1528,6 +1566,8 @@ module Aws::IoTAnalytics
1528
1566
  # contain up to five **DataSetTrigger** objects.
1529
1567
  #
1530
1568
  # @option params [Array<Types::DatasetContentDeliveryRule>] :content_delivery_rules
1569
+ # When data set contents are created they are delivered to destinations
1570
+ # specified here.
1531
1571
  #
1532
1572
  # @option params [Types::RetentionPeriod] :retention_period
1533
1573
  # How long, in days, message data is kept for the data set.
@@ -1739,7 +1779,7 @@ module Aws::IoTAnalytics
1739
1779
  params: params,
1740
1780
  config: config)
1741
1781
  context[:gem_name] = 'aws-sdk-iotanalytics'
1742
- context[:gem_version] = '1.11.0'
1782
+ context[:gem_version] = '1.12.0'
1743
1783
  Seahorse::Client::Request.new(handlers, context)
1744
1784
  end
1745
1785
 
@@ -514,6 +514,8 @@ module Aws::IoTAnalytics
514
514
  ListDatasetContentsRequest.add_member(:dataset_name, Shapes::ShapeRef.new(shape: DatasetName, required: true, location: "uri", location_name: "datasetName"))
515
515
  ListDatasetContentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
516
516
  ListDatasetContentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
517
+ ListDatasetContentsRequest.add_member(:scheduled_on_or_after, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "scheduledOnOrAfter"))
518
+ ListDatasetContentsRequest.add_member(:scheduled_before, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "scheduledBefore"))
517
519
  ListDatasetContentsRequest.struct_class = Types::ListDatasetContentsRequest
518
520
 
519
521
  ListDatasetContentsResponse.add_member(:dataset_content_summaries, Shapes::ShapeRef.new(shape: DatasetContentSummaries, location_name: "datasetContentSummaries"))
@@ -89,6 +89,28 @@ module Aws::IoTAnalytics
89
89
  # @!attribute [rw] messages
90
90
  # The list of messages to be sent. Each message has format: '\\\{
91
91
  # "messageId": "string", "payload": "string"\\}'.
92
+ #
93
+ # Note that the field names of message payloads (data) that you send
94
+ # to AWS IoT Analytics:
95
+ #
96
+ # * Must contain only alphanumeric characters and undescores (\_); no
97
+ # other special characters are allowed.
98
+ #
99
+ # * Must begin with an alphabetic character or single underscore (\_).
100
+ #
101
+ # * Cannot contain hyphens (-).
102
+ #
103
+ # * In regular expression terms:
104
+ # "^\[A-Za-z\_\](\[A-Za-z0-9\]*\|\[A-Za-z0-9\]\[A-Za-z0-9\_\]*)$".
105
+ #
106
+ # * Cannot be greater than 255 characters.
107
+ #
108
+ # * Are case-insensitive. (Fields named "foo" and "FOO" in the
109
+ # same payload are considered duplicates.)
110
+ #
111
+ # For example, \\\{"temp\_01": 29\\} or \\\{"\_temp\_01": 29\\}
112
+ # are valid, but \\\{"temp-01": 29\\}, \\\{"01\_temp": 29\\} or
113
+ # \\\{"\_\_temp\_01": 29\\} are invalid in message payloads.
92
114
  # @return [Array<Types::Message>]
93
115
  #
94
116
  class BatchPutMessageRequest < Struct.new(
@@ -470,6 +492,8 @@ module Aws::IoTAnalytics
470
492
  # @return [Array<Types::DatasetTrigger>]
471
493
  #
472
494
  # @!attribute [rw] content_delivery_rules
495
+ # When data set contents are created they are delivered to
496
+ # destinations specified here.
473
497
  # @return [Array<Types::DatasetContentDeliveryRule>]
474
498
  #
475
499
  # @!attribute [rw] retention_period
@@ -702,6 +726,8 @@ module Aws::IoTAnalytics
702
726
  # @return [Array<Types::DatasetTrigger>]
703
727
  #
704
728
  # @!attribute [rw] content_delivery_rules
729
+ # When data set contents are created they are delivered to
730
+ # destinations specified here.
705
731
  # @return [Array<Types::DatasetContentDeliveryRule>]
706
732
  #
707
733
  # @!attribute [rw] status
@@ -734,8 +760,8 @@ module Aws::IoTAnalytics
734
760
  include Aws::Structure
735
761
  end
736
762
 
737
- # A "DatasetAction" object specifying the query that creates the data
738
- # set content.
763
+ # A "DatasetAction" object that specifies how data set contents are
764
+ # automatically created.
739
765
  #
740
766
  # @note When making an API call, you may pass DatasetAction
741
767
  # data as a hash:
@@ -782,8 +808,8 @@ module Aws::IoTAnalytics
782
808
  # @return [String]
783
809
  #
784
810
  # @!attribute [rw] query_action
785
- # An "SqlQueryDatasetAction" object that contains the SQL query to
786
- # modify the message.
811
+ # An "SqlQueryDatasetAction" object that uses an SQL query to
812
+ # automatically create data set contents.
787
813
  # @return [Types::SqlQueryDatasetAction]
788
814
  #
789
815
  # @!attribute [rw] container_action
@@ -816,6 +842,8 @@ module Aws::IoTAnalytics
816
842
  include Aws::Structure
817
843
  end
818
844
 
845
+ # The destination to which data set contents are delivered.
846
+ #
819
847
  # @note When making an API call, you may pass DatasetContentDeliveryDestination
820
848
  # data as a hash:
821
849
  #
@@ -827,6 +855,8 @@ module Aws::IoTAnalytics
827
855
  # }
828
856
  #
829
857
  # @!attribute [rw] iot_events_destination_configuration
858
+ # Configuration information for delivery of data set contents to AWS
859
+ # IoT Events.
830
860
  # @return [Types::IotEventsDestinationConfiguration]
831
861
  #
832
862
  class DatasetContentDeliveryDestination < Struct.new(
@@ -834,6 +864,9 @@ module Aws::IoTAnalytics
834
864
  include Aws::Structure
835
865
  end
836
866
 
867
+ # When data set contents are created they are delivered to destination
868
+ # specified here.
869
+ #
837
870
  # @note When making an API call, you may pass DatasetContentDeliveryRule
838
871
  # data as a hash:
839
872
  #
@@ -848,9 +881,11 @@ module Aws::IoTAnalytics
848
881
  # }
849
882
  #
850
883
  # @!attribute [rw] entry_name
884
+ # The name of the data set content delivery rules entry.
851
885
  # @return [String]
852
886
  #
853
887
  # @!attribute [rw] destination
888
+ # The destination to which data set contents are delivered.
854
889
  # @return [Types::DatasetContentDeliveryDestination]
855
890
  #
856
891
  class DatasetContentDeliveryRule < Struct.new(
@@ -904,8 +939,8 @@ module Aws::IoTAnalytics
904
939
  include Aws::Structure
905
940
  end
906
941
 
907
- # The data set whose latest contents will be used as input to the
908
- # notebook or application.
942
+ # The data set whose latest contents are used as input to the notebook
943
+ # or application.
909
944
  #
910
945
  # @note When making an API call, you may pass DatasetContentVersionValue
911
946
  # data as a hash:
@@ -915,8 +950,8 @@ module Aws::IoTAnalytics
915
950
  # }
916
951
  #
917
952
  # @!attribute [rw] dataset_name
918
- # The name of the data set whose latest contents will be used as input
919
- # to the notebook or application.
953
+ # The name of the data set whose latest contents are used as input to
954
+ # the notebook or application.
920
955
  # @return [String]
921
956
  #
922
957
  class DatasetContentVersionValue < Struct.new(
@@ -999,8 +1034,8 @@ module Aws::IoTAnalytics
999
1034
  # @return [Types::Schedule]
1000
1035
  #
1001
1036
  # @!attribute [rw] dataset
1002
- # The data set whose content creation will trigger the creation of
1003
- # this data set's contents.
1037
+ # The data set whose content creation triggers the creation of this
1038
+ # data set's contents.
1004
1039
  # @return [Types::TriggeringDataset]
1005
1040
  #
1006
1041
  class DatasetTrigger < Struct.new(
@@ -1208,15 +1243,8 @@ module Aws::IoTAnalytics
1208
1243
  include Aws::Structure
1209
1244
  end
1210
1245
 
1211
- # When you create data set contents using message data from a specified
1212
- # time frame, some message data may still be "in flight" when
1213
- # processing begins, and so will not arrive in time to be processed. Use
1214
- # this field to make allowances for the "in flight" time of your
1215
- # message data, so that data not processed from the previous time frame
1216
- # will be included with the next time frame. Without this, missed
1217
- # message data would be excluded from processing during the next time
1218
- # frame as well, because its timestamp places it within the previous
1219
- # time frame.
1246
+ # Used to limit data to that which has arrived since the last execution
1247
+ # of the action.
1220
1248
  #
1221
1249
  # @note When making an API call, you may pass DeltaTime
1222
1250
  # data as a hash:
@@ -1228,7 +1256,15 @@ module Aws::IoTAnalytics
1228
1256
  #
1229
1257
  # @!attribute [rw] offset_seconds
1230
1258
  # The number of seconds of estimated "in flight" lag time of message
1231
- # data.
1259
+ # data. When you create data set contents using message data from a
1260
+ # specified time frame, some message data may still be "in flight"
1261
+ # when processing begins, and so will not arrive in time to be
1262
+ # processed. Use this field to make allowances for the "in flight"
1263
+ # time of your message data, so that data not processed from a
1264
+ # previous time frame will be included with the next time frame.
1265
+ # Without this, missed message data would be excluded from processing
1266
+ # during the next time frame as well, because its timestamp places it
1267
+ # within the previous time frame.
1232
1268
  # @return [Integer]
1233
1269
  #
1234
1270
  # @!attribute [rw] time_expression
@@ -1563,6 +1599,9 @@ module Aws::IoTAnalytics
1563
1599
  include Aws::Structure
1564
1600
  end
1565
1601
 
1602
+ # Configuration information for delivery of data set contents to AWS IoT
1603
+ # Events.
1604
+ #
1566
1605
  # @note When making an API call, you may pass IotEventsDestinationConfiguration
1567
1606
  # data as a hash:
1568
1607
  #
@@ -1572,9 +1611,13 @@ module Aws::IoTAnalytics
1572
1611
  # }
1573
1612
  #
1574
1613
  # @!attribute [rw] input_name
1614
+ # The name of the AWS IoT Events input to which data set contents are
1615
+ # delivered.
1575
1616
  # @return [String]
1576
1617
  #
1577
1618
  # @!attribute [rw] role_arn
1619
+ # The ARN of the role which grants AWS IoT Analytics permission to
1620
+ # deliver data set contents to an AWS IoT Events input.
1578
1621
  # @return [String]
1579
1622
  #
1580
1623
  class IotEventsDestinationConfiguration < Struct.new(
@@ -1669,6 +1712,8 @@ module Aws::IoTAnalytics
1669
1712
  # dataset_name: "DatasetName", # required
1670
1713
  # next_token: "NextToken",
1671
1714
  # max_results: 1,
1715
+ # scheduled_on_or_after: Time.now,
1716
+ # scheduled_before: Time.now,
1672
1717
  # }
1673
1718
  #
1674
1719
  # @!attribute [rw] dataset_name
@@ -1684,10 +1729,24 @@ module Aws::IoTAnalytics
1684
1729
  # The maximum number of results to return in this request.
1685
1730
  # @return [Integer]
1686
1731
  #
1732
+ # @!attribute [rw] scheduled_on_or_after
1733
+ # A filter to limit results to those data set contents whose creation
1734
+ # is scheduled on or after the given time. See the field
1735
+ # `triggers.schedule` in the CreateDataset request. (timestamp)
1736
+ # @return [Time]
1737
+ #
1738
+ # @!attribute [rw] scheduled_before
1739
+ # A filter to limit results to those data set contents whose creation
1740
+ # is scheduled before the given time. See the field
1741
+ # `triggers.schedule` in the CreateDataset request. (timestamp)
1742
+ # @return [Time]
1743
+ #
1687
1744
  class ListDatasetContentsRequest < Struct.new(
1688
1745
  :dataset_name,
1689
1746
  :next_token,
1690
- :max_results)
1747
+ :max_results,
1748
+ :scheduled_on_or_after,
1749
+ :scheduled_before)
1691
1750
  include Aws::Structure
1692
1751
  end
1693
1752
 
@@ -1897,7 +1956,7 @@ module Aws::IoTAnalytics
1897
1956
  # @return [String]
1898
1957
  #
1899
1958
  # @!attribute [rw] attribute
1900
- # The name of the attribute that will contain the result of the math
1959
+ # The name of the attribute that contains the result of the math
1901
1960
  # operation.
1902
1961
  # @return [String]
1903
1962
  #
@@ -1945,8 +2004,8 @@ module Aws::IoTAnalytics
1945
2004
  include Aws::Structure
1946
2005
  end
1947
2006
 
1948
- # The URI of the location where data set contents are stored, usually
1949
- # the URI of a file in an S3 bucket.
2007
+ # The value of the variable as a structure that specifies an output file
2008
+ # URI.
1950
2009
  #
1951
2010
  # @note When making an API call, you may pass OutputFileUriValue
1952
2011
  # data as a hash:
@@ -2184,15 +2243,7 @@ module Aws::IoTAnalytics
2184
2243
  #
2185
2244
  # @!attribute [rw] delta_time
2186
2245
  # Used to limit data to that which has arrived since the last
2187
- # execution of the action. When you create data set contents using
2188
- # message data from a specified time frame, some message data may
2189
- # still be "in flight" when processing begins, and so will not
2190
- # arrive in time to be processed. Use this field to make allowances
2191
- # for the "in flight" time of you message data, so that data not
2192
- # processed from a previous time frame will be included with the next
2193
- # time frame. Without this, missed message data would be excluded from
2194
- # processing during the next time frame as well, because its timestamp
2195
- # places it within the previous time frame.
2246
+ # execution of the action.
2196
2247
  # @return [Types::DeltaTime]
2197
2248
  #
2198
2249
  class QueryFilter < Struct.new(
@@ -2613,7 +2664,7 @@ module Aws::IoTAnalytics
2613
2664
  # }
2614
2665
  #
2615
2666
  # @!attribute [rw] resource_arn
2616
- # The ARN of the resource whose tags will be modified.
2667
+ # The ARN of the resource whose tags you want to modify.
2617
2668
  # @return [String]
2618
2669
  #
2619
2670
  # @!attribute [rw] tags
@@ -2628,8 +2679,8 @@ module Aws::IoTAnalytics
2628
2679
 
2629
2680
  class TagResourceResponse < Aws::EmptyStructure; end
2630
2681
 
2631
- # Information about the data set whose content generation will trigger
2632
- # the new data set content generation.
2682
+ # Information about the data set whose content generation triggers the
2683
+ # new data set content generation.
2633
2684
  #
2634
2685
  # @note When making an API call, you may pass TriggeringDataset
2635
2686
  # data as a hash:
@@ -2639,8 +2690,8 @@ module Aws::IoTAnalytics
2639
2690
  # }
2640
2691
  #
2641
2692
  # @!attribute [rw] name
2642
- # The name of the data set whose content generation will trigger the
2643
- # new data set content generation.
2693
+ # The name of the data set whose content generation triggers the new
2694
+ # data set content generation.
2644
2695
  # @return [String]
2645
2696
  #
2646
2697
  class TriggeringDataset < Struct.new(
@@ -2657,11 +2708,11 @@ module Aws::IoTAnalytics
2657
2708
  # }
2658
2709
  #
2659
2710
  # @!attribute [rw] resource_arn
2660
- # The ARN of the resource whose tags will be removed.
2711
+ # The ARN of the resource whose tags you want to remove.
2661
2712
  # @return [String]
2662
2713
  #
2663
2714
  # @!attribute [rw] tag_keys
2664
- # The keys of those tags which will be removed.
2715
+ # The keys of those tags which you want to remove.
2665
2716
  # @return [Array<String>]
2666
2717
  #
2667
2718
  class UntagResourceRequest < Struct.new(
@@ -2780,6 +2831,8 @@ module Aws::IoTAnalytics
2780
2831
  # @return [Array<Types::DatasetTrigger>]
2781
2832
  #
2782
2833
  # @!attribute [rw] content_delivery_rules
2834
+ # When data set contents are created they are delivered to
2835
+ # destinations specified here.
2783
2836
  # @return [Array<Types::DatasetContentDeliveryRule>]
2784
2837
  #
2785
2838
  # @!attribute [rw] retention_period
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.11.0
4
+ version: 1.12.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: 2018-11-27 00:00:00.000000000 Z
11
+ date: 2019-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core