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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotdeviceadvisor/client.rb +1 -1
- data/lib/aws-sdk-iotdeviceadvisor.rb +1 -1
- data/sig/client.rbs +2 -30
- data/sig/params.rbs +29 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ecf62f624637e81922ddb5d00acf9286734d26a45de2d15a95b90c18d4c0495
|
|
4
|
+
data.tar.gz: 8f34c7570136603627bbf548ac203b1c9cb36be6ad5b8b2cb1205dbe6e039d99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9e30897fea2f142d3cc2b8e1cdf7a7e098856d8bd32783e16a7b7bfbaa3a00517fdcd62fb4cc257c89b602105e6a55eb446a2386223537ca8a6c102bc373c51
|
|
7
|
+
data.tar.gz: f3a62087d1b58f711c9d7a1d66cd329adca52b65c3aa25816787cb51d4ba43f8d764ed587d10e68e569227b64e1ff5a25f403c8693643655bfbf0db946d3c506
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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.
|
|
1167
|
+
context[:gem_version] = '1.64.0'
|
|
1168
1168
|
Seahorse::Client::Request.new(handlers, context)
|
|
1169
1169
|
end
|
|
1170
1170
|
|
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.
|
|
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
|