aws-sdk-iot 1.62.0 → 1.63.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: c1aa99b717792df7eb4907234c70da8bcc5fd8f6566e6c76342c7cb8a79b2ddd
4
- data.tar.gz: 2c479f0968b20bd7034f7d2efbcb8aab4a509fa61071b9b9725b30c0a7d923b9
3
+ metadata.gz: 95d1a1e0d8ec3ef76c6422d8575fb17f8c475e2b6befa251054daa0bdd1efce7
4
+ data.tar.gz: 3c3f38a1c01e8eb0e4ea3b2575cd9d5c8cc2e38906a8e82e5ac5578969d96c33
5
5
  SHA512:
6
- metadata.gz: b9cbb208052356cd233d42c011907caaa8fdb911e3a5efe383a9b950d09da873db927fb8fd4ee0de8f98ba16c4ab20a3156d33a5aef6c97130b3d8d0c1ed9d22
7
- data.tar.gz: 6768a64bd0682db23d4bb0b8365a8e584f4a873697905f8c6c32a13e7f2f0b01dd7f3defbb8f4ab56a753624069151a8906847cf39f52ba4a93821bd9f69dd6d
6
+ metadata.gz: b07c14ff5dd238040965777dcd422c241589dfc3da3669316b744ac2bbe6359545e71fdfa99b45bf88f0c0d0d30e76475194faa3c6a07791968bfc984c0936f0
7
+ data.tar.gz: 633a7ec3980a0a0247a1252195b6050631ac3d1a709e22990e515459e37ff00be53c2b885bc5debe372630d94837f77e3f80d4782d10ec622c8ef1d73de2cccd
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-iot/customizations'
48
48
  # @!group service
49
49
  module Aws::IoT
50
50
 
51
- GEM_VERSION = '1.62.0'
51
+ GEM_VERSION = '1.63.0'
52
52
 
53
53
  end
@@ -1657,6 +1657,7 @@ module Aws::IoT
1657
1657
  # files: [ # required
1658
1658
  # {
1659
1659
  # file_name: "FileName",
1660
+ # file_type: 1,
1660
1661
  # file_version: "OTAUpdateFileVersion",
1661
1662
  # file_location: {
1662
1663
  # stream: {
@@ -5207,6 +5208,7 @@ module Aws::IoT
5207
5208
  # resp.ota_update_info.target_selection #=> String, one of "CONTINUOUS", "SNAPSHOT"
5208
5209
  # resp.ota_update_info.ota_update_files #=> Array
5209
5210
  # resp.ota_update_info.ota_update_files[0].file_name #=> String
5211
+ # resp.ota_update_info.ota_update_files[0].file_type #=> Integer
5210
5212
  # resp.ota_update_info.ota_update_files[0].file_version #=> String
5211
5213
  # resp.ota_update_info.ota_update_files[0].file_location.stream.stream_id #=> String
5212
5214
  # resp.ota_update_info.ota_update_files[0].file_location.stream.file_id #=> Integer
@@ -10643,7 +10645,7 @@ module Aws::IoT
10643
10645
  params: params,
10644
10646
  config: config)
10645
10647
  context[:gem_name] = 'aws-sdk-iot'
10646
- context[:gem_version] = '1.62.0'
10648
+ context[:gem_version] = '1.63.0'
10647
10649
  Seahorse::Client::Request.new(handlers, context)
10648
10650
  end
10649
10651
 
@@ -460,6 +460,7 @@ module Aws::IoT
460
460
  FileId = Shapes::IntegerShape.new(name: 'FileId')
461
461
  FileLocation = Shapes::StructureShape.new(name: 'FileLocation')
462
462
  FileName = Shapes::StringShape.new(name: 'FileName')
463
+ FileType = Shapes::IntegerShape.new(name: 'FileType')
463
464
  FindingId = Shapes::StringShape.new(name: 'FindingId')
464
465
  FindingIds = Shapes::ListShape.new(name: 'FindingIds')
465
466
  FirehoseAction = Shapes::StructureShape.new(name: 'FirehoseAction')
@@ -3250,6 +3251,7 @@ module Aws::IoT
3250
3251
  NotConfiguredException.struct_class = Types::NotConfiguredException
3251
3252
 
3252
3253
  OTAUpdateFile.add_member(:file_name, Shapes::ShapeRef.new(shape: FileName, location_name: "fileName"))
3254
+ OTAUpdateFile.add_member(:file_type, Shapes::ShapeRef.new(shape: FileType, location_name: "fileType"))
3253
3255
  OTAUpdateFile.add_member(:file_version, Shapes::ShapeRef.new(shape: OTAUpdateFileVersion, location_name: "fileVersion"))
3254
3256
  OTAUpdateFile.add_member(:file_location, Shapes::ShapeRef.new(shape: FileLocation, location_name: "fileLocation"))
3255
3257
  OTAUpdateFile.add_member(:code_signing, Shapes::ShapeRef.new(shape: CodeSigning, location_name: "codeSigning"))
@@ -3379,6 +3379,7 @@ module Aws::IoT
3379
3379
  # files: [ # required
3380
3380
  # {
3381
3381
  # file_name: "FileName",
3382
+ # file_type: 1,
3382
3383
  # file_version: "OTAUpdateFileVersion",
3383
3384
  # file_location: {
3384
3385
  # stream: {
@@ -12125,6 +12126,7 @@ module Aws::IoT
12125
12126
  #
12126
12127
  # {
12127
12128
  # file_name: "FileName",
12129
+ # file_type: 1,
12128
12130
  # file_version: "OTAUpdateFileVersion",
12129
12131
  # file_location: {
12130
12132
  # stream: {
@@ -12174,6 +12176,11 @@ module Aws::IoT
12174
12176
  # The name of the file.
12175
12177
  # @return [String]
12176
12178
  #
12179
+ # @!attribute [rw] file_type
12180
+ # An integer value you can include in the job document to allow your
12181
+ # devices to identify the type of file received from the cloud.
12182
+ # @return [Integer]
12183
+ #
12177
12184
  # @!attribute [rw] file_version
12178
12185
  # The file version.
12179
12186
  # @return [String]
@@ -12192,6 +12199,7 @@ module Aws::IoT
12192
12199
  #
12193
12200
  class OTAUpdateFile < Struct.new(
12194
12201
  :file_name,
12202
+ :file_type,
12195
12203
  :file_version,
12196
12204
  :file_location,
12197
12205
  :code_signing,
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.62.0
4
+ version: 1.63.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: 2020-11-12 00:00:00.000000000 Z
11
+ date: 2020-11-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core