aws-sdk-iot 1.67.0 → 1.68.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: 49c667b9e0f9eb63e2dbe7844294879f9bbfd475f0ef8f97ea852ed55bcbf373
4
- data.tar.gz: ab9eb64b3ac1882ae85e5a21a72bc098ac0ff3e2c3e6935ed9f73c6677343797
3
+ metadata.gz: 8f528ccf03a1531fa35a93e8d435e04c1598be96b244c05d3282d2dfec567b4d
4
+ data.tar.gz: 959b427ac5f8a81548e999ca1478bca3d097b72b9cdc58931e349b134154fa64
5
5
  SHA512:
6
- metadata.gz: 7cd7c5586fea3af7450b8c6e697c8bbedc67d26db95a19ab054610fe514209a3e316a3df631bb4009ac350a2738d248d8e2866bb22f8a52b8e30bbc344388ae6
7
- data.tar.gz: 9ab38048ec5cf796e8ea86cd64a6785b7b29f4a25458c043c858e50b8f0269845be1783402bf2679cf2e709e76ed385750d5d54ebaf3961f5c44b5cbfd38c53f
6
+ metadata.gz: 46f0d8772008779f15a54f9b6428a25b3aea70722cfa4875214a613d03f6d24fde7a87f1d076117ebf9a8f6d546d56f4a71809f2d6a100e0a15fed7a557f79cf
7
+ data.tar.gz: 938aebe64fa9c144151b494ce4b99c40728fa682b300139a8753eee51724e8814b98f29306b65bc537cbba1ccab673d7ce689394c74de59b63e49db19e721f66
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2021-03-31)
5
+ ------------------
6
+
7
+ * Feature - Added ability to prefix search on attribute value for ListThings API.
8
+
4
9
  1.67.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
data/lib/aws-sdk-iot.rb CHANGED
@@ -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.67.0'
51
+ GEM_VERSION = '1.68.0'
52
52
 
53
53
  end
@@ -8332,6 +8332,14 @@ module Aws::IoT
8332
8332
  # @option params [String] :thing_type_name
8333
8333
  # The name of the thing type used to search for things.
8334
8334
  #
8335
+ # @option params [Boolean] :use_prefix_attribute_value
8336
+ # When `true`, the action returns the thing resources with attribute
8337
+ # values that start with the `attributeValue` provided.
8338
+ #
8339
+ # When `false`, or not present, the action returns only the thing
8340
+ # resources with attribute values that match the entire `attributeValue`
8341
+ # provided.
8342
+ #
8335
8343
  # @return [Types::ListThingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8336
8344
  #
8337
8345
  # * {Types::ListThingsResponse#things #things} => Array<Types::ThingAttribute>
@@ -8347,6 +8355,7 @@ module Aws::IoT
8347
8355
  # attribute_name: "AttributeName",
8348
8356
  # attribute_value: "AttributeValue",
8349
8357
  # thing_type_name: "ThingTypeName",
8358
+ # use_prefix_attribute_value: false,
8350
8359
  # })
8351
8360
  #
8352
8361
  # @example Response structure
@@ -11346,7 +11355,7 @@ module Aws::IoT
11346
11355
  params: params,
11347
11356
  config: config)
11348
11357
  context[:gem_name] = 'aws-sdk-iot'
11349
- context[:gem_version] = '1.67.0'
11358
+ context[:gem_version] = '1.68.0'
11350
11359
  Seahorse::Client::Request.new(handlers, context)
11351
11360
  end
11352
11361
 
@@ -1184,6 +1184,7 @@ module Aws::IoT
1184
1184
  resourceArn = Shapes::StringShape.new(name: 'resourceArn')
1185
1185
  resourceId = Shapes::StringShape.new(name: 'resourceId')
1186
1186
  stringValue = Shapes::StringShape.new(name: 'stringValue')
1187
+ usePrefixAttributeValue = Shapes::BooleanShape.new(name: 'usePrefixAttributeValue')
1187
1188
 
1188
1189
  AbortConfig.add_member(:criteria_list, Shapes::ShapeRef.new(shape: AbortCriteriaList, required: true, location_name: "criteriaList"))
1189
1190
  AbortConfig.struct_class = Types::AbortConfig
@@ -3347,6 +3348,7 @@ module Aws::IoT
3347
3348
  ListThingsRequest.add_member(:attribute_name, Shapes::ShapeRef.new(shape: AttributeName, location: "querystring", location_name: "attributeName"))
3348
3349
  ListThingsRequest.add_member(:attribute_value, Shapes::ShapeRef.new(shape: AttributeValue, location: "querystring", location_name: "attributeValue"))
3349
3350
  ListThingsRequest.add_member(:thing_type_name, Shapes::ShapeRef.new(shape: ThingTypeName, location: "querystring", location_name: "thingTypeName"))
3351
+ ListThingsRequest.add_member(:use_prefix_attribute_value, Shapes::ShapeRef.new(shape: usePrefixAttributeValue, location: "querystring", location_name: "usePrefixAttributeValue"))
3350
3352
  ListThingsRequest.struct_class = Types::ListThingsRequest
3351
3353
 
3352
3354
  ListThingsResponse.add_member(:things, Shapes::ShapeRef.new(shape: ThingAttributeList, location_name: "things"))
@@ -2,7 +2,7 @@
2
2
  # WARNING ABOUT GENERATED CODE
3
3
  #
4
4
  # This file is generated. See the contributing for info on making contributions:
5
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
5
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
6
6
  #
7
7
  # WARNING ABOUT GENERATED CODE
8
8
 
@@ -12258,6 +12258,7 @@ module Aws::IoT
12258
12258
  # attribute_name: "AttributeName",
12259
12259
  # attribute_value: "AttributeValue",
12260
12260
  # thing_type_name: "ThingTypeName",
12261
+ # use_prefix_attribute_value: false,
12261
12262
  # }
12262
12263
  #
12263
12264
  # @!attribute [rw] next_token
@@ -12282,12 +12283,22 @@ module Aws::IoT
12282
12283
  # The name of the thing type used to search for things.
12283
12284
  # @return [String]
12284
12285
  #
12286
+ # @!attribute [rw] use_prefix_attribute_value
12287
+ # When `true`, the action returns the thing resources with attribute
12288
+ # values that start with the `attributeValue` provided.
12289
+ #
12290
+ # When `false`, or not present, the action returns only the thing
12291
+ # resources with attribute values that match the entire
12292
+ # `attributeValue` provided.
12293
+ # @return [Boolean]
12294
+ #
12285
12295
  class ListThingsRequest < Struct.new(
12286
12296
  :next_token,
12287
12297
  :max_results,
12288
12298
  :attribute_name,
12289
12299
  :attribute_value,
12290
- :thing_type_name)
12300
+ :thing_type_name,
12301
+ :use_prefix_attribute_value)
12291
12302
  SENSITIVE = []
12292
12303
  include Aws::Structure
12293
12304
  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.67.0
4
+ version: 1.68.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: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-iot
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-iot/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iot
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iot/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths: