aws-sdk-iot 1.109.0 → 1.111.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iot/client.rb +66 -32
- data/lib/aws-sdk-iot/client_api.rb +11 -0
- data/lib/aws-sdk-iot/types.rb +80 -28
- 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: cdc5d391636eb0f1d6b0d3f7a4468b07307cbf6666ca43dc850f14a865c3dc68
|
4
|
+
data.tar.gz: 6bd773712d0c5b31215103f45cb81ce7c8311559dc9d2ba833d2ca8e2941997a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7c6f9c007320877cc142e5b2c284ed9cdda124b28e69c245af745596087091bb1437a4cba8c9c58c2282ace1cd6335b92a80d38f58380b26a9e0e1a378393ea
|
7
|
+
data.tar.gz: e1a755e547ee6eb890a426b4c5e2763cac437818d218e097f8c3a5c9cfc4bb8efa1fd9f09491539fd2fc0c45ab584a2a6c9428cbfbb6a79710b45ef7c0c1167f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2023-09-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for IoT Rules Engine Kafka Action Headers
|
8
|
+
|
9
|
+
1.110.0 (2023-07-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.109.0 (2023-07-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|
data/lib/aws-sdk-iot/client.rb
CHANGED
@@ -216,6 +216,10 @@ module Aws::IoT
|
|
216
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
217
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
218
218
|
#
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
221
|
+
# variables and the shared configuration file.
|
222
|
+
#
|
219
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
220
224
|
# The log formatter.
|
221
225
|
#
|
@@ -1221,9 +1225,9 @@ module Aws::IoT
|
|
1221
1225
|
# action.
|
1222
1226
|
#
|
1223
1227
|
# <note markdown="1"> The CSR must include a public key that is either an RSA key with a
|
1224
|
-
# length of at least 2048 bits or an ECC key from NIST P-256
|
1225
|
-
# P-384 curves. For supported certificates, consult [
|
1226
|
-
# signing algorithms supported by IoT][2].
|
1228
|
+
# length of at least 2048 bits or an ECC key from NIST P-256, NIST
|
1229
|
+
# P-384, or NIST P-521 curves. For supported certificates, consult [
|
1230
|
+
# Certificate signing algorithms supported by IoT][2].
|
1227
1231
|
#
|
1228
1232
|
# </note>
|
1229
1233
|
#
|
@@ -1932,20 +1936,18 @@ module Aws::IoT
|
|
1932
1936
|
# The ARN of the job to use as the basis for the job template.
|
1933
1937
|
#
|
1934
1938
|
# @option params [String] :document_source
|
1935
|
-
# An S3 link
|
1936
|
-
# don't specify a value for
|
1939
|
+
# An S3 link, or S3 object URL, to the job document. The link is an
|
1940
|
+
# Amazon S3 object URL and is required if you don't specify a value for
|
1941
|
+
# `document`.
|
1937
1942
|
#
|
1938
|
-
#
|
1939
|
-
#
|
1943
|
+
# For example, `--document-source
|
1944
|
+
# https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0`
|
1940
1945
|
#
|
1941
|
-
#
|
1946
|
+
# For more information, see [Methods for accessing a bucket][1].
|
1942
1947
|
#
|
1943
|
-
# `$\{aws:iot:s3-presigned-url:https://s3.amazonaws.com/bucket/key\}`
|
1944
1948
|
#
|
1945
|
-
# where *bucket* is your bucket name and *key* is the object in the
|
1946
|
-
# bucket to which you are linking.
|
1947
1949
|
#
|
1948
|
-
#
|
1950
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html
|
1949
1951
|
#
|
1950
1952
|
# @option params [String] :document
|
1951
1953
|
# The job document. Required if you don't specify a value for
|
@@ -2244,7 +2246,8 @@ module Aws::IoT
|
|
2244
2246
|
# create an OTA update job.
|
2245
2247
|
#
|
2246
2248
|
# @option params [Hash<String,String>] :additional_parameters
|
2247
|
-
# A list of additional OTA update parameters which are name-value
|
2249
|
+
# A list of additional OTA update parameters, which are name-value
|
2250
|
+
# pairs. They won't be sent to devices as a part of the Job document.
|
2248
2251
|
#
|
2249
2252
|
# @option params [Array<Types::Tag>] :tags
|
2250
2253
|
# Metadata which can be used to manage updates.
|
@@ -2378,7 +2381,7 @@ module Aws::IoT
|
|
2378
2381
|
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
2379
2382
|
#
|
2380
2383
|
# @option params [required, String] :package_name
|
2381
|
-
# The name of the new package.
|
2384
|
+
# The name of the new software package.
|
2382
2385
|
#
|
2383
2386
|
# @option params [String] :description
|
2384
2387
|
# A summary of the package being created. This can be used to outline
|
@@ -2435,7 +2438,7 @@ module Aws::IoT
|
|
2435
2438
|
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
2436
2439
|
#
|
2437
2440
|
# @option params [required, String] :package_name
|
2438
|
-
# The name of the associated package.
|
2441
|
+
# The name of the associated software package.
|
2439
2442
|
#
|
2440
2443
|
# @option params [required, String] :version_name
|
2441
2444
|
# The name of the new package version.
|
@@ -3554,6 +3557,12 @@ module Aws::IoT
|
|
3554
3557
|
# client_properties: { # required
|
3555
3558
|
# "String" => "String",
|
3556
3559
|
# },
|
3560
|
+
# headers: [
|
3561
|
+
# {
|
3562
|
+
# key: "KafkaHeaderKey", # required
|
3563
|
+
# value: "KafkaHeaderValue", # required
|
3564
|
+
# },
|
3565
|
+
# ],
|
3557
3566
|
# },
|
3558
3567
|
# open_search: {
|
3559
3568
|
# role_arn: "AwsArn", # required
|
@@ -3757,6 +3766,12 @@ module Aws::IoT
|
|
3757
3766
|
# client_properties: { # required
|
3758
3767
|
# "String" => "String",
|
3759
3768
|
# },
|
3769
|
+
# headers: [
|
3770
|
+
# {
|
3771
|
+
# key: "KafkaHeaderKey", # required
|
3772
|
+
# value: "KafkaHeaderValue", # required
|
3773
|
+
# },
|
3774
|
+
# ],
|
3760
3775
|
# },
|
3761
3776
|
# open_search: {
|
3762
3777
|
# role_arn: "AwsArn", # required
|
@@ -4432,7 +4447,7 @@ module Aws::IoT
|
|
4432
4447
|
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
4433
4448
|
#
|
4434
4449
|
# @option params [required, String] :package_name
|
4435
|
-
# The name of the target package.
|
4450
|
+
# The name of the target software package.
|
4436
4451
|
#
|
4437
4452
|
# @option params [String] :client_token
|
4438
4453
|
# A unique case-sensitive identifier that you can provide to ensure the
|
@@ -4461,11 +4476,11 @@ module Aws::IoT
|
|
4461
4476
|
# Deletes a specific version from a software package.
|
4462
4477
|
#
|
4463
4478
|
# **Note:** If a package version is designated as default, you must
|
4464
|
-
# remove the designation from the package using the
|
4465
|
-
# action.
|
4479
|
+
# remove the designation from the software package using the
|
4480
|
+
# UpdatePackage action.
|
4466
4481
|
#
|
4467
4482
|
# @option params [required, String] :package_name
|
4468
|
-
# The name of the associated package.
|
4483
|
+
# The name of the associated software package.
|
4469
4484
|
#
|
4470
4485
|
# @option params [required, String] :version_name
|
4471
4486
|
# The name of the target package version.
|
@@ -4926,7 +4941,7 @@ module Aws::IoT
|
|
4926
4941
|
# @example Request syntax with placeholder values
|
4927
4942
|
#
|
4928
4943
|
# resp = client.delete_v2_logging_level({
|
4929
|
-
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
4944
|
+
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID, EVENT_TYPE, DEVICE_DEFENDER
|
4930
4945
|
# target_name: "LogTargetName", # required
|
4931
4946
|
# })
|
4932
4947
|
#
|
@@ -5723,7 +5738,8 @@ module Aws::IoT
|
|
5723
5738
|
#
|
5724
5739
|
# We strongly recommend that customers use the newer `iot:Data-ATS`
|
5725
5740
|
# endpoint type to avoid issues related to the widespread distrust of
|
5726
|
-
# Symantec certificate authorities.
|
5741
|
+
# Symantec certificate authorities. ATS Signed Certificates are more
|
5742
|
+
# secure and are trusted by most popular browsers.
|
5727
5743
|
#
|
5728
5744
|
# @return [Types::DescribeEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5729
5745
|
#
|
@@ -7267,7 +7283,7 @@ module Aws::IoT
|
|
7267
7283
|
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
7268
7284
|
#
|
7269
7285
|
# @option params [required, String] :package_name
|
7270
|
-
# The name of the target package.
|
7286
|
+
# The name of the target software package.
|
7271
7287
|
#
|
7272
7288
|
# @return [Types::GetPackageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7273
7289
|
#
|
@@ -7750,6 +7766,9 @@ module Aws::IoT
|
|
7750
7766
|
# resp.rule.actions[0].kafka.partition #=> String
|
7751
7767
|
# resp.rule.actions[0].kafka.client_properties #=> Hash
|
7752
7768
|
# resp.rule.actions[0].kafka.client_properties["String"] #=> String
|
7769
|
+
# resp.rule.actions[0].kafka.headers #=> Array
|
7770
|
+
# resp.rule.actions[0].kafka.headers[0].key #=> String
|
7771
|
+
# resp.rule.actions[0].kafka.headers[0].value #=> String
|
7753
7772
|
# resp.rule.actions[0].open_search.role_arn #=> String
|
7754
7773
|
# resp.rule.actions[0].open_search.endpoint #=> String
|
7755
7774
|
# resp.rule.actions[0].open_search.index #=> String
|
@@ -7872,6 +7891,9 @@ module Aws::IoT
|
|
7872
7891
|
# resp.rule.error_action.kafka.partition #=> String
|
7873
7892
|
# resp.rule.error_action.kafka.client_properties #=> Hash
|
7874
7893
|
# resp.rule.error_action.kafka.client_properties["String"] #=> String
|
7894
|
+
# resp.rule.error_action.kafka.headers #=> Array
|
7895
|
+
# resp.rule.error_action.kafka.headers[0].key #=> String
|
7896
|
+
# resp.rule.error_action.kafka.headers[0].value #=> String
|
7875
7897
|
# resp.rule.error_action.open_search.role_arn #=> String
|
7876
7898
|
# resp.rule.error_action.open_search.endpoint #=> String
|
7877
7899
|
# resp.rule.error_action.open_search.index #=> String
|
@@ -9729,7 +9751,7 @@ module Aws::IoT
|
|
9729
9751
|
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
9730
9752
|
#
|
9731
9753
|
# @option params [required, String] :package_name
|
9732
|
-
# The name of the target package.
|
9754
|
+
# The name of the target software package.
|
9733
9755
|
#
|
9734
9756
|
# @option params [String] :status
|
9735
9757
|
# The status of the package version. For more information, see [Package
|
@@ -11264,7 +11286,7 @@ module Aws::IoT
|
|
11264
11286
|
# @example Request syntax with placeholder values
|
11265
11287
|
#
|
11266
11288
|
# resp = client.list_v2_logging_levels({
|
11267
|
-
# target_type: "DEFAULT", # accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
11289
|
+
# target_type: "DEFAULT", # accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID, EVENT_TYPE, DEVICE_DEFENDER
|
11268
11290
|
# next_token: "NextToken",
|
11269
11291
|
# max_results: 1,
|
11270
11292
|
# })
|
@@ -11272,7 +11294,7 @@ module Aws::IoT
|
|
11272
11294
|
# @example Response structure
|
11273
11295
|
#
|
11274
11296
|
# resp.log_target_configurations #=> Array
|
11275
|
-
# resp.log_target_configurations[0].log_target.target_type #=> String, one of "DEFAULT", "THING_GROUP", "CLIENT_ID", "SOURCE_IP", "PRINCIPAL_ID"
|
11297
|
+
# resp.log_target_configurations[0].log_target.target_type #=> String, one of "DEFAULT", "THING_GROUP", "CLIENT_ID", "SOURCE_IP", "PRINCIPAL_ID", "EVENT_TYPE", "DEVICE_DEFENDER"
|
11276
11298
|
# resp.log_target_configurations[0].log_target.target_name #=> String
|
11277
11299
|
# resp.log_target_configurations[0].log_level #=> String, one of "DEBUG", "INFO", "ERROR", "WARN", "DISABLED"
|
11278
11300
|
# resp.next_token #=> String
|
@@ -12009,6 +12031,12 @@ module Aws::IoT
|
|
12009
12031
|
# client_properties: { # required
|
12010
12032
|
# "String" => "String",
|
12011
12033
|
# },
|
12034
|
+
# headers: [
|
12035
|
+
# {
|
12036
|
+
# key: "KafkaHeaderKey", # required
|
12037
|
+
# value: "KafkaHeaderValue", # required
|
12038
|
+
# },
|
12039
|
+
# ],
|
12012
12040
|
# },
|
12013
12041
|
# open_search: {
|
12014
12042
|
# role_arn: "AwsArn", # required
|
@@ -12212,6 +12240,12 @@ module Aws::IoT
|
|
12212
12240
|
# client_properties: { # required
|
12213
12241
|
# "String" => "String",
|
12214
12242
|
# },
|
12243
|
+
# headers: [
|
12244
|
+
# {
|
12245
|
+
# key: "KafkaHeaderKey", # required
|
12246
|
+
# value: "KafkaHeaderValue", # required
|
12247
|
+
# },
|
12248
|
+
# ],
|
12215
12249
|
# },
|
12216
12250
|
# open_search: {
|
12217
12251
|
# role_arn: "AwsArn", # required
|
@@ -12439,7 +12473,7 @@ module Aws::IoT
|
|
12439
12473
|
#
|
12440
12474
|
# resp = client.set_v2_logging_level({
|
12441
12475
|
# log_target: { # required
|
12442
|
-
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID
|
12476
|
+
# target_type: "DEFAULT", # required, accepts DEFAULT, THING_GROUP, CLIENT_ID, SOURCE_IP, PRINCIPAL_ID, EVENT_TYPE, DEVICE_DEFENDER
|
12443
12477
|
# target_name: "LogTargetName",
|
12444
12478
|
# },
|
12445
12479
|
# log_level: "DEBUG", # required, accepts DEBUG, INFO, ERROR, WARN, DISABLED
|
@@ -13882,7 +13916,7 @@ module Aws::IoT
|
|
13882
13916
|
req.send_request(options)
|
13883
13917
|
end
|
13884
13918
|
|
13885
|
-
# Updates the supported fields for a specific package.
|
13919
|
+
# Updates the supported fields for a specific software package.
|
13886
13920
|
#
|
13887
13921
|
# Requires permission to access the [UpdatePackage][1] and
|
13888
13922
|
# [GetIndexingConfiguration][1] actions.
|
@@ -13892,7 +13926,7 @@ module Aws::IoT
|
|
13892
13926
|
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
13893
13927
|
#
|
13894
13928
|
# @option params [required, String] :package_name
|
13895
|
-
# The name of the target package.
|
13929
|
+
# The name of the target software package.
|
13896
13930
|
#
|
13897
13931
|
# @option params [String] :description
|
13898
13932
|
# The package description.
|
@@ -13938,7 +13972,7 @@ module Aws::IoT
|
|
13938
13972
|
req.send_request(options)
|
13939
13973
|
end
|
13940
13974
|
|
13941
|
-
# Updates the package configuration.
|
13975
|
+
# Updates the software package configuration.
|
13942
13976
|
#
|
13943
13977
|
# Requires permission to access the [UpdatePackageConfiguration][1] and
|
13944
13978
|
# [iam:PassRole][2] actions.
|
@@ -13999,8 +14033,8 @@ module Aws::IoT
|
|
13999
14033
|
#
|
14000
14034
|
# @option params [Hash<String,String>] :attributes
|
14001
14035
|
# Metadata that can be used to define a package version’s configuration.
|
14002
|
-
# For example, the S3 file location, configuration options that
|
14003
|
-
# being sent to the device or fleet.
|
14036
|
+
# For example, the Amazon S3 file location, configuration options that
|
14037
|
+
# are being sent to the device or fleet.
|
14004
14038
|
#
|
14005
14039
|
# **Note:** Attributes can be updated only when the package version is
|
14006
14040
|
# in a draft state.
|
@@ -14741,7 +14775,7 @@ module Aws::IoT
|
|
14741
14775
|
params: params,
|
14742
14776
|
config: config)
|
14743
14777
|
context[:gem_name] = 'aws-sdk-iot'
|
14744
|
-
context[:gem_version] = '1.
|
14778
|
+
context[:gem_version] = '1.111.0'
|
14745
14779
|
Seahorse::Client::Request.new(handlers, context)
|
14746
14780
|
end
|
14747
14781
|
|
@@ -670,6 +670,10 @@ module Aws::IoT
|
|
670
670
|
JobTemplateSummaryList = Shapes::ListShape.new(name: 'JobTemplateSummaryList')
|
671
671
|
JsonDocument = Shapes::StringShape.new(name: 'JsonDocument')
|
672
672
|
KafkaAction = Shapes::StructureShape.new(name: 'KafkaAction')
|
673
|
+
KafkaActionHeader = Shapes::StructureShape.new(name: 'KafkaActionHeader')
|
674
|
+
KafkaHeaderKey = Shapes::StringShape.new(name: 'KafkaHeaderKey')
|
675
|
+
KafkaHeaderValue = Shapes::StringShape.new(name: 'KafkaHeaderValue')
|
676
|
+
KafkaHeaders = Shapes::ListShape.new(name: 'KafkaHeaders')
|
673
677
|
Key = Shapes::StringShape.new(name: 'Key')
|
674
678
|
KeyName = Shapes::StringShape.new(name: 'KeyName')
|
675
679
|
KeyPair = Shapes::StructureShape.new(name: 'KeyPair')
|
@@ -3288,8 +3292,15 @@ module Aws::IoT
|
|
3288
3292
|
KafkaAction.add_member(:key, Shapes::ShapeRef.new(shape: String, location_name: "key"))
|
3289
3293
|
KafkaAction.add_member(:partition, Shapes::ShapeRef.new(shape: String, location_name: "partition"))
|
3290
3294
|
KafkaAction.add_member(:client_properties, Shapes::ShapeRef.new(shape: ClientProperties, required: true, location_name: "clientProperties"))
|
3295
|
+
KafkaAction.add_member(:headers, Shapes::ShapeRef.new(shape: KafkaHeaders, location_name: "headers"))
|
3291
3296
|
KafkaAction.struct_class = Types::KafkaAction
|
3292
3297
|
|
3298
|
+
KafkaActionHeader.add_member(:key, Shapes::ShapeRef.new(shape: KafkaHeaderKey, required: true, location_name: "key"))
|
3299
|
+
KafkaActionHeader.add_member(:value, Shapes::ShapeRef.new(shape: KafkaHeaderValue, required: true, location_name: "value"))
|
3300
|
+
KafkaActionHeader.struct_class = Types::KafkaActionHeader
|
3301
|
+
|
3302
|
+
KafkaHeaders.member = Shapes::ShapeRef.new(shape: KafkaActionHeader)
|
3303
|
+
|
3293
3304
|
KeyPair.add_member(:public_key, Shapes::ShapeRef.new(shape: PublicKey, location_name: "PublicKey"))
|
3294
3305
|
KeyPair.add_member(:private_key, Shapes::ShapeRef.new(shape: PrivateKey, location_name: "PrivateKey"))
|
3295
3306
|
KeyPair.struct_class = Types::KeyPair
|
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -1288,6 +1288,12 @@ module Aws::IoT
|
|
1288
1288
|
# @!attribute [rw] criteria
|
1289
1289
|
# The criteria that determine if a device is behaving normally in
|
1290
1290
|
# regard to the `metric`.
|
1291
|
+
#
|
1292
|
+
# <note markdown="1"> In the IoT console, you can choose to be sent an alert through
|
1293
|
+
# Amazon SNS when IoT Device Defender detects that a device is
|
1294
|
+
# behaving anomalously.
|
1295
|
+
#
|
1296
|
+
# </note>
|
1291
1297
|
# @return [Types::BehaviorCriteria]
|
1292
1298
|
#
|
1293
1299
|
# @!attribute [rw] suppress_alerts
|
@@ -2879,20 +2885,18 @@ module Aws::IoT
|
|
2879
2885
|
# @return [String]
|
2880
2886
|
#
|
2881
2887
|
# @!attribute [rw] document_source
|
2882
|
-
# An S3 link to the job document
|
2883
|
-
# you don't specify a value
|
2888
|
+
# An S3 link, or S3 object URL, to the job document. The link is an
|
2889
|
+
# Amazon S3 object URL and is required if you don't specify a value
|
2890
|
+
# for `document`.
|
2884
2891
|
#
|
2885
|
-
#
|
2886
|
-
#
|
2892
|
+
# For example, `--document-source
|
2893
|
+
# https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0`
|
2887
2894
|
#
|
2888
|
-
#
|
2895
|
+
# For more information, see [Methods for accessing a bucket][1].
|
2889
2896
|
#
|
2890
|
-
# `$\{aws:iot:s3-presigned-url:https://s3.amazonaws.com/bucket/key\}`
|
2891
2897
|
#
|
2892
|
-
# where *bucket* is your bucket name and *key* is the object in the
|
2893
|
-
# bucket to which you are linking.
|
2894
2898
|
#
|
2895
|
-
#
|
2899
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html
|
2896
2900
|
# @return [String]
|
2897
2901
|
#
|
2898
2902
|
# @!attribute [rw] document
|
@@ -3127,8 +3131,8 @@ module Aws::IoT
|
|
3127
3131
|
# @return [String]
|
3128
3132
|
#
|
3129
3133
|
# @!attribute [rw] additional_parameters
|
3130
|
-
# A list of additional OTA update parameters which are name-value
|
3131
|
-
# pairs.
|
3134
|
+
# A list of additional OTA update parameters, which are name-value
|
3135
|
+
# pairs. They won't be sent to devices as a part of the Job document.
|
3132
3136
|
# @return [Hash<String,String>]
|
3133
3137
|
#
|
3134
3138
|
# @!attribute [rw] tags
|
@@ -3184,7 +3188,7 @@ module Aws::IoT
|
|
3184
3188
|
end
|
3185
3189
|
|
3186
3190
|
# @!attribute [rw] package_name
|
3187
|
-
# The name of the new package.
|
3191
|
+
# The name of the new software package.
|
3188
3192
|
# @return [String]
|
3189
3193
|
#
|
3190
3194
|
# @!attribute [rw] description
|
@@ -3215,7 +3219,7 @@ module Aws::IoT
|
|
3215
3219
|
end
|
3216
3220
|
|
3217
3221
|
# @!attribute [rw] package_name
|
3218
|
-
# The name of the package.
|
3222
|
+
# The name of the software package.
|
3219
3223
|
# @return [String]
|
3220
3224
|
#
|
3221
3225
|
# @!attribute [rw] package_arn
|
@@ -3235,7 +3239,7 @@ module Aws::IoT
|
|
3235
3239
|
end
|
3236
3240
|
|
3237
3241
|
# @!attribute [rw] package_name
|
3238
|
-
# The name of the associated package.
|
3242
|
+
# The name of the associated software package.
|
3239
3243
|
# @return [String]
|
3240
3244
|
#
|
3241
3245
|
# @!attribute [rw] version_name
|
@@ -3285,7 +3289,7 @@ module Aws::IoT
|
|
3285
3289
|
# @return [String]
|
3286
3290
|
#
|
3287
3291
|
# @!attribute [rw] package_name
|
3288
|
-
# The name of the associated package.
|
3292
|
+
# The name of the associated software package.
|
3289
3293
|
# @return [String]
|
3290
3294
|
#
|
3291
3295
|
# @!attribute [rw] version_name
|
@@ -4423,7 +4427,7 @@ module Aws::IoT
|
|
4423
4427
|
class DeleteOTAUpdateResponse < Aws::EmptyStructure; end
|
4424
4428
|
|
4425
4429
|
# @!attribute [rw] package_name
|
4426
|
-
# The name of the target package.
|
4430
|
+
# The name of the target software package.
|
4427
4431
|
# @return [String]
|
4428
4432
|
#
|
4429
4433
|
# @!attribute [rw] client_token
|
@@ -4445,7 +4449,7 @@ module Aws::IoT
|
|
4445
4449
|
class DeletePackageResponse < Aws::EmptyStructure; end
|
4446
4450
|
|
4447
4451
|
# @!attribute [rw] package_name
|
4448
|
-
# The name of the associated package.
|
4452
|
+
# The name of the associated software package.
|
4449
4453
|
# @return [String]
|
4450
4454
|
#
|
4451
4455
|
# @!attribute [rw] version_name
|
@@ -5287,7 +5291,8 @@ module Aws::IoT
|
|
5287
5291
|
#
|
5288
5292
|
# We strongly recommend that customers use the newer `iot:Data-ATS`
|
5289
5293
|
# endpoint type to avoid issues related to the widespread distrust of
|
5290
|
-
# Symantec certificate authorities.
|
5294
|
+
# Symantec certificate authorities. ATS Signed Certificates are more
|
5295
|
+
# secure and are trusted by most popular browsers.
|
5291
5296
|
# @return [String]
|
5292
5297
|
#
|
5293
5298
|
class DescribeEndpointRequest < Struct.new(
|
@@ -7232,7 +7237,7 @@ module Aws::IoT
|
|
7232
7237
|
end
|
7233
7238
|
|
7234
7239
|
# @!attribute [rw] package_name
|
7235
|
-
# The name of the target package.
|
7240
|
+
# The name of the target software package.
|
7236
7241
|
# @return [String]
|
7237
7242
|
#
|
7238
7243
|
class GetPackageRequest < Struct.new(
|
@@ -7242,7 +7247,7 @@ module Aws::IoT
|
|
7242
7247
|
end
|
7243
7248
|
|
7244
7249
|
# @!attribute [rw] package_name
|
7245
|
-
# The name of the package.
|
7250
|
+
# The name of the software package.
|
7246
7251
|
# @return [String]
|
7247
7252
|
#
|
7248
7253
|
# @!attribute [rw] package_arn
|
@@ -7296,7 +7301,7 @@ module Aws::IoT
|
|
7296
7301
|
# @return [String]
|
7297
7302
|
#
|
7298
7303
|
# @!attribute [rw] package_name
|
7299
|
-
# The name of the package.
|
7304
|
+
# The name of the software package.
|
7300
7305
|
# @return [String]
|
7301
7306
|
#
|
7302
7307
|
# @!attribute [rw] version_name
|
@@ -8612,12 +8617,44 @@ module Aws::IoT
|
|
8612
8617
|
# Properties of the Apache Kafka producer client.
|
8613
8618
|
# @return [Hash<String,String>]
|
8614
8619
|
#
|
8620
|
+
# @!attribute [rw] headers
|
8621
|
+
# The list of Kafka headers that you specify.
|
8622
|
+
# @return [Array<Types::KafkaActionHeader>]
|
8623
|
+
#
|
8615
8624
|
class KafkaAction < Struct.new(
|
8616
8625
|
:destination_arn,
|
8617
8626
|
:topic,
|
8618
8627
|
:key,
|
8619
8628
|
:partition,
|
8620
|
-
:client_properties
|
8629
|
+
:client_properties,
|
8630
|
+
:headers)
|
8631
|
+
SENSITIVE = []
|
8632
|
+
include Aws::Structure
|
8633
|
+
end
|
8634
|
+
|
8635
|
+
# Specifies a Kafka header using key-value pairs when you create a
|
8636
|
+
# Rule’s Kafka Action. You can use these headers to route data from IoT
|
8637
|
+
# clients to downstream Kafka clusters without modifying your message
|
8638
|
+
# payload.
|
8639
|
+
#
|
8640
|
+
# For more information about Rule's Kafka action, see [Apache
|
8641
|
+
# Kafka][1].
|
8642
|
+
#
|
8643
|
+
#
|
8644
|
+
#
|
8645
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/apache-kafka-rule-action.html
|
8646
|
+
#
|
8647
|
+
# @!attribute [rw] key
|
8648
|
+
# The key of the Kafka header.
|
8649
|
+
# @return [String]
|
8650
|
+
#
|
8651
|
+
# @!attribute [rw] value
|
8652
|
+
# The value of the Kafka header.
|
8653
|
+
# @return [String]
|
8654
|
+
#
|
8655
|
+
class KafkaActionHeader < Struct.new(
|
8656
|
+
:key,
|
8657
|
+
:value)
|
8621
8658
|
SENSITIVE = []
|
8622
8659
|
include Aws::Structure
|
8623
8660
|
end
|
@@ -9996,7 +10033,7 @@ module Aws::IoT
|
|
9996
10033
|
end
|
9997
10034
|
|
9998
10035
|
# @!attribute [rw] package_name
|
9999
|
-
# The name of the target package.
|
10036
|
+
# The name of the target software package.
|
10000
10037
|
# @return [String]
|
10001
10038
|
#
|
10002
10039
|
# @!attribute [rw] status
|
@@ -11836,7 +11873,8 @@ module Aws::IoT
|
|
11836
11873
|
# @return [Types::CodeSigning]
|
11837
11874
|
#
|
11838
11875
|
# @!attribute [rw] attributes
|
11839
|
-
# A list of name
|
11876
|
+
# A list of name-attribute pairs. They won't be sent to devices as a
|
11877
|
+
# part of the Job document.
|
11840
11878
|
# @return [Hash<String,String>]
|
11841
11879
|
#
|
11842
11880
|
class OTAUpdateFile < Struct.new(
|
@@ -12041,7 +12079,7 @@ module Aws::IoT
|
|
12041
12079
|
# A summary of information about a software package.
|
12042
12080
|
#
|
12043
12081
|
# @!attribute [rw] package_name
|
12044
|
-
# The name for the target package.
|
12082
|
+
# The name for the target software package.
|
12045
12083
|
# @return [String]
|
12046
12084
|
#
|
12047
12085
|
# @!attribute [rw] default_version_name
|
@@ -13133,6 +13171,13 @@ module Aws::IoT
|
|
13133
13171
|
# to a year in advance and must be scheduled a minimum of thirty
|
13134
13172
|
# minutes from the current time. The date and time format for the
|
13135
13173
|
# `startTime` is YYYY-MM-DD for the date and HH:MM for the time.
|
13174
|
+
#
|
13175
|
+
# For more information on the syntax for `startTime` when using an API
|
13176
|
+
# command or the Command Line Interface, see [Timestamp][1].
|
13177
|
+
#
|
13178
|
+
#
|
13179
|
+
#
|
13180
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
13136
13181
|
# @return [String]
|
13137
13182
|
#
|
13138
13183
|
# @!attribute [rw] end_time
|
@@ -13144,6 +13189,13 @@ module Aws::IoT
|
|
13144
13189
|
# maximum duration between `startTime` and `endTime` is two years. The
|
13145
13190
|
# date and time format for the `endTime` is YYYY-MM-DD for the date
|
13146
13191
|
# and HH:MM for the time.
|
13192
|
+
#
|
13193
|
+
# For more information on the syntax for `endTime` when using an API
|
13194
|
+
# command or the Command Line Interface, see [Timestamp][1].
|
13195
|
+
#
|
13196
|
+
#
|
13197
|
+
#
|
13198
|
+
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
13147
13199
|
# @return [String]
|
13148
13200
|
#
|
13149
13201
|
# @!attribute [rw] end_behavior
|
@@ -15824,7 +15876,7 @@ module Aws::IoT
|
|
15824
15876
|
class UpdatePackageConfigurationResponse < Aws::EmptyStructure; end
|
15825
15877
|
|
15826
15878
|
# @!attribute [rw] package_name
|
15827
|
-
# The name of the target package.
|
15879
|
+
# The name of the target software package.
|
15828
15880
|
# @return [String]
|
15829
15881
|
#
|
15830
15882
|
# @!attribute [rw] description
|
@@ -15882,8 +15934,8 @@ module Aws::IoT
|
|
15882
15934
|
#
|
15883
15935
|
# @!attribute [rw] attributes
|
15884
15936
|
# Metadata that can be used to define a package version’s
|
15885
|
-
# configuration. For example, the S3 file location,
|
15886
|
-
# options that are being sent to the device or fleet.
|
15937
|
+
# configuration. For example, the Amazon S3 file location,
|
15938
|
+
# configuration options that are being sent to the device or fleet.
|
15887
15939
|
#
|
15888
15940
|
# **Note:** Attributes can be updated only when the package version is
|
15889
15941
|
# in a draft state.
|
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.111.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: 2023-
|
11
|
+
date: 2023-09-27 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.184.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.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|