aws-sdk-iot 1.21.0 → 1.22.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/lib/aws-sdk-iot.rb +1 -1
- data/lib/aws-sdk-iot/client.rb +24 -9
- data/lib/aws-sdk-iot/client_api.rb +3 -2
- data/lib/aws-sdk-iot/types.rb +34 -17
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdd600ea9032b0615580b559f97127c20bbe7e0e
|
4
|
+
data.tar.gz: 83f1205d0bd3bdd45fca69d77f6e8132b041f31f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85ec308e280cff84aea841b2f8bdb308713ebcefb43eea64ef4802cce9e18fbbaf06ac81bd8fbb3eff288fa95ce38983753dfc3bb539ebd967f8c861afb68e7f
|
7
|
+
data.tar.gz: 70cbe0f0e582e4433bdbab940d39c8115814705dd7931da3addf7191acf2c317fa934252c7c92ede4fc7fae6b354febdacf4b297ed4ef4889bf379542d50bfbb
|
data/lib/aws-sdk-iot.rb
CHANGED
data/lib/aws-sdk-iot/client.rb
CHANGED
@@ -1664,6 +1664,20 @@ module Aws::IoT
|
|
1664
1664
|
# @option params [required, Types::TopicRulePayload] :topic_rule_payload
|
1665
1665
|
# The rule payload.
|
1666
1666
|
#
|
1667
|
+
# @option params [String] :tags
|
1668
|
+
# Metadata which can be used to manage the topic rule.
|
1669
|
+
#
|
1670
|
+
# <note markdown="1"> For URI Request parameters use format:
|
1671
|
+
# ...key1=value1&key2=value2...
|
1672
|
+
#
|
1673
|
+
# For the CLI command-line parameter use format: --tags
|
1674
|
+
# "key1=value1&key2=value2..."
|
1675
|
+
#
|
1676
|
+
# For the cli-input-json file use format: "tags":
|
1677
|
+
# "key1=value1&key2=value2..."
|
1678
|
+
#
|
1679
|
+
# </note>
|
1680
|
+
#
|
1667
1681
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1668
1682
|
#
|
1669
1683
|
# @example Request syntax with placeholder values
|
@@ -1688,8 +1702,8 @@ module Aws::IoT
|
|
1688
1702
|
# payload_field: "PayloadField",
|
1689
1703
|
# },
|
1690
1704
|
# dynamo_d_bv_2: {
|
1691
|
-
# role_arn: "AwsArn",
|
1692
|
-
# put_item: {
|
1705
|
+
# role_arn: "AwsArn", # required
|
1706
|
+
# put_item: { # required
|
1693
1707
|
# table_name: "TableName", # required
|
1694
1708
|
# },
|
1695
1709
|
# },
|
@@ -1784,8 +1798,8 @@ module Aws::IoT
|
|
1784
1798
|
# payload_field: "PayloadField",
|
1785
1799
|
# },
|
1786
1800
|
# dynamo_d_bv_2: {
|
1787
|
-
# role_arn: "AwsArn",
|
1788
|
-
# put_item: {
|
1801
|
+
# role_arn: "AwsArn", # required
|
1802
|
+
# put_item: { # required
|
1789
1803
|
# table_name: "TableName", # required
|
1790
1804
|
# },
|
1791
1805
|
# },
|
@@ -1864,6 +1878,7 @@ module Aws::IoT
|
|
1864
1878
|
# },
|
1865
1879
|
# },
|
1866
1880
|
# },
|
1881
|
+
# tags: "String",
|
1867
1882
|
# })
|
1868
1883
|
#
|
1869
1884
|
# @overload create_topic_rule(params = {})
|
@@ -5894,8 +5909,8 @@ module Aws::IoT
|
|
5894
5909
|
# payload_field: "PayloadField",
|
5895
5910
|
# },
|
5896
5911
|
# dynamo_d_bv_2: {
|
5897
|
-
# role_arn: "AwsArn",
|
5898
|
-
# put_item: {
|
5912
|
+
# role_arn: "AwsArn", # required
|
5913
|
+
# put_item: { # required
|
5899
5914
|
# table_name: "TableName", # required
|
5900
5915
|
# },
|
5901
5916
|
# },
|
@@ -5990,8 +6005,8 @@ module Aws::IoT
|
|
5990
6005
|
# payload_field: "PayloadField",
|
5991
6006
|
# },
|
5992
6007
|
# dynamo_d_bv_2: {
|
5993
|
-
# role_arn: "AwsArn",
|
5994
|
-
# put_item: {
|
6008
|
+
# role_arn: "AwsArn", # required
|
6009
|
+
# put_item: { # required
|
5995
6010
|
# table_name: "TableName", # required
|
5996
6011
|
# },
|
5997
6012
|
# },
|
@@ -7416,7 +7431,7 @@ module Aws::IoT
|
|
7416
7431
|
params: params,
|
7417
7432
|
config: config)
|
7418
7433
|
context[:gem_name] = 'aws-sdk-iot'
|
7419
|
-
context[:gem_version] = '1.
|
7434
|
+
context[:gem_version] = '1.22.0'
|
7420
7435
|
Seahorse::Client::Request.new(handlers, context)
|
7421
7436
|
end
|
7422
7437
|
|
@@ -1332,6 +1332,7 @@ module Aws::IoT
|
|
1332
1332
|
|
1333
1333
|
CreateTopicRuleRequest.add_member(:rule_name, Shapes::ShapeRef.new(shape: RuleName, required: true, location: "uri", location_name: "ruleName"))
|
1334
1334
|
CreateTopicRuleRequest.add_member(:topic_rule_payload, Shapes::ShapeRef.new(shape: TopicRulePayload, required: true, location_name: "topicRulePayload"))
|
1335
|
+
CreateTopicRuleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "x-amz-tagging"))
|
1335
1336
|
CreateTopicRuleRequest.struct_class = Types::CreateTopicRuleRequest
|
1336
1337
|
CreateTopicRuleRequest[:payload] = :topic_rule_payload
|
1337
1338
|
CreateTopicRuleRequest[:payload_member] = CreateTopicRuleRequest.member(:topic_rule_payload)
|
@@ -1677,8 +1678,8 @@ module Aws::IoT
|
|
1677
1678
|
DynamoDBAction.add_member(:payload_field, Shapes::ShapeRef.new(shape: PayloadField, location_name: "payloadField"))
|
1678
1679
|
DynamoDBAction.struct_class = Types::DynamoDBAction
|
1679
1680
|
|
1680
|
-
DynamoDBv2Action.add_member(:role_arn, Shapes::ShapeRef.new(shape: AwsArn, location_name: "roleArn"))
|
1681
|
-
DynamoDBv2Action.add_member(:put_item, Shapes::ShapeRef.new(shape: PutItemInput, location_name: "putItem"))
|
1681
|
+
DynamoDBv2Action.add_member(:role_arn, Shapes::ShapeRef.new(shape: AwsArn, required: true, location_name: "roleArn"))
|
1682
|
+
DynamoDBv2Action.add_member(:put_item, Shapes::ShapeRef.new(shape: PutItemInput, required: true, location_name: "putItem"))
|
1682
1683
|
DynamoDBv2Action.struct_class = Types::DynamoDBv2Action
|
1683
1684
|
|
1684
1685
|
EffectivePolicies.member = Shapes::ShapeRef.new(shape: EffectivePolicy)
|
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -118,8 +118,8 @@ module Aws::IoT
|
|
118
118
|
# payload_field: "PayloadField",
|
119
119
|
# },
|
120
120
|
# dynamo_d_bv_2: {
|
121
|
-
# role_arn: "AwsArn",
|
122
|
-
# put_item: {
|
121
|
+
# role_arn: "AwsArn", # required
|
122
|
+
# put_item: { # required
|
123
123
|
# table_name: "TableName", # required
|
124
124
|
# },
|
125
125
|
# },
|
@@ -2817,8 +2817,8 @@ module Aws::IoT
|
|
2817
2817
|
# payload_field: "PayloadField",
|
2818
2818
|
# },
|
2819
2819
|
# dynamo_d_bv_2: {
|
2820
|
-
# role_arn: "AwsArn",
|
2821
|
-
# put_item: {
|
2820
|
+
# role_arn: "AwsArn", # required
|
2821
|
+
# put_item: { # required
|
2822
2822
|
# table_name: "TableName", # required
|
2823
2823
|
# },
|
2824
2824
|
# },
|
@@ -2913,8 +2913,8 @@ module Aws::IoT
|
|
2913
2913
|
# payload_field: "PayloadField",
|
2914
2914
|
# },
|
2915
2915
|
# dynamo_d_bv_2: {
|
2916
|
-
# role_arn: "AwsArn",
|
2917
|
-
# put_item: {
|
2916
|
+
# role_arn: "AwsArn", # required
|
2917
|
+
# put_item: { # required
|
2918
2918
|
# table_name: "TableName", # required
|
2919
2919
|
# },
|
2920
2920
|
# },
|
@@ -2993,6 +2993,7 @@ module Aws::IoT
|
|
2993
2993
|
# },
|
2994
2994
|
# },
|
2995
2995
|
# },
|
2996
|
+
# tags: "String",
|
2996
2997
|
# }
|
2997
2998
|
#
|
2998
2999
|
# @!attribute [rw] rule_name
|
@@ -3003,9 +3004,25 @@ module Aws::IoT
|
|
3003
3004
|
# The rule payload.
|
3004
3005
|
# @return [Types::TopicRulePayload]
|
3005
3006
|
#
|
3007
|
+
# @!attribute [rw] tags
|
3008
|
+
# Metadata which can be used to manage the topic rule.
|
3009
|
+
#
|
3010
|
+
# <note markdown="1"> For URI Request parameters use format:
|
3011
|
+
# ...key1=value1&key2=value2...
|
3012
|
+
#
|
3013
|
+
# For the CLI command-line parameter use format: --tags
|
3014
|
+
# "key1=value1&key2=value2..."
|
3015
|
+
#
|
3016
|
+
# For the cli-input-json file use format: "tags":
|
3017
|
+
# "key1=value1&key2=value2..."
|
3018
|
+
#
|
3019
|
+
# </note>
|
3020
|
+
# @return [String]
|
3021
|
+
#
|
3006
3022
|
class CreateTopicRuleRequest < Struct.new(
|
3007
3023
|
:rule_name,
|
3008
|
-
:topic_rule_payload
|
3024
|
+
:topic_rule_payload,
|
3025
|
+
:tags)
|
3009
3026
|
include Aws::Structure
|
3010
3027
|
end
|
3011
3028
|
|
@@ -4721,8 +4738,8 @@ module Aws::IoT
|
|
4721
4738
|
# data as a hash:
|
4722
4739
|
#
|
4723
4740
|
# {
|
4724
|
-
# role_arn: "AwsArn",
|
4725
|
-
# put_item: {
|
4741
|
+
# role_arn: "AwsArn", # required
|
4742
|
+
# put_item: { # required
|
4726
4743
|
# table_name: "TableName", # required
|
4727
4744
|
# },
|
4728
4745
|
# }
|
@@ -8602,8 +8619,8 @@ module Aws::IoT
|
|
8602
8619
|
# payload_field: "PayloadField",
|
8603
8620
|
# },
|
8604
8621
|
# dynamo_d_bv_2: {
|
8605
|
-
# role_arn: "AwsArn",
|
8606
|
-
# put_item: {
|
8622
|
+
# role_arn: "AwsArn", # required
|
8623
|
+
# put_item: { # required
|
8607
8624
|
# table_name: "TableName", # required
|
8608
8625
|
# },
|
8609
8626
|
# },
|
@@ -8698,8 +8715,8 @@ module Aws::IoT
|
|
8698
8715
|
# payload_field: "PayloadField",
|
8699
8716
|
# },
|
8700
8717
|
# dynamo_d_bv_2: {
|
8701
|
-
# role_arn: "AwsArn",
|
8702
|
-
# put_item: {
|
8718
|
+
# role_arn: "AwsArn", # required
|
8719
|
+
# put_item: { # required
|
8703
8720
|
# table_name: "TableName", # required
|
8704
8721
|
# },
|
8705
8722
|
# },
|
@@ -10359,8 +10376,8 @@ module Aws::IoT
|
|
10359
10376
|
# payload_field: "PayloadField",
|
10360
10377
|
# },
|
10361
10378
|
# dynamo_d_bv_2: {
|
10362
|
-
# role_arn: "AwsArn",
|
10363
|
-
# put_item: {
|
10379
|
+
# role_arn: "AwsArn", # required
|
10380
|
+
# put_item: { # required
|
10364
10381
|
# table_name: "TableName", # required
|
10365
10382
|
# },
|
10366
10383
|
# },
|
@@ -10455,8 +10472,8 @@ module Aws::IoT
|
|
10455
10472
|
# payload_field: "PayloadField",
|
10456
10473
|
# },
|
10457
10474
|
# dynamo_d_bv_2: {
|
10458
|
-
# role_arn: "AwsArn",
|
10459
|
-
# put_item: {
|
10475
|
+
# role_arn: "AwsArn", # required
|
10476
|
+
# put_item: { # required
|
10460
10477
|
# table_name: "TableName", # required
|
10461
10478
|
# },
|
10462
10479
|
# },
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.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: 2019-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|