aws-sdk-iot 1.25.0 → 1.26.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 +21 -6
- data/lib/aws-sdk-iot/client_api.rb +2 -0
- data/lib/aws-sdk-iot/types.rb +26 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ac64c5e55c5e6cd71c39bbca6aef05ab7083146
|
4
|
+
data.tar.gz: 35041ebe2d185c8a6aee060b3b5343b03f264200
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d97acd45186b8e0d51cb02943dccd682d53ab97242140cfe280664b5668bdc67dceeac72dcca9ae4d7ace0ed8da564feb89dce958d9d976879457a1c9f92fc8f
|
7
|
+
data.tar.gz: a806fad7ffb75c9770666665efe1bf0d9a295b48dd54e3013677db345ed5ef6b1ad26f9960910ef48a6c9ed1323f995cd6fea7fe30016368f1aeabd8bdda672d
|
data/lib/aws-sdk-iot.rb
CHANGED
data/lib/aws-sdk-iot/client.rb
CHANGED
@@ -1080,6 +1080,9 @@ module Aws::IoT
|
|
1080
1080
|
# @option params [Hash<String,String>] :additional_parameters
|
1081
1081
|
# A list of additional OTA update parameters which are name-value pairs.
|
1082
1082
|
#
|
1083
|
+
# @option params [Array<Types::Tag>] :tags
|
1084
|
+
# Metadata which can be used to manage updates.
|
1085
|
+
#
|
1083
1086
|
# @return [Types::CreateOTAUpdateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1084
1087
|
#
|
1085
1088
|
# * {Types::CreateOTAUpdateResponse#ota_update_id #ota_update_id} => String
|
@@ -1150,6 +1153,12 @@ module Aws::IoT
|
|
1150
1153
|
# additional_parameters: {
|
1151
1154
|
# "AttributeKey" => "Value",
|
1152
1155
|
# },
|
1156
|
+
# tags: [
|
1157
|
+
# {
|
1158
|
+
# key: "TagKey",
|
1159
|
+
# value: "TagValue",
|
1160
|
+
# },
|
1161
|
+
# ],
|
1153
1162
|
# })
|
1154
1163
|
#
|
1155
1164
|
# @example Response structure
|
@@ -1466,6 +1475,9 @@ module Aws::IoT
|
|
1466
1475
|
# An IAM role that allows the IoT service principal assumes to access
|
1467
1476
|
# your S3 files.
|
1468
1477
|
#
|
1478
|
+
# @option params [Array<Types::Tag>] :tags
|
1479
|
+
# Metadata which can be used to manage streams.
|
1480
|
+
#
|
1469
1481
|
# @return [Types::CreateStreamResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1470
1482
|
#
|
1471
1483
|
# * {Types::CreateStreamResponse#stream_id #stream_id} => String
|
@@ -1489,6 +1501,12 @@ module Aws::IoT
|
|
1489
1501
|
# },
|
1490
1502
|
# ],
|
1491
1503
|
# role_arn: "RoleArn", # required
|
1504
|
+
# tags: [
|
1505
|
+
# {
|
1506
|
+
# key: "TagKey",
|
1507
|
+
# value: "TagValue",
|
1508
|
+
# },
|
1509
|
+
# ],
|
1492
1510
|
# })
|
1493
1511
|
#
|
1494
1512
|
# @example Response structure
|
@@ -1505,10 +1523,7 @@ module Aws::IoT
|
|
1505
1523
|
req.send_request(options)
|
1506
1524
|
end
|
1507
1525
|
|
1508
|
-
# Creates a thing record in the registry.
|
1509
|
-
# times using the same thing name and configuration, the call will
|
1510
|
-
# succeed. If this call is made with the same thing name but different
|
1511
|
-
# configuration a `ResourceAlreadyExistsException` is thrown.
|
1526
|
+
# Creates a thing record in the registry.
|
1512
1527
|
#
|
1513
1528
|
# <note markdown="1"> This is a control plane operation. See [Authorization][1] for
|
1514
1529
|
# information about authorizing control plane actions.
|
@@ -5743,7 +5758,7 @@ module Aws::IoT
|
|
5743
5758
|
# registered.
|
5744
5759
|
#
|
5745
5760
|
# @option params [Boolean] :set_as_active
|
5746
|
-
# A boolean value that specifies if the certificate is set to active.
|
5761
|
+
# A boolean value that specifies if the CA certificate is set to active.
|
5747
5762
|
#
|
5748
5763
|
# @option params [String] :status
|
5749
5764
|
# The status of the register certificate request.
|
@@ -7514,7 +7529,7 @@ module Aws::IoT
|
|
7514
7529
|
params: params,
|
7515
7530
|
config: config)
|
7516
7531
|
context[:gem_name] = 'aws-sdk-iot'
|
7517
|
-
context[:gem_version] = '1.
|
7532
|
+
context[:gem_version] = '1.26.0'
|
7518
7533
|
Seahorse::Client::Request.new(handlers, context)
|
7519
7534
|
end
|
7520
7535
|
|
@@ -1239,6 +1239,7 @@ module Aws::IoT
|
|
1239
1239
|
CreateOTAUpdateRequest.add_member(:files, Shapes::ShapeRef.new(shape: OTAUpdateFiles, required: true, location_name: "files"))
|
1240
1240
|
CreateOTAUpdateRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
1241
1241
|
CreateOTAUpdateRequest.add_member(:additional_parameters, Shapes::ShapeRef.new(shape: AdditionalParameterMap, location_name: "additionalParameters"))
|
1242
|
+
CreateOTAUpdateRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
1242
1243
|
CreateOTAUpdateRequest.struct_class = Types::CreateOTAUpdateRequest
|
1243
1244
|
|
1244
1245
|
CreateOTAUpdateResponse.add_member(:ota_update_id, Shapes::ShapeRef.new(shape: OTAUpdateId, location_name: "otaUpdateId"))
|
@@ -1305,6 +1306,7 @@ module Aws::IoT
|
|
1305
1306
|
CreateStreamRequest.add_member(:description, Shapes::ShapeRef.new(shape: StreamDescription, location_name: "description"))
|
1306
1307
|
CreateStreamRequest.add_member(:files, Shapes::ShapeRef.new(shape: StreamFiles, required: true, location_name: "files"))
|
1307
1308
|
CreateStreamRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
1309
|
+
CreateStreamRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
1308
1310
|
CreateStreamRequest.struct_class = Types::CreateStreamRequest
|
1309
1311
|
|
1310
1312
|
CreateStreamResponse.add_member(:stream_id, Shapes::ShapeRef.new(shape: StreamId, location_name: "streamId"))
|
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -2187,6 +2187,12 @@ module Aws::IoT
|
|
2187
2187
|
# additional_parameters: {
|
2188
2188
|
# "AttributeKey" => "Value",
|
2189
2189
|
# },
|
2190
|
+
# tags: [
|
2191
|
+
# {
|
2192
|
+
# key: "TagKey",
|
2193
|
+
# value: "TagValue",
|
2194
|
+
# },
|
2195
|
+
# ],
|
2190
2196
|
# }
|
2191
2197
|
#
|
2192
2198
|
# @!attribute [rw] ota_update_id
|
@@ -2228,6 +2234,10 @@ module Aws::IoT
|
|
2228
2234
|
# pairs.
|
2229
2235
|
# @return [Hash<String,String>]
|
2230
2236
|
#
|
2237
|
+
# @!attribute [rw] tags
|
2238
|
+
# Metadata which can be used to manage updates.
|
2239
|
+
# @return [Array<Types::Tag>]
|
2240
|
+
#
|
2231
2241
|
class CreateOTAUpdateRequest < Struct.new(
|
2232
2242
|
:ota_update_id,
|
2233
2243
|
:description,
|
@@ -2236,7 +2246,8 @@ module Aws::IoT
|
|
2236
2246
|
:aws_job_executions_rollout_config,
|
2237
2247
|
:files,
|
2238
2248
|
:role_arn,
|
2239
|
-
:additional_parameters
|
2249
|
+
:additional_parameters,
|
2250
|
+
:tags)
|
2240
2251
|
include Aws::Structure
|
2241
2252
|
end
|
2242
2253
|
|
@@ -2609,6 +2620,12 @@ module Aws::IoT
|
|
2609
2620
|
# },
|
2610
2621
|
# ],
|
2611
2622
|
# role_arn: "RoleArn", # required
|
2623
|
+
# tags: [
|
2624
|
+
# {
|
2625
|
+
# key: "TagKey",
|
2626
|
+
# value: "TagValue",
|
2627
|
+
# },
|
2628
|
+
# ],
|
2612
2629
|
# }
|
2613
2630
|
#
|
2614
2631
|
# @!attribute [rw] stream_id
|
@@ -2628,11 +2645,16 @@ module Aws::IoT
|
|
2628
2645
|
# your S3 files.
|
2629
2646
|
# @return [String]
|
2630
2647
|
#
|
2648
|
+
# @!attribute [rw] tags
|
2649
|
+
# Metadata which can be used to manage streams.
|
2650
|
+
# @return [Array<Types::Tag>]
|
2651
|
+
#
|
2631
2652
|
class CreateStreamRequest < Struct.new(
|
2632
2653
|
:stream_id,
|
2633
2654
|
:description,
|
2634
2655
|
:files,
|
2635
|
-
:role_arn
|
2656
|
+
:role_arn,
|
2657
|
+
:tags)
|
2636
2658
|
include Aws::Structure
|
2637
2659
|
end
|
2638
2660
|
|
@@ -8436,7 +8458,8 @@ module Aws::IoT
|
|
8436
8458
|
# @return [String]
|
8437
8459
|
#
|
8438
8460
|
# @!attribute [rw] set_as_active
|
8439
|
-
# A boolean value that specifies if the certificate is set to
|
8461
|
+
# A boolean value that specifies if the CA certificate is set to
|
8462
|
+
# active.
|
8440
8463
|
# @return [Boolean]
|
8441
8464
|
#
|
8442
8465
|
# @!attribute [rw] status
|
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.26.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-
|
11
|
+
date: 2019-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.47.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.47.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.1'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.1'
|
47
47
|
description: Official AWS Ruby gem for AWS IoT. This gem is part of the AWS SDK for
|
48
48
|
Ruby.
|
49
49
|
email:
|