aws-sdk-iot 1.102.0 → 1.103.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5d50a278b0ec97aad3b7e11e0d3f6ca6939172658872ed4e31f8fda2021b35c
4
- data.tar.gz: 8122d5baee86061f26e427a9a26601eee87ee1935791c8e6c5d9c0c933b014a7
3
+ metadata.gz: 7080bb6f3825e6299f872bf59470fa2c9e30303c4f2bc01b025a0fb660fb8339
4
+ data.tar.gz: 10e528352c420c779e171830de096c696aa71ff72d49fdc82e4853cbe836a507
5
5
  SHA512:
6
- metadata.gz: 9460aa002a1d9da33447807ab9ea4d4802150632b602422e9e20c66bc528fc7ff2d3b09381d459c874b1bed9eaffb014ba7509249df830962a2cee72149afbd3
7
- data.tar.gz: b9b85144668e74a2211e8f2e77e1a28f87c495606e8f3d3209891af857724e7d1c647497262be4ebf54bd8222f377060616c15ec3de6ab0d19fa0f3d2243b1fc
6
+ metadata.gz: aa71399ab7d30ae7fa842849b364fba06a2566c5a57e681a9472ab39f5f9378a147ff788b83c14536f182f880fc571528a57a27e687001b416aec2fd4b656136
7
+ data.tar.gz: cd5adbb8bf25feb0eeba581806c30a0ff05bb54d8bda645bd0032dd43018a15d6d21627cab394c8f8817a3964a55565c3eb8fda34deae61badbf23b2aaee7487
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.103.0 (2023-04-20)
5
+ ------------------
6
+
7
+ * Feature - Support additional OTA states in GetOTAUpdate API
8
+
4
9
  1.102.0 (2023-04-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.103.0
@@ -2323,7 +2323,7 @@ module Aws::IoT
2323
2323
  # resp.aws_iot_job_id #=> String
2324
2324
  # resp.ota_update_arn #=> String
2325
2325
  # resp.aws_iot_job_arn #=> String
2326
- # resp.ota_update_status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED"
2326
+ # resp.ota_update_status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
2327
2327
  #
2328
2328
  # @overload create_ota_update(params = {})
2329
2329
  # @param [Hash] params ({})
@@ -6987,7 +6987,7 @@ module Aws::IoT
6987
6987
  # resp.ota_update_info.ota_update_files[0].code_signing.custom_code_signing.signature_algorithm #=> String
6988
6988
  # resp.ota_update_info.ota_update_files[0].attributes #=> Hash
6989
6989
  # resp.ota_update_info.ota_update_files[0].attributes["AttributeKey"] #=> String
6990
- # resp.ota_update_info.ota_update_status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED"
6990
+ # resp.ota_update_info.ota_update_status #=> String, one of "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "DELETE_IN_PROGRESS", "DELETE_FAILED"
6991
6991
  # resp.ota_update_info.aws_iot_job_id #=> String
6992
6992
  # resp.ota_update_info.aws_iot_job_arn #=> String
6993
6993
  # resp.ota_update_info.error_info.code #=> String
@@ -9095,6 +9095,8 @@ module Aws::IoT
9095
9095
  # * {Types::ListManagedJobTemplatesResponse#managed_job_templates #managed_job_templates} => Array<Types::ManagedJobTemplateSummary>
9096
9096
  # * {Types::ListManagedJobTemplatesResponse#next_token #next_token} => String
9097
9097
  #
9098
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9099
+ #
9098
9100
  # @example Request syntax with placeholder values
9099
9101
  #
9100
9102
  # resp = client.list_managed_job_templates({
@@ -9272,7 +9274,7 @@ module Aws::IoT
9272
9274
  # resp = client.list_ota_updates({
9273
9275
  # max_results: 1,
9274
9276
  # next_token: "NextToken",
9275
- # ota_update_status: "CREATE_PENDING", # accepts CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_COMPLETE, CREATE_FAILED
9277
+ # ota_update_status: "CREATE_PENDING", # accepts CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_COMPLETE, CREATE_FAILED, DELETE_IN_PROGRESS, DELETE_FAILED
9276
9278
  # })
9277
9279
  #
9278
9280
  # @example Response structure
@@ -9734,6 +9736,8 @@ module Aws::IoT
9734
9736
  # * {Types::ListRelatedResourcesForAuditFindingResponse#related_resources #related_resources} => Array<Types::RelatedResource>
9735
9737
  # * {Types::ListRelatedResourcesForAuditFindingResponse#next_token #next_token} => String
9736
9738
  #
9739
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
9740
+ #
9737
9741
  # @example Request syntax with placeholder values
9738
9742
  #
9739
9743
  # resp = client.list_related_resources_for_audit_finding({
@@ -14089,7 +14093,7 @@ module Aws::IoT
14089
14093
  params: params,
14090
14094
  config: config)
14091
14095
  context[:gem_name] = 'aws-sdk-iot'
14092
- context[:gem_version] = '1.102.0'
14096
+ context[:gem_version] = '1.103.0'
14093
14097
  Seahorse::Client::Request.new(handlers, context)
14094
14098
  end
14095
14099
 
@@ -4955,7 +4955,7 @@ module Aws::IoT
4955
4955
  "serviceFullName" => "AWS IoT",
4956
4956
  "serviceId" => "IoT",
4957
4957
  "signatureVersion" => "v4",
4958
- "signingName" => "execute-api",
4958
+ "signingName" => "iot",
4959
4959
  "uid" => "iot-2015-05-28",
4960
4960
  }
4961
4961
 
@@ -7148,6 +7148,12 @@ module Aws::IoT
7148
7148
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
7149
7149
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
7150
7150
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
7151
+ o[:pager] = Aws::Pager.new(
7152
+ limit_key: "max_results",
7153
+ tokens: {
7154
+ "next_token" => "next_token"
7155
+ }
7156
+ )
7151
7157
  end)
7152
7158
 
7153
7159
  api.add_operation(:list_metric_values, Seahorse::Model::Operation.new.tap do |o|
@@ -7365,6 +7371,12 @@ module Aws::IoT
7365
7371
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
7366
7372
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
7367
7373
  o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
7374
+ o[:pager] = Aws::Pager.new(
7375
+ limit_key: "max_results",
7376
+ tokens: {
7377
+ "next_token" => "next_token"
7378
+ }
7379
+ )
7368
7380
  end)
7369
7381
 
7370
7382
  api.add_operation(:list_role_aliases, Seahorse::Model::Operation.new.tap do |o|
data/lib/aws-sdk-iot.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iot/customizations'
52
52
  # @!group service
53
53
  module Aws::IoT
54
54
 
55
- GEM_VERSION = '1.102.0'
55
+ GEM_VERSION = '1.103.0'
56
56
 
57
57
  end
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.102.0
4
+ version: 1.103.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-04-11 00:00:00.000000000 Z
11
+ date: 2023-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core