aws-sdk-iot 1.120.0 → 1.122.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 +127 -55
- data/lib/aws-sdk-iot/client_api.rb +2 -1
- data/lib/aws-sdk-iot/types.rb +65 -10
- 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: 56e30e142a325ab08a5e537ac73f53b652ab2d4a5b98303e6308d38278da4354
|
4
|
+
data.tar.gz: d1e13a6a3cf1656fbede5e5d03cadedf331e42152c1025aa2aed34fcda03950f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfdb09376cb66745b125806e9ae788366a6e59b59b147af0cc14b3d4bc007dc877eea22a72e0d75dba3b3ab86f769d6c9e8c92a0b9747c8b33843535bf100b37
|
7
|
+
data.tar.gz: 340210f4451fcbc50d86f45a7f48a5740b6488a6585da74d03b4b84a4a4b3a8b9f89bfc6434633fc4e299079579a0c23af33f6805439948c5919d58278fd9712
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.122.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.121.0 (2024-02-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
|
13
|
+
|
4
14
|
1.120.0 (2024-02-09)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.122.0
|
data/lib/aws-sdk-iot/client.rb
CHANGED
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::IoT
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::IoT
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::IoT
|
|
337
346
|
# @option options [Aws::IoT::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::IoT::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
368
399
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
378
405
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -548,10 +572,16 @@ module Aws::IoT
|
|
548
572
|
#
|
549
573
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
550
574
|
#
|
551
|
-
# <note markdown="1"> The `namespaceId` feature is
|
575
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
|
576
|
+
# time. For more information, see [Setting up IoT Greengrass core
|
577
|
+
# devices.][1]
|
552
578
|
#
|
553
579
|
# </note>
|
554
580
|
#
|
581
|
+
#
|
582
|
+
#
|
583
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
584
|
+
#
|
555
585
|
# @return [Types::AssociateTargetsWithJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
556
586
|
#
|
557
587
|
# * {Types::AssociateTargetsWithJobResponse#job_arn #job_arn} => String
|
@@ -1881,10 +1911,16 @@ module Aws::IoT
|
|
1881
1911
|
#
|
1882
1912
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
1883
1913
|
#
|
1884
|
-
# <note markdown="1"> The `namespaceId` feature is
|
1914
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
|
1915
|
+
# time. For more information, see [Setting up IoT Greengrass core
|
1916
|
+
# devices.][1]
|
1885
1917
|
#
|
1886
1918
|
# </note>
|
1887
1919
|
#
|
1920
|
+
#
|
1921
|
+
#
|
1922
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
1923
|
+
#
|
1888
1924
|
# @option params [String] :job_template_arn
|
1889
1925
|
# The ARN of the job template used to create the job.
|
1890
1926
|
#
|
@@ -4397,10 +4433,16 @@ module Aws::IoT
|
|
4397
4433
|
#
|
4398
4434
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
4399
4435
|
#
|
4400
|
-
# <note markdown="1"> The `namespaceId` feature is
|
4436
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
|
4437
|
+
# time. For more information, see [Setting up IoT Greengrass core
|
4438
|
+
# devices.][1]
|
4401
4439
|
#
|
4402
4440
|
# </note>
|
4403
4441
|
#
|
4442
|
+
#
|
4443
|
+
#
|
4444
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
4445
|
+
#
|
4404
4446
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4405
4447
|
#
|
4406
4448
|
# @example Request syntax with placeholder values
|
@@ -4463,10 +4505,16 @@ module Aws::IoT
|
|
4463
4505
|
#
|
4464
4506
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
4465
4507
|
#
|
4466
|
-
# <note markdown="1"> The `namespaceId` feature is
|
4508
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
|
4509
|
+
# time. For more information, see [Setting up IoT Greengrass core
|
4510
|
+
# devices.][1]
|
4467
4511
|
#
|
4468
4512
|
# </note>
|
4469
4513
|
#
|
4514
|
+
#
|
4515
|
+
#
|
4516
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
4517
|
+
#
|
4470
4518
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4471
4519
|
#
|
4472
4520
|
# @example Request syntax with placeholder values
|
@@ -9533,10 +9581,16 @@ module Aws::IoT
|
|
9533
9581
|
#
|
9534
9582
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
9535
9583
|
#
|
9536
|
-
# <note markdown="1"> The `namespaceId` feature is
|
9584
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
|
9585
|
+
# time. For more information, see [Setting up IoT Greengrass core
|
9586
|
+
# devices.][1]
|
9537
9587
|
#
|
9538
9588
|
# </note>
|
9539
9589
|
#
|
9590
|
+
#
|
9591
|
+
#
|
9592
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
9593
|
+
#
|
9540
9594
|
# @option params [Integer] :max_results
|
9541
9595
|
# The maximum number of results to be returned per request.
|
9542
9596
|
#
|
@@ -9677,10 +9731,16 @@ module Aws::IoT
|
|
9677
9731
|
#
|
9678
9732
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
9679
9733
|
#
|
9680
|
-
# <note markdown="1"> The `namespaceId` feature is
|
9734
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
|
9735
|
+
# time. For more information, see [Setting up IoT Greengrass core
|
9736
|
+
# devices.][1]
|
9681
9737
|
#
|
9682
9738
|
# </note>
|
9683
9739
|
#
|
9740
|
+
#
|
9741
|
+
#
|
9742
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
9743
|
+
#
|
9684
9744
|
# @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9685
9745
|
#
|
9686
9746
|
# * {Types::ListJobsResponse#jobs #jobs} => Array<Types::JobSummary>
|
@@ -12547,8 +12607,14 @@ module Aws::IoT
|
|
12547
12607
|
# no additional results.
|
12548
12608
|
#
|
12549
12609
|
# @option params [Integer] :max_results
|
12550
|
-
# The maximum number of results to return per page at one time.
|
12551
|
-
#
|
12610
|
+
# The maximum number of results to return per page at one time. This
|
12611
|
+
# maximum number cannot exceed 100. The response might contain fewer
|
12612
|
+
# results but will never contain more. You can use [ `nextToken` ][1] to
|
12613
|
+
# retrieve the next set of results until `nextToken` returns `NULL`.
|
12614
|
+
#
|
12615
|
+
#
|
12616
|
+
#
|
12617
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/apireference/API_SearchIndex.html#iot-SearchIndex-request-nextToken
|
12552
12618
|
#
|
12553
12619
|
# @option params [String] :query_version
|
12554
12620
|
# The query version.
|
@@ -14096,10 +14162,16 @@ module Aws::IoT
|
|
14096
14162
|
#
|
14097
14163
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
14098
14164
|
#
|
14099
|
-
# <note markdown="1"> The `namespaceId` feature is
|
14165
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
|
14166
|
+
# time. For more information, see [Setting up IoT Greengrass core
|
14167
|
+
# devices.][1]
|
14100
14168
|
#
|
14101
14169
|
# </note>
|
14102
14170
|
#
|
14171
|
+
#
|
14172
|
+
#
|
14173
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
14174
|
+
#
|
14103
14175
|
# @option params [Types::JobExecutionsRetryConfig] :job_executions_retry_config
|
14104
14176
|
# Allows you to create the criteria to retry a job.
|
14105
14177
|
#
|
@@ -15099,7 +15171,7 @@ module Aws::IoT
|
|
15099
15171
|
params: params,
|
15100
15172
|
config: config)
|
15101
15173
|
context[:gem_name] = 'aws-sdk-iot'
|
15102
|
-
context[:gem_version] = '1.
|
15174
|
+
context[:gem_version] = '1.122.0'
|
15103
15175
|
Seahorse::Client::Request.new(handlers, context)
|
15104
15176
|
end
|
15105
15177
|
|
@@ -1077,6 +1077,7 @@ module Aws::IoT
|
|
1077
1077
|
SchedulingConfig = Shapes::StructureShape.new(name: 'SchedulingConfig')
|
1078
1078
|
SearchIndexRequest = Shapes::StructureShape.new(name: 'SearchIndexRequest')
|
1079
1079
|
SearchIndexResponse = Shapes::StructureShape.new(name: 'SearchIndexResponse')
|
1080
|
+
SearchQueryMaxResults = Shapes::IntegerShape.new(name: 'SearchQueryMaxResults')
|
1080
1081
|
SearchableAttributes = Shapes::ListShape.new(name: 'SearchableAttributes')
|
1081
1082
|
Seconds = Shapes::IntegerShape.new(name: 'Seconds')
|
1082
1083
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
@@ -4458,7 +4459,7 @@ module Aws::IoT
|
|
4458
4459
|
SearchIndexRequest.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "indexName"))
|
4459
4460
|
SearchIndexRequest.add_member(:query_string, Shapes::ShapeRef.new(shape: QueryString, required: true, location_name: "queryString"))
|
4460
4461
|
SearchIndexRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
4461
|
-
SearchIndexRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
4462
|
+
SearchIndexRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: SearchQueryMaxResults, location_name: "maxResults"))
|
4462
4463
|
SearchIndexRequest.add_member(:query_version, Shapes::ShapeRef.new(shape: QueryVersion, location_name: "queryVersion"))
|
4463
4464
|
SearchIndexRequest.struct_class = Types::SearchIndexRequest
|
4464
4465
|
|
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -509,9 +509,15 @@ module Aws::IoT
|
|
509
509
|
#
|
510
510
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
511
511
|
#
|
512
|
-
# <note markdown="1"> The `namespaceId` feature is
|
512
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
513
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
514
|
+
# devices.][1]
|
513
515
|
#
|
514
516
|
# </note>
|
517
|
+
#
|
518
|
+
#
|
519
|
+
#
|
520
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
515
521
|
# @return [String]
|
516
522
|
#
|
517
523
|
class AssociateTargetsWithJobRequest < Struct.new(
|
@@ -2875,9 +2881,15 @@ module Aws::IoT
|
|
2875
2881
|
#
|
2876
2882
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
2877
2883
|
#
|
2878
|
-
# <note markdown="1"> The `namespaceId` feature is
|
2884
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
2885
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
2886
|
+
# devices.][1]
|
2879
2887
|
#
|
2880
2888
|
# </note>
|
2889
|
+
#
|
2890
|
+
#
|
2891
|
+
#
|
2892
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
2881
2893
|
# @return [String]
|
2882
2894
|
#
|
2883
2895
|
# @!attribute [rw] job_template_arn
|
@@ -4427,9 +4439,15 @@ module Aws::IoT
|
|
4427
4439
|
#
|
4428
4440
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
4429
4441
|
#
|
4430
|
-
# <note markdown="1"> The `namespaceId` feature is
|
4442
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
4443
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
4444
|
+
# devices.][1]
|
4431
4445
|
#
|
4432
4446
|
# </note>
|
4447
|
+
#
|
4448
|
+
#
|
4449
|
+
#
|
4450
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
4433
4451
|
# @return [String]
|
4434
4452
|
#
|
4435
4453
|
class DeleteJobExecutionRequest < Struct.new(
|
@@ -4475,9 +4493,15 @@ module Aws::IoT
|
|
4475
4493
|
#
|
4476
4494
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
4477
4495
|
#
|
4478
|
-
# <note markdown="1"> The `namespaceId` feature is
|
4496
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
4497
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
4498
|
+
# devices.][1]
|
4479
4499
|
#
|
4480
4500
|
# </note>
|
4501
|
+
#
|
4502
|
+
#
|
4503
|
+
#
|
4504
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
4481
4505
|
# @return [String]
|
4482
4506
|
#
|
4483
4507
|
class DeleteJobRequest < Struct.new(
|
@@ -8389,9 +8413,15 @@ module Aws::IoT
|
|
8389
8413
|
#
|
8390
8414
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
8391
8415
|
#
|
8392
|
-
# <note markdown="1"> The `namespaceId` feature is
|
8416
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
8417
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
8418
|
+
# devices.][1]
|
8393
8419
|
#
|
8394
8420
|
# </note>
|
8421
|
+
#
|
8422
|
+
#
|
8423
|
+
#
|
8424
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
8395
8425
|
# @return [String]
|
8396
8426
|
#
|
8397
8427
|
# @!attribute [rw] job_template_arn
|
@@ -9934,9 +9964,15 @@ module Aws::IoT
|
|
9934
9964
|
#
|
9935
9965
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
9936
9966
|
#
|
9937
|
-
# <note markdown="1"> The `namespaceId` feature is
|
9967
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
9968
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
9969
|
+
# devices.][1]
|
9938
9970
|
#
|
9939
9971
|
# </note>
|
9972
|
+
#
|
9973
|
+
#
|
9974
|
+
#
|
9975
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
9940
9976
|
# @return [String]
|
9941
9977
|
#
|
9942
9978
|
# @!attribute [rw] max_results
|
@@ -10057,9 +10093,15 @@ module Aws::IoT
|
|
10057
10093
|
#
|
10058
10094
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
10059
10095
|
#
|
10060
|
-
# <note markdown="1"> The `namespaceId` feature is
|
10096
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
10097
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
10098
|
+
# devices.][1]
|
10061
10099
|
#
|
10062
10100
|
# </note>
|
10101
|
+
#
|
10102
|
+
#
|
10103
|
+
#
|
10104
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
10063
10105
|
# @return [String]
|
10064
10106
|
#
|
10065
10107
|
class ListJobsRequest < Struct.new(
|
@@ -13536,8 +13578,15 @@ module Aws::IoT
|
|
13536
13578
|
# @return [String]
|
13537
13579
|
#
|
13538
13580
|
# @!attribute [rw] max_results
|
13539
|
-
# The maximum number of results to return per page at one time.
|
13540
|
-
#
|
13581
|
+
# The maximum number of results to return per page at one time. This
|
13582
|
+
# maximum number cannot exceed 100. The response might contain fewer
|
13583
|
+
# results but will never contain more. You can use [ `nextToken` ][1]
|
13584
|
+
# to retrieve the next set of results until `nextToken` returns
|
13585
|
+
# `NULL`.
|
13586
|
+
#
|
13587
|
+
#
|
13588
|
+
#
|
13589
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/apireference/API_SearchIndex.html#iot-SearchIndex-request-nextToken
|
13541
13590
|
# @return [Integer]
|
13542
13591
|
#
|
13543
13592
|
# @!attribute [rw] query_version
|
@@ -16187,9 +16236,15 @@ module Aws::IoT
|
|
16187
16236
|
#
|
16188
16237
|
# `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
|
16189
16238
|
#
|
16190
|
-
# <note markdown="1"> The `namespaceId` feature is
|
16239
|
+
# <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
|
16240
|
+
# this time. For more information, see [Setting up IoT Greengrass core
|
16241
|
+
# devices.][1]
|
16191
16242
|
#
|
16192
16243
|
# </note>
|
16244
|
+
#
|
16245
|
+
#
|
16246
|
+
#
|
16247
|
+
# [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
|
16193
16248
|
# @return [String]
|
16194
16249
|
#
|
16195
16250
|
# @!attribute [rw] job_executions_retry_config
|
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.122.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: 2024-
|
11
|
+
date: 2024-04-25 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|