aws-sdk-iotanalytics 1.15.0 → 1.16.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: 7706dee48cc6fcda54b22451506ec80a37b8355d
4
- data.tar.gz: f3fabb244ac83147d1df645d4590749d4aab319e
3
+ metadata.gz: 7503385bbc7f9e65e91f2c04731382c5cd513521
4
+ data.tar.gz: c9da03ffb34b40a0f503533507fd2d8ced06709a
5
5
  SHA512:
6
- metadata.gz: 1692bfb06e795bbf5f02e91d4a83750fde0948381f4a9d179653cb6aabae6a277e6b2b72b01aa91d621caa922f0e74476ae1e2cf003bc598439174763c00408d
7
- data.tar.gz: 5af6f247d4769adc331d3e395df8f12b248c633e5024c6498ee3b77238cde451edc8a2b6dc3195503dba39a208cccc67f847013beab6cd2b4b5ffd0845474e13
6
+ metadata.gz: 589d26a59d13bd84590f2567c0cfa0ace245904b10088ccee769fb7b9d2de1f6350287ffeb2feb59385f0c259df08c810b12659b902d7178ddbb8117711a402b
7
+ data.tar.gz: b13ec49839bb3bad66c0e6b8b98ce01adb4ea9ce44c160ae6a9207059112a48a2cfbee61f4a532aa141e383d823a8fbf834c5963223fad0a43a2bb165947b76e
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-iotanalytics/customizations'
42
42
  # @service
43
43
  module Aws::IoTAnalytics
44
44
 
45
- GEM_VERSION = '1.15.0'
45
+ GEM_VERSION = '1.16.0'
46
46
 
47
47
  end
@@ -364,10 +364,20 @@ module Aws::IoTAnalytics
364
364
  # specified here.
365
365
  #
366
366
  # @option params [Types::RetentionPeriod] :retention_period
367
- # \[Optional\] How long, in days, message data is kept for the data set.
368
- # If not given or set to null, the latest version of the dataset content
369
- # plus the latest succeeded version (if they are different) are retained
370
- # for at most 90 days.
367
+ # \[Optional\] How long, in days, versions of data set contents are kept
368
+ # for the data set. If not specified or set to null, versions of data
369
+ # set contents are retained for at most 90 days. The number of versions
370
+ # of data set contents retained is determined by the
371
+ # `versioningConfiguration` parameter. (For more information, see
372
+ # https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)
373
+ #
374
+ # @option params [Types::VersioningConfiguration] :versioning_configuration
375
+ # \[Optional\] How many versions of data set contents are kept. If not
376
+ # specified or set to null, only the latest version plus the latest
377
+ # succeeded version (if they are different) are kept for the time period
378
+ # specified by the "retentionPeriod" parameter. (For more information,
379
+ # see
380
+ # https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)
371
381
  #
372
382
  # @option params [Array<Types::Tag>] :tags
373
383
  # Metadata which can be used to manage the data set.
@@ -444,6 +454,10 @@ module Aws::IoTAnalytics
444
454
  # unlimited: false,
445
455
  # number_of_days: 1,
446
456
  # },
457
+ # versioning_configuration: {
458
+ # unlimited: false,
459
+ # max_versions: 1,
460
+ # },
447
461
  # tags: [
448
462
  # {
449
463
  # key: "TagKey", # required
@@ -543,20 +557,26 @@ module Aws::IoTAnalytics
543
557
 
544
558
  # Creates a pipeline. A pipeline consumes messages from one or more
545
559
  # channels and allows you to process the messages before storing them in
546
- # a data store.
560
+ # a data store. You must specify both a `channel` and a `datastore`
561
+ # activity and, optionally, as many as 23 additional activities in the
562
+ # `pipelineActivities` array.
547
563
  #
548
564
  # @option params [required, String] :pipeline_name
549
565
  # The name of the pipeline.
550
566
  #
551
567
  # @option params [required, Array<Types::PipelineActivity>] :pipeline_activities
552
- # A list of pipeline activities.
568
+ # A list of "PipelineActivity" objects. Activities perform
569
+ # transformations on your messages, such as removing, renaming or adding
570
+ # message attributes; filtering messages based on attribute values;
571
+ # invoking your Lambda functions on messages for advanced processing; or
572
+ # performing mathematical transformations to normalize device data.
573
+ #
574
+ # The list can be 2-25 **PipelineActivity** objects and must contain
575
+ # both a `channel` and a `datastore` activity. Each entry in the list
576
+ # must contain only one activity, for example:
553
577
  #
554
- # The list can be 1-25 **PipelineActivity** objects. Activities perform
555
- # transformations on your messages, such as removing, renaming, or
556
- # adding message attributes; filtering messages based on attribute
557
- # values; invoking your Lambda functions on messages for advanced
558
- # processing; or performing mathematical transformations to normalize
559
- # device data.
578
+ # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
579
+ # ... \} \}, ... ]`
560
580
  #
561
581
  # @option params [Array<Types::Tag>] :tags
562
582
  # Metadata which can be used to manage the pipeline.
@@ -848,6 +868,8 @@ module Aws::IoTAnalytics
848
868
  # resp.dataset.last_update_time #=> Time
849
869
  # resp.dataset.retention_period.unlimited #=> Boolean
850
870
  # resp.dataset.retention_period.number_of_days #=> Integer
871
+ # resp.dataset.versioning_configuration.unlimited #=> Boolean
872
+ # resp.dataset.versioning_configuration.max_versions #=> Integer
851
873
  #
852
874
  # @overload describe_dataset(params = {})
853
875
  # @param [Hash] params ({})
@@ -1570,7 +1592,15 @@ module Aws::IoTAnalytics
1570
1592
  # specified here.
1571
1593
  #
1572
1594
  # @option params [Types::RetentionPeriod] :retention_period
1573
- # How long, in days, message data is kept for the data set.
1595
+ # How long, in days, data set contents are kept for the data set.
1596
+ #
1597
+ # @option params [Types::VersioningConfiguration] :versioning_configuration
1598
+ # \[Optional\] How many versions of data set contents are kept. If not
1599
+ # specified or set to null, only the latest version plus the latest
1600
+ # succeeded version (if they are different) are kept for the time period
1601
+ # specified by the "retentionPeriod" parameter. (For more information,
1602
+ # see
1603
+ # https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)
1574
1604
  #
1575
1605
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1576
1606
  #
@@ -1640,6 +1670,10 @@ module Aws::IoTAnalytics
1640
1670
  # unlimited: false,
1641
1671
  # number_of_days: 1,
1642
1672
  # },
1673
+ # versioning_configuration: {
1674
+ # unlimited: false,
1675
+ # max_versions: 1,
1676
+ # },
1643
1677
  # })
1644
1678
  #
1645
1679
  # @overload update_dataset(params = {})
@@ -1676,20 +1710,27 @@ module Aws::IoTAnalytics
1676
1710
  req.send_request(options)
1677
1711
  end
1678
1712
 
1679
- # Updates the settings of a pipeline.
1713
+ # Updates the settings of a pipeline. You must specify both a `channel`
1714
+ # and a `datastore` activity and, optionally, as many as 23 additional
1715
+ # activities in the `pipelineActivities` array.
1680
1716
  #
1681
1717
  # @option params [required, String] :pipeline_name
1682
1718
  # The name of the pipeline to update.
1683
1719
  #
1684
1720
  # @option params [required, Array<Types::PipelineActivity>] :pipeline_activities
1685
- # A list of "PipelineActivity" objects.
1686
- #
1687
- # The list can be 1-25 **PipelineActivity** objects. Activities perform
1721
+ # A list of "PipelineActivity" objects. Activities perform
1688
1722
  # transformations on your messages, such as removing, renaming or adding
1689
1723
  # message attributes; filtering messages based on attribute values;
1690
1724
  # invoking your Lambda functions on messages for advanced processing; or
1691
1725
  # performing mathematical transformations to normalize device data.
1692
1726
  #
1727
+ # The list can be 2-25 **PipelineActivity** objects and must contain
1728
+ # both a `channel` and a `datastore` activity. Each entry in the list
1729
+ # must contain only one activity, for example:
1730
+ #
1731
+ # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
1732
+ # ... \} \}, ... ]`
1733
+ #
1693
1734
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1694
1735
  #
1695
1736
  # @example Request syntax with placeholder values
@@ -1779,7 +1820,7 @@ module Aws::IoTAnalytics
1779
1820
  params: params,
1780
1821
  config: config)
1781
1822
  context[:gem_name] = 'aws-sdk-iotanalytics'
1782
- context[:gem_version] = '1.15.0'
1823
+ context[:gem_version] = '1.16.0'
1783
1824
  Seahorse::Client::Request.new(handlers, context)
1784
1825
  end
1785
1826
 
@@ -133,6 +133,7 @@ module Aws::IoTAnalytics
133
133
  MathExpression = Shapes::StringShape.new(name: 'MathExpression')
134
134
  MaxMessages = Shapes::IntegerShape.new(name: 'MaxMessages')
135
135
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
136
+ MaxVersions = Shapes::IntegerShape.new(name: 'MaxVersions')
136
137
  Message = Shapes::StructureShape.new(name: 'Message')
137
138
  MessageId = Shapes::StringShape.new(name: 'MessageId')
138
139
  MessagePayload = Shapes::BlobShape.new(name: 'MessagePayload')
@@ -193,6 +194,7 @@ module Aws::IoTAnalytics
193
194
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
194
195
  TriggeringDataset = Shapes::StructureShape.new(name: 'TriggeringDataset')
195
196
  UnlimitedRetentionPeriod = Shapes::BooleanShape.new(name: 'UnlimitedRetentionPeriod')
197
+ UnlimitedVersioning = Shapes::BooleanShape.new(name: 'UnlimitedVersioning')
196
198
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
197
199
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
198
200
  UpdateChannelRequest = Shapes::StructureShape.new(name: 'UpdateChannelRequest')
@@ -202,6 +204,7 @@ module Aws::IoTAnalytics
202
204
  Variable = Shapes::StructureShape.new(name: 'Variable')
203
205
  VariableName = Shapes::StringShape.new(name: 'VariableName')
204
206
  Variables = Shapes::ListShape.new(name: 'Variables')
207
+ VersioningConfiguration = Shapes::StructureShape.new(name: 'VersioningConfiguration')
205
208
  VolumeSizeInGB = Shapes::IntegerShape.new(name: 'VolumeSizeInGB')
206
209
  errorMessage = Shapes::StringShape.new(name: 'errorMessage')
207
210
  resourceArn = Shapes::StringShape.new(name: 'resourceArn')
@@ -288,6 +291,7 @@ module Aws::IoTAnalytics
288
291
  CreateDatasetRequest.add_member(:triggers, Shapes::ShapeRef.new(shape: DatasetTriggers, location_name: "triggers"))
289
292
  CreateDatasetRequest.add_member(:content_delivery_rules, Shapes::ShapeRef.new(shape: DatasetContentDeliveryRules, location_name: "contentDeliveryRules"))
290
293
  CreateDatasetRequest.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
294
+ CreateDatasetRequest.add_member(:versioning_configuration, Shapes::ShapeRef.new(shape: VersioningConfiguration, location_name: "versioningConfiguration"))
291
295
  CreateDatasetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
292
296
  CreateDatasetRequest.struct_class = Types::CreateDatasetRequest
293
297
 
@@ -324,6 +328,7 @@ module Aws::IoTAnalytics
324
328
  Dataset.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
325
329
  Dataset.add_member(:last_update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdateTime"))
326
330
  Dataset.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
331
+ Dataset.add_member(:versioning_configuration, Shapes::ShapeRef.new(shape: VersioningConfiguration, location_name: "versioningConfiguration"))
327
332
  Dataset.struct_class = Types::Dataset
328
333
 
329
334
  DatasetAction.add_member(:action_name, Shapes::ShapeRef.new(shape: DatasetActionName, location_name: "actionName"))
@@ -701,6 +706,7 @@ module Aws::IoTAnalytics
701
706
  UpdateDatasetRequest.add_member(:triggers, Shapes::ShapeRef.new(shape: DatasetTriggers, location_name: "triggers"))
702
707
  UpdateDatasetRequest.add_member(:content_delivery_rules, Shapes::ShapeRef.new(shape: DatasetContentDeliveryRules, location_name: "contentDeliveryRules"))
703
708
  UpdateDatasetRequest.add_member(:retention_period, Shapes::ShapeRef.new(shape: RetentionPeriod, location_name: "retentionPeriod"))
709
+ UpdateDatasetRequest.add_member(:versioning_configuration, Shapes::ShapeRef.new(shape: VersioningConfiguration, location_name: "versioningConfiguration"))
704
710
  UpdateDatasetRequest.struct_class = Types::UpdateDatasetRequest
705
711
 
706
712
  UpdateDatastoreRequest.add_member(:datastore_name, Shapes::ShapeRef.new(shape: DatastoreName, required: true, location: "uri", location_name: "datastoreName"))
@@ -720,6 +726,10 @@ module Aws::IoTAnalytics
720
726
 
721
727
  Variables.member = Shapes::ShapeRef.new(shape: Variable)
722
728
 
729
+ VersioningConfiguration.add_member(:unlimited, Shapes::ShapeRef.new(shape: UnlimitedVersioning, location_name: "unlimited"))
730
+ VersioningConfiguration.add_member(:max_versions, Shapes::ShapeRef.new(shape: MaxVersions, location_name: "maxVersions"))
731
+ VersioningConfiguration.struct_class = Types::VersioningConfiguration
732
+
723
733
 
724
734
  # @api private
725
735
  API = Seahorse::Model::Api.new.tap do |api|
@@ -468,6 +468,10 @@ module Aws::IoTAnalytics
468
468
  # unlimited: false,
469
469
  # number_of_days: 1,
470
470
  # },
471
+ # versioning_configuration: {
472
+ # unlimited: false,
473
+ # max_versions: 1,
474
+ # },
471
475
  # tags: [
472
476
  # {
473
477
  # key: "TagKey", # required
@@ -497,12 +501,23 @@ module Aws::IoTAnalytics
497
501
  # @return [Array<Types::DatasetContentDeliveryRule>]
498
502
  #
499
503
  # @!attribute [rw] retention_period
500
- # \[Optional\] How long, in days, message data is kept for the data
501
- # set. If not given or set to null, the latest version of the dataset
502
- # content plus the latest succeeded version (if they are different)
503
- # are retained for at most 90 days.
504
+ # \[Optional\] How long, in days, versions of data set contents are
505
+ # kept for the data set. If not specified or set to null, versions of
506
+ # data set contents are retained for at most 90 days. The number of
507
+ # versions of data set contents retained is determined by the
508
+ # `versioningConfiguration` parameter. (For more information, see
509
+ # https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)
504
510
  # @return [Types::RetentionPeriod]
505
511
  #
512
+ # @!attribute [rw] versioning_configuration
513
+ # \[Optional\] How many versions of data set contents are kept. If not
514
+ # specified or set to null, only the latest version plus the latest
515
+ # succeeded version (if they are different) are kept for the time
516
+ # period specified by the "retentionPeriod" parameter. (For more
517
+ # information, see
518
+ # https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)
519
+ # @return [Types::VersioningConfiguration]
520
+ #
506
521
  # @!attribute [rw] tags
507
522
  # Metadata which can be used to manage the data set.
508
523
  # @return [Array<Types::Tag>]
@@ -513,6 +528,7 @@ module Aws::IoTAnalytics
513
528
  :triggers,
514
529
  :content_delivery_rules,
515
530
  :retention_period,
531
+ :versioning_configuration,
516
532
  :tags)
517
533
  include Aws::Structure
518
534
  end
@@ -526,7 +542,7 @@ module Aws::IoTAnalytics
526
542
  # @return [String]
527
543
  #
528
544
  # @!attribute [rw] retention_period
529
- # How long, in days, message data is kept for the data set.
545
+ # How long, in days, data set contents are kept for the data set.
530
546
  # @return [Types::RetentionPeriod]
531
547
  #
532
548
  class CreateDatasetResponse < Struct.new(
@@ -670,14 +686,19 @@ module Aws::IoTAnalytics
670
686
  # @return [String]
671
687
  #
672
688
  # @!attribute [rw] pipeline_activities
673
- # A list of pipeline activities.
674
- #
675
- # The list can be 1-25 **PipelineActivity** objects. Activities
676
- # perform transformations on your messages, such as removing,
677
- # renaming, or adding message attributes; filtering messages based on
678
- # attribute values; invoking your Lambda functions on messages for
679
- # advanced processing; or performing mathematical transformations to
680
- # normalize device data.
689
+ # A list of "PipelineActivity" objects. Activities perform
690
+ # transformations on your messages, such as removing, renaming or
691
+ # adding message attributes; filtering messages based on attribute
692
+ # values; invoking your Lambda functions on messages for advanced
693
+ # processing; or performing mathematical transformations to normalize
694
+ # device data.
695
+ #
696
+ # The list can be 2-25 **PipelineActivity** objects and must contain
697
+ # both a `channel` and a `datastore` activity. Each entry in the list
698
+ # must contain only one activity, for example:
699
+ #
700
+ # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
701
+ # ... \} \}, ... ]`
681
702
  # @return [Array<Types::PipelineActivity>]
682
703
  #
683
704
  # @!attribute [rw] tags
@@ -747,6 +768,15 @@ module Aws::IoTAnalytics
747
768
  # set.
748
769
  # @return [Types::RetentionPeriod]
749
770
  #
771
+ # @!attribute [rw] versioning_configuration
772
+ # \[Optional\] How many versions of data set contents are kept. If not
773
+ # specified or set to null, only the latest version plus the latest
774
+ # succeeded version (if they are different) are kept for the time
775
+ # period specified by the "retentionPeriod" parameter. (For more
776
+ # information, see
777
+ # https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)
778
+ # @return [Types::VersioningConfiguration]
779
+ #
750
780
  class Dataset < Struct.new(
751
781
  :name,
752
782
  :arn,
@@ -756,7 +786,8 @@ module Aws::IoTAnalytics
756
786
  :status,
757
787
  :creation_time,
758
788
  :last_update_time,
759
- :retention_period)
789
+ :retention_period,
790
+ :versioning_configuration)
760
791
  include Aws::Structure
761
792
  end
762
793
 
@@ -2515,7 +2546,7 @@ module Aws::IoTAnalytics
2515
2546
  # @!attribute [rw] expression
2516
2547
  # The expression that defines when to trigger an update. For more
2517
2548
  # information, see [ Schedule Expressions for Rules][1] in the Amazon
2518
- # CloudWatch documentation.
2549
+ # CloudWatch Events User Guide.
2519
2550
  #
2520
2551
  #
2521
2552
  #
@@ -2815,6 +2846,10 @@ module Aws::IoTAnalytics
2815
2846
  # unlimited: false,
2816
2847
  # number_of_days: 1,
2817
2848
  # },
2849
+ # versioning_configuration: {
2850
+ # unlimited: false,
2851
+ # max_versions: 1,
2852
+ # },
2818
2853
  # }
