aws-sdk-iotdeviceadvisor 1.63.0 → 1.64.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: 481d0c7f198c080b37993891198f4e646aab8953340ccf0ab88390cf69b5d667
4
- data.tar.gz: 13649cb1bae2d86a04525519768df771a17316ab8285928f7f954ea937175324
3
+ metadata.gz: 0ecf62f624637e81922ddb5d00acf9286734d26a45de2d15a95b90c18d4c0495
4
+ data.tar.gz: 8f34c7570136603627bbf548ac203b1c9cb36be6ad5b8b2cb1205dbe6e039d99
5
5
  SHA512:
6
- metadata.gz: f6a0583204198e759cf463f59a4e87caf574622526695943a0b117e0a60e2687efe309463f68c047560df3f13b5cf53b4412cb72c9487e58e0b26b3eb6d5d3a9
7
- data.tar.gz: 248ff8a3685ea4f4c85c4e0efc07d92b95d3cd1bbd698b8bfb18ed5ffe5b546bcc591e759bf641d4772aebcd03c3b70b83a3aaeab88d3f1090b20d2a84727bbd
6
+ metadata.gz: f9e30897fea2f142d3cc2b8e1cdf7a7e098856d8bd32783e16a7b7bfbaa3a00517fdcd62fb4cc257c89b602105e6a55eb446a2386223537ca8a6c102bc373c51
7
+ data.tar.gz: f3a62087d1b58f711c9d7a1d66cd329adca52b65c3aa25816787cb51d4ba43f8d764ed587d10e68e569227b64e1ff5a25f403c8693643655bfbf0db946d3c506
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.63.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.64.0
@@ -1164,7 +1164,7 @@ module Aws::IoTDeviceAdvisor
1164
1164
  tracer: tracer
1165
1165
  )
1166
1166
  context[:gem_name] = 'aws-sdk-iotdeviceadvisor'
1167
- context[:gem_version] = '1.63.0'
1167
+ context[:gem_version] = '1.64.0'
1168
1168
  Seahorse::Client::Request.new(handlers, context)
1169
1169
  end
1170
1170
 
@@ -54,7 +54,7 @@ module Aws::IoTDeviceAdvisor
54
54
  autoload :EndpointProvider, 'aws-sdk-iotdeviceadvisor/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-iotdeviceadvisor/endpoints'
56
56
 
57
- GEM_VERSION = '1.63.0'
57
+ GEM_VERSION = '1.64.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -87,21 +87,7 @@ module Aws
87
87
  end
88
88
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTDeviceAdvisor/Client.html#create_suite_definition-instance_method
89
89
  def create_suite_definition: (
90
- suite_definition_configuration: {
91
- suite_definition_name: ::String,
92
- devices: Array[
93
- {
94
- thing_arn: ::String?,
95
- certificate_arn: ::String?,
96
- device_role_arn: ::String?
97
- },
98
- ]?,
99
- intended_for_qualification: bool?,
100
- is_long_duration_test: bool?,
101
- root_group: ::String,
102
- device_permission_role_arn: ::String,
103
- protocol: ("MqttV3_1_1" | "MqttV5" | "MqttV3_1_1_OverWebSocket" | "MqttV5_OverWebSocket")?
104
- },
90
+ suite_definition_configuration: Params::suite_definition_configuration,
105
91
  ?tags: Hash[::String, ::String],
106
92
  ?client_token: ::String
107
93
  ) -> _CreateSuiteDefinitionResponseSuccess
@@ -281,21 +267,7 @@ module Aws
281
267
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTDeviceAdvisor/Client.html#update_suite_definition-instance_method
282
268
  def update_suite_definition: (
283
269
  suite_definition_id: ::String,
284
- suite_definition_configuration: {
285
- suite_definition_name: ::String,
286
- devices: Array[
287
- {
288
- thing_arn: ::String?,
289
- certificate_arn: ::String?,
290
- device_role_arn: ::String?
291
- },
292
- ]?,
293
- intended_for_qualification: bool?,
294
- is_long_duration_test: bool?,
295
- root_group: ::String,
296
- device_permission_role_arn: ::String,
297
- protocol: ("MqttV3_1_1" | "MqttV5" | "MqttV3_1_1_OverWebSocket" | "MqttV5_OverWebSocket")?
298
- }
270
+ suite_definition_configuration: Params::suite_definition_configuration
299
271
  ) -> _UpdateSuiteDefinitionResponseSuccess
300
272
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSuiteDefinitionResponseSuccess
301
273
  end
data/sig/params.rbs ADDED
@@ -0,0 +1,29 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module IoTDeviceAdvisor
10
+ module Params
11
+ type suite_definition_configuration = {
12
+ suite_definition_name: ::String,
13
+ devices: Array[
14
+ {
15
+ thing_arn: ::String?,
16
+ certificate_arn: ::String?,
17
+ device_role_arn: ::String?
18
+ }
19
+ ]?,
20
+ intended_for_qualification: bool?,
21
+ is_long_duration_test: bool?,
22
+ root_group: ::String,
23
+ device_permission_role_arn: ::String,
24
+ protocol: ("MqttV3_1_1" | "MqttV5" | "MqttV3_1_1_OverWebSocket" | "MqttV5_OverWebSocket")?
25
+ }
26
+
27
+ end
28
+ end
29
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotdeviceadvisor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.63.0
4
+ version: 1.64.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-iotdeviceadvisor/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs