aws-sdk-iot 1.83.0 → 1.86.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iot/client.rb +9 -5
- data/lib/aws-sdk-iot/types.rb +4 -4
- data/lib/aws-sdk-iot.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b81c65bb60ef51ada6ff4c72b1e87be23eddc062b15a58ef4804075e87c2547c
|
4
|
+
data.tar.gz: 2eef27557744bd0203a32d01d6f119d99e018272e3352dacbaa457053631e695
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 837ce1c857bd86d66fb16a0179649988f72706eb2f889ac3fc0aeb2954c3c4e0e9c6ec1de0381a7d5898f4bb19da52e1468b028773bd422a3c3e847e56211fdb
|
7
|
+
data.tar.gz: c6b486e14962f46ffb095c572a43b31f32dec7abf4db1382b90d1763a32798870f6ee724ead74ddd7ca778378a79aed98990b5068366cf496d500a57b7fe4e51
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.86.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.85.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.84.0 (2022-02-02)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds support for configuring AWS IoT logging level per client ID, source IP, or principal ID.
|
18
|
+
|
4
19
|
1.83.0 (2022-01-05)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.86.0
|
data/lib/aws-sdk-iot/client.rb
CHANGED
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::IoT
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -4526,7 +4530,7 @@ module Aws::IoT
|
|
4526
4530
|
# @example Request syntax with placeholder values
|
4527
4531
|
#
|
4528
4532
|
# resp = client.delete_v2_logging_level({
|
4529
|
-
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP
|
4533
|
+
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
4530
4534
|
# target_name: "LogTargetName", # required
|
4531
4535
|
# })
|
4532
4536
|
#
|
@@ -10369,7 +10373,7 @@ module Aws::IoT
|
|
10369
10373
|
# @example Request syntax with placeholder values
|
10370
10374
|
#
|
10371
10375
|
# resp = client.list_v2_logging_levels({
|
10372
|
-
# target_type: "DEFAULT", # accepts DEFAULT, THING_GROUP
|
10376
|
+
# target_type: "DEFAULT", # accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
10373
10377
|
# next_token: "NextToken",
|
10374
10378
|
# max_results: 1,
|
10375
10379
|
# })
|
@@ -10377,7 +10381,7 @@ module Aws::IoT
|
|
10377
10381
|
# @example Response structure
|
10378
10382
|
#
|
10379
10383
|
# resp.log_target_configurations #=> Array
|
10380
|
-
# resp.log_target_configurations[0].log_target.target_type #=> String, one of "DEFAULT", "THING_GROUP"
|
10384
|
+
# resp.log_target_configurations[0].log_target.target_type #=> String, one of "DEFAULT", "THING_GROUP", "CLIENT_ID", "SOURCE_IP", "PRINCIPAL_ID"
|
10381
10385
|
# resp.log_target_configurations[0].log_target.target_name #=> String
|
10382
10386
|
# resp.log_target_configurations[0].log_level #=> String, one of "DEBUG", "INFO", "ERROR", "WARN", "DISABLED"
|
10383
10387
|
# resp.next_token #=> String
|
@@ -11467,7 +11471,7 @@ module Aws::IoT
|
|
11467
11471
|
#
|
11468
11472
|
# resp = client.set_v2_logging_level({
|
11469
11473
|
# log_target: { # required
|
11470
|
-
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP
|
11474
|
+
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
11471
11475
|
# target_name: "LogTargetName",
|
11472
11476
|
# },
|
11473
11477
|
# log_level: "DEBUG", # required, accepts DEBUG, INFO, ERROR, WARN, DISABLED
|
@@ -13581,7 +13585,7 @@ module Aws::IoT
|
|
13581
13585
|
params: params,
|
13582
13586
|
config: config)
|
13583
13587
|
context[:gem_name] = 'aws-sdk-iot'
|
13584
|
-
context[:gem_version] = '1.
|
13588
|
+
context[:gem_version] = '1.86.0'
|
13585
13589
|
Seahorse::Client::Request.new(handlers, context)
|
13586
13590
|
end
|
13587
13591
|
|
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -6302,7 +6302,7 @@ module Aws::IoT
|
|
6302
6302
|
# data as a hash:
|
6303
6303
|
#
|
6304
6304
|
# {
|
6305
|
-
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP
|
6305
|
+
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
6306
6306
|
# target_name: "LogTargetName", # required
|
6307
6307
|
# }
|
6308
6308
|
#
|
@@ -13512,7 +13512,7 @@ module Aws::IoT
|
|
13512
13512
|
# data as a hash:
|
13513
13513
|
#
|
13514
13514
|
# {
|
13515
|
-
# target_type: "DEFAULT", # accepts DEFAULT, THING_GROUP
|
13515
|
+
# target_type: "DEFAULT", # accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
13516
13516
|
# next_token: "NextToken",
|
13517
13517
|
# max_results: 1,
|
13518
13518
|
# }
|
@@ -13647,7 +13647,7 @@ module Aws::IoT
|
|
13647
13647
|
# data as a hash:
|
13648
13648
|
#
|
13649
13649
|
# {
|
13650
|
-
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP
|
13650
|
+
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
13651
13651
|
# target_name: "LogTargetName",
|
13652
13652
|
# }
|
13653
13653
|
#
|
@@ -16134,7 +16134,7 @@ module Aws::IoT
|
|
16134
16134
|
#
|
16135
16135
|
# {
|
16136
16136
|
# log_target: { # required
|
16137
|
-
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP
|
16137
|
+
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
16138
16138
|
# target_name: "LogTargetName",
|
16139
16139
|
# },
|
16140
16140
|
# log_level: "DEBUG", # required, accepts DEBUG, INFO, ERROR, WARN, DISABLED
|
data/lib/aws-sdk-iot.rb
CHANGED
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.86.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: 2022-
|
11
|
+
date: 2022-02-24 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.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|