2819
2854
  #
2820
2855
  # @!attribute [rw] dataset_name
@@ -2836,15 +2871,25 @@ module Aws::IoTAnalytics
2836
2871
  # @return [Array<Types::DatasetContentDeliveryRule>]
2837
2872
  #
2838
2873
  # @!attribute [rw] retention_period
2839
- # How long, in days, message data is kept for the data set.
2874
+ # How long, in days, data set contents are kept for the data set.
2840
2875
  # @return [Types::RetentionPeriod]
2841
2876
  #
2877
+ # @!attribute [rw] versioning_configuration
2878
+ # \[Optional\] How many versions of data set contents are kept. If not
2879
+ # specified or set to null, only the latest version plus the latest
2880
+ # succeeded version (if they are different) are kept for the time
2881
+ # period specified by the "retentionPeriod" parameter. (For more
2882
+ # information, see
2883
+ # https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)
2884
+ # @return [Types::VersioningConfiguration]
2885
+ #
2842
2886
  class UpdateDatasetRequest < Struct.new(
2843
2887
  :dataset_name,
2844
2888
  :actions,
2845
2889
  :triggers,
2846
2890
  :content_delivery_rules,
2847
- :retention_period)
2891
+ :retention_period,
2892
+ :versioning_configuration)
2848
2893
  include Aws::Structure
2849
2894
  end
2850
2895
 
@@ -2946,14 +2991,19 @@ module Aws::IoTAnalytics
2946
2991
  # @return [String]
2947
2992
  #
2948
2993
  # @!attribute [rw] pipeline_activities
2949
- # A list of "PipelineActivity" objects.
2950
- #
2951
- # The list can be 1-25 **PipelineActivity** objects. Activities
2952
- # perform transformations on your messages, such as removing, renaming
2953
- # or adding message attributes; filtering messages based on attribute
2994
+ # A list of "PipelineActivity" objects. Activities perform
2995
+ # transformations on your messages, such as removing, renaming or
2996
+ # adding message attributes; filtering messages based on attribute
2954
2997
  # values; invoking your Lambda functions on messages for advanced
2955
2998
  # processing; or performing mathematical transformations to normalize
2956
2999
  # device data.
3000
+ #
3001
+ # The list can be 2-25 **PipelineActivity** objects and must contain
3002
+ # both a `channel` and a `datastore` activity. Each entry in the list
3003
+ # must contain only one activity, for example:
3004
+ #
3005
+ # `pipelineActivities = [ \{ "channel": \{ ... \} \}, \{ "lambda": \{
3006
+ # ... \} \}, ... ]`
2957
3007
  # @return [Array<Types::PipelineActivity>]
2958
3008
  #
2959
3009
  class UpdatePipelineRequest < Struct.new(
@@ -3013,5 +3063,28 @@ module Aws::IoTAnalytics
3013
3063
  include Aws::Structure
3014
3064
  end
3015
3065
 
3066
+ # @note When making an API call, you may pass VersioningConfiguration
3067
+ # data as a hash:
3068
+ #
3069
+ # {
3070
+ # unlimited: false,
3071
+ # max_versions: 1,
3072
+ # }
3073
+ #
3074
+ # @!attribute [rw] unlimited
3075
+ # If true, unlimited versions of data set contents will be kept.
3076
+ # @return [Boolean]
3077
+ #
3078
+ # @!attribute [rw] max_versions
3079
+ # How many versions of data set contents will be kept. The
3080
+ # "unlimited" parameter must be false.
3081
+ # @return [Integer]
3082
+ #
3083
+ class VersioningConfiguration < Struct.new(
3084
+ :unlimited,
3085
+ :max_versions)
3086
+ include Aws::Structure
3087
+ end
3088
+
3016
3089
  end
3017
3090
  end
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.15.0
4
+ version: 1.16.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: 2019-03-21 00:00:00.000000000 Z
11
+ date: 2019-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core