aws-sdk-iot 1.88.0 → 1.89.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iot/client.rb +3 -1
- data/lib/aws-sdk-iot/client_api.rb +4 -0
- data/lib/aws-sdk-iot/types.rb +10 -2
- data/lib/aws-sdk-iot.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c93abcef586906c3c4f512b3548860da05959ca3425be606f380872cc0338f97
|
|
4
|
+
data.tar.gz: f7115d4563734c8e18dd4f044a0b7507dc80ccd5b81d83cf86df60c4f1c38a99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c9fde8f272f00209b792f3f4f867343ea29041ddac38ee7f94fc4f709c5a8e3bd2891e81b31f25920937103097df60799251b55c05420d6e624f11a1d131f11
|
|
7
|
+
data.tar.gz: de28929da80ae67575a6eb2f907201ff12869700b0bb666a85ad3705c812202818f139e39adae2a90b9124a2684c44738eb63624f659c4ecb525c5f4e4a54f95
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.89.0 (2022-05-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS IoT Jobs now allows you to create up to 100,000 active continuous and snapshot jobs by using concurrency control.
|
|
8
|
+
|
|
4
9
|
1.88.0 (2022-04-04)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.89.0
|
data/lib/aws-sdk-iot/client.rb
CHANGED
|
@@ -5526,6 +5526,7 @@ module Aws::IoT
|
|
|
5526
5526
|
# resp.job.job_executions_retry_config.criteria_list[0].number_of_retries #=> Integer
|
|
5527
5527
|
# resp.job.document_parameters #=> Hash
|
|
5528
5528
|
# resp.job.document_parameters["ParameterKey"] #=> String
|
|
5529
|
+
# resp.job.is_concurrent #=> Boolean
|
|
5529
5530
|
#
|
|
5530
5531
|
# @overload describe_job(params = {})
|
|
5531
5532
|
# @param [Hash] params ({})
|
|
@@ -8826,6 +8827,7 @@ module Aws::IoT
|
|
|
8826
8827
|
# resp.jobs[0].created_at #=> Time
|
|
8827
8828
|
# resp.jobs[0].last_updated_at #=> Time
|
|
8828
8829
|
# resp.jobs[0].completed_at #=> Time
|
|
8830
|
+
# resp.jobs[0].is_concurrent #=> Boolean
|
|
8829
8831
|
# resp.next_token #=> String
|
|
8830
8832
|
#
|
|
8831
8833
|
# @overload list_jobs(params = {})
|
|
@@ -13672,7 +13674,7 @@ module Aws::IoT
|
|
|
13672
13674
|
params: params,
|
|
13673
13675
|
config: config)
|
|
13674
13676
|
context[:gem_name] = 'aws-sdk-iot'
|
|
13675
|
-
context[:gem_version] = '1.
|
|
13677
|
+
context[:gem_version] = '1.89.0'
|
|
13676
13678
|
Seahorse::Client::Request.new(handlers, context)
|
|
13677
13679
|
end
|
|
13678
13680
|
|
|
@@ -162,6 +162,7 @@ module Aws::IoT
|
|
|
162
162
|
BillingGroupProperties = Shapes::StructureShape.new(name: 'BillingGroupProperties')
|
|
163
163
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
164
164
|
BooleanKey = Shapes::BooleanShape.new(name: 'BooleanKey')
|
|
165
|
+
BooleanWrapperObject = Shapes::BooleanShape.new(name: 'BooleanWrapperObject')
|
|
165
166
|
Bucket = Shapes::StructureShape.new(name: 'Bucket')
|
|
166
167
|
BucketKeyValue = Shapes::StringShape.new(name: 'BucketKeyValue')
|
|
167
168
|
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
|
@@ -3022,6 +3023,7 @@ module Aws::IoT
|
|
|
3022
3023
|
Job.add_member(:job_template_arn, Shapes::ShapeRef.new(shape: JobTemplateArn, location_name: "jobTemplateArn"))
|
|
3023
3024
|
Job.add_member(:job_executions_retry_config, Shapes::ShapeRef.new(shape: JobExecutionsRetryConfig, location_name: "jobExecutionsRetryConfig"))
|
|
3024
3025
|
Job.add_member(:document_parameters, Shapes::ShapeRef.new(shape: ParameterMap, location_name: "documentParameters"))
|
|
3026
|
+
Job.add_member(:is_concurrent, Shapes::ShapeRef.new(shape: BooleanWrapperObject, location_name: "isConcurrent"))
|
|
3025
3027
|
Job.struct_class = Types::Job
|
|
3026
3028
|
|
|
3027
3029
|
JobExecution.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "jobId"))
|
|
@@ -3086,6 +3088,7 @@ module Aws::IoT
|
|
|
3086
3088
|
JobSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: DateType, location_name: "createdAt"))
|
|
3087
3089
|
JobSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateType, location_name: "lastUpdatedAt"))
|
|
3088
3090
|
JobSummary.add_member(:completed_at, Shapes::ShapeRef.new(shape: DateType, location_name: "completedAt"))
|
|
3091
|
+
JobSummary.add_member(:is_concurrent, Shapes::ShapeRef.new(shape: BooleanWrapperObject, location_name: "isConcurrent"))
|
|
3089
3092
|
JobSummary.struct_class = Types::JobSummary
|
|
3090
3093
|
|
|
3091
3094
|
JobSummaryList.member = Shapes::ShapeRef.new(shape: JobSummary)
|
|
@@ -5017,6 +5020,7 @@ module Aws::IoT
|
|
|
5017
5020
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
5018
5021
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
5019
5022
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
5023
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
5020
5024
|
end)
|
|
5021
5025
|
|
|
5022
5026
|
api.add_operation(:cancel_job_execution, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-iot/types.rb
CHANGED
|
@@ -10189,6 +10189,9 @@ module Aws::IoT
|
|
|
10189
10189
|
# creating a job.
|
|
10190
10190
|
# @return [Hash<String,String>]
|
|
10191
10191
|
#
|
|
10192
|
+
# @!attribute [rw] is_concurrent
|
|
10193
|
+
# @return [Boolean]
|
|
10194
|
+
#
|
|
10192
10195
|
class Job < Struct.new(
|
|
10193
10196
|
:job_arn,
|
|
10194
10197
|
:job_id,
|
|
@@ -10210,7 +10213,8 @@ module Aws::IoT
|
|
|
10210
10213
|
:namespace_id,
|
|
10211
10214
|
:job_template_arn,
|
|
10212
10215
|
:job_executions_retry_config,
|
|
10213
|
-
:document_parameters
|
|
10216
|
+
:document_parameters,
|
|
10217
|
+
:is_concurrent)
|
|
10214
10218
|
SENSITIVE = []
|
|
10215
10219
|
include Aws::Structure
|
|
10216
10220
|
end
|
|
@@ -10539,6 +10543,9 @@ module Aws::IoT
|
|
|
10539
10543
|
# The time, in seconds since the epoch, when the job completed.
|
|
10540
10544
|
# @return [Time]
|
|
10541
10545
|
#
|
|
10546
|
+
# @!attribute [rw] is_concurrent
|
|
10547
|
+
# @return [Boolean]
|
|
10548
|
+
#
|
|
10542
10549
|
class JobSummary < Struct.new(
|
|
10543
10550
|
:job_arn,
|
|
10544
10551
|
:job_id,
|
|
@@ -10547,7 +10554,8 @@ module Aws::IoT
|
|
|
10547
10554
|
:status,
|
|
10548
10555
|
:created_at,
|
|
10549
10556
|
:last_updated_at,
|
|
10550
|
-
:completed_at
|
|
10557
|
+
:completed_at,
|
|
10558
|
+
:is_concurrent)
|
|
10551
10559
|
SENSITIVE = []
|
|
10552
10560
|
include Aws::Structure
|
|
10553
10561
|
end
|
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.89.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-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|