aws-sdk-iotdeviceadvisor 1.8.0 → 1.9.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 +118 -12
- data/lib/aws-sdk-iotdeviceadvisor/client_api.rb +23 -0
- data/lib/aws-sdk-iotdeviceadvisor/types.rb +93 -31
- data/lib/aws-sdk-iotdeviceadvisor.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9210ba818682fed8233ee5339c09cbbdb5c3ff3f16aced85d15cc4db2c10d4e9
|
4
|
+
data.tar.gz: 297922e6bd7a90afecef70ecdcca2a413d794bd5cf02ad2d2628e98c88416111
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7629f1dd316576b6e1d2b3c7838716f155d9aa0aa5c817d0b3b92bce03887376c388ca9c1ea7a57563b5d3a29b715a81ab5783842b6a021b46c07751d83f215
|
7
|
+
data.tar.gz: 71da5f7573efba73430d6169b353920f3b0fe53ae4eb7ed0ca3ea2bb23aea15981bf12286bfa6e678568e1165d65de736755af103aa0fe0241ac02de4ef88a23
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2021-11-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces a new feature for Device Advisor: ability to execute multiple test suites in parallel for given customer account. You can use GetEndpoint API to get the device-level test endpoint and call StartSuiteRun with "parallelRun=true" to run suites in parallel.
|
8
|
+
|
4
9
|
1.8.0 (2021-11-04)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -338,6 +338,12 @@ module Aws::IoTDeviceAdvisor
|
|
338
338
|
|
339
339
|
# Creates a Device Advisor test suite.
|
340
340
|
#
|
341
|
+
# Requires permission to access the [CreateSuiteDefinition][1] action.
|
342
|
+
#
|
343
|
+
#
|
344
|
+
#
|
345
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
346
|
+
#
|
341
347
|
# @option params [Types::SuiteDefinitionConfiguration] :suite_definition_configuration
|
342
348
|
# Creates a Device Advisor test suite with suite definition
|
343
349
|
# configuration.
|
@@ -388,8 +394,14 @@ module Aws::IoTDeviceAdvisor
|
|
388
394
|
|
389
395
|
# Deletes a Device Advisor test suite.
|
390
396
|
#
|
397
|
+
# Requires permission to access the [DeleteSuiteDefinition][1] action.
|
398
|
+
#
|
399
|
+
#
|
400
|
+
#
|
401
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
402
|
+
#
|
391
403
|
# @option params [required, String] :suite_definition_id
|
392
|
-
# Suite definition
|
404
|
+
# Suite definition ID of the test suite to be deleted.
|
393
405
|
#
|
394
406
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
395
407
|
#
|
@@ -406,10 +418,42 @@ module Aws::IoTDeviceAdvisor
|
|
406
418
|
req.send_request(options)
|
407
419
|
end
|
408
420
|
|
421
|
+
# @option params [String] :thing_arn
|
422
|
+
#
|
423
|
+
# @option params [String] :certificate_arn
|
424
|
+
#
|
425
|
+
# @return [Types::GetEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
426
|
+
#
|
427
|
+
# * {Types::GetEndpointResponse#endpoint #endpoint} => String
|
428
|
+
#
|
429
|
+
# @example Request syntax with placeholder values
|
430
|
+
#
|
431
|
+
# resp = client.get_endpoint({
|
432
|
+
# thing_arn: "AmazonResourceName",
|
433
|
+
# certificate_arn: "AmazonResourceName",
|
434
|
+
# })
|
435
|
+
#
|
436
|
+
# @example Response structure
|
437
|
+
#
|
438
|
+
# resp.endpoint #=> String
|
439
|
+
#
|
440
|
+
# @overload get_endpoint(params = {})
|
441
|
+
# @param [Hash] params ({})
|
442
|
+
def get_endpoint(params = {}, options = {})
|
443
|
+
req = build_request(:get_endpoint, params)
|
444
|
+
req.send_request(options)
|
445
|
+
end
|
446
|
+
|
409
447
|
# Gets information about a Device Advisor test suite.
|
410
448
|
#
|
449
|
+
# Requires permission to access the [GetSuiteDefinition][1] action.
|
450
|
+
#
|
451
|
+
#
|
452
|
+
#
|
453
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
454
|
+
#
|
411
455
|
# @option params [required, String] :suite_definition_id
|
412
|
-
# Suite definition
|
456
|
+
# Suite definition ID of the test suite to get.
|
413
457
|
#
|
414
458
|
# @option params [String] :suite_definition_version
|
415
459
|
# Suite definition version of the test suite to get.
|
@@ -459,11 +503,17 @@ module Aws::IoTDeviceAdvisor
|
|
459
503
|
|
460
504
|
# Gets information about a Device Advisor test suite run.
|
461
505
|
#
|
506
|
+
# Requires permission to access the [GetSuiteRun][1] action.
|
507
|
+
#
|
508
|
+
#
|
509
|
+
#
|
510
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
511
|
+
#
|
462
512
|
# @option params [required, String] :suite_definition_id
|
463
|
-
# Suite definition
|
513
|
+
# Suite definition ID for the test suite run.
|
464
514
|
#
|
465
515
|
# @option params [required, String] :suite_run_id
|
466
|
-
# Suite run
|
516
|
+
# Suite run ID for the test suite run.
|
467
517
|
#
|
468
518
|
# @return [Types::GetSuiteRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
469
519
|
#
|
@@ -496,6 +546,7 @@ module Aws::IoTDeviceAdvisor
|
|
496
546
|
# resp.suite_run_configuration.primary_device.certificate_arn #=> String
|
497
547
|
# resp.suite_run_configuration.selected_test_list #=> Array
|
498
548
|
# resp.suite_run_configuration.selected_test_list[0] #=> String
|
549
|
+
# resp.suite_run_configuration.parallel_run #=> Boolean
|
499
550
|
# resp.test_result.groups #=> Array
|
500
551
|
# resp.test_result.groups[0].group_id #=> String
|
501
552
|
# resp.test_result.groups[0].group_name #=> String
|
@@ -526,11 +577,17 @@ module Aws::IoTDeviceAdvisor
|
|
526
577
|
# Gets a report download link for a successful Device Advisor qualifying
|
527
578
|
# test suite run.
|
528
579
|
#
|
580
|
+
# Requires permission to access the [GetSuiteRunReport][1] action.
|
581
|
+
#
|
582
|
+
#
|
583
|
+
#
|
584
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
585
|
+
#
|
529
586
|
# @option params [required, String] :suite_definition_id
|
530
|
-
# Suite definition
|
587
|
+
# Suite definition ID of the test suite.
|
531
588
|
#
|
532
589
|
# @option params [required, String] :suite_run_id
|
533
|
-
# Suite run
|
590
|
+
# Suite run ID of the test suite run.
|
534
591
|
#
|
535
592
|
# @return [Types::GetSuiteRunReportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
536
593
|
#
|
@@ -556,6 +613,12 @@ module Aws::IoTDeviceAdvisor
|
|
556
613
|
|
557
614
|
# Lists the Device Advisor test suites you have created.
|
558
615
|
#
|
616
|
+
# Requires permission to access the [ListSuiteDefinitions][1] action.
|
617
|
+
#
|
618
|
+
#
|
619
|
+
#
|
620
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
621
|
+
#
|
559
622
|
# @option params [Integer] :max_results
|
560
623
|
# The maximum number of results to return at once.
|
561
624
|
#
|
@@ -599,9 +662,15 @@ module Aws::IoTDeviceAdvisor
|
|
599
662
|
# list all runs of the test suite, or the runs of a specific version of
|
600
663
|
# the test suite.
|
601
664
|
#
|
665
|
+
# Requires permission to access the [ListSuiteRuns][1] action.
|
666
|
+
#
|
667
|
+
#
|
668
|
+
#
|
669
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
670
|
+
#
|
602
671
|
# @option params [String] :suite_definition_id
|
603
672
|
# Lists the test suite runs of the specified test suite based on suite
|
604
|
-
# definition
|
673
|
+
# definition ID.
|
605
674
|
#
|
606
675
|
# @option params [String] :suite_definition_version
|
607
676
|
# Must be passed along with suiteDefinitionId. Lists the test suite runs
|
@@ -653,6 +722,12 @@ module Aws::IoTDeviceAdvisor
|
|
653
722
|
|
654
723
|
# Lists the tags attached to an IoT Device Advisor resource.
|
655
724
|
#
|
725
|
+
# Requires permission to access the [ListTagsForResource][1] action.
|
726
|
+
#
|
727
|
+
#
|
728
|
+
#
|
729
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
730
|
+
#
|
656
731
|
# @option params [required, String] :resource_arn
|
657
732
|
# The ARN of the IoT Device Advisor resource.
|
658
733
|
#
|
@@ -680,8 +755,14 @@ module Aws::IoTDeviceAdvisor
|
|
680
755
|
|
681
756
|
# Starts a Device Advisor test suite run.
|
682
757
|
#
|
758
|
+
# Requires permission to access the [StartSuiteRun][1] action.
|
759
|
+
#
|
760
|
+
#
|
761
|
+
#
|
762
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
763
|
+
#
|
683
764
|
# @option params [required, String] :suite_definition_id
|
684
|
-
# Suite definition
|
765
|
+
# Suite definition ID of the test suite.
|
685
766
|
#
|
686
767
|
# @option params [String] :suite_definition_version
|
687
768
|
# Suite definition version of the test suite.
|
@@ -709,6 +790,7 @@ module Aws::IoTDeviceAdvisor
|
|
709
790
|
# certificate_arn: "AmazonResourceName",
|
710
791
|
# },
|
711
792
|
# selected_test_list: ["UUID"],
|
793
|
+
# parallel_run: false,
|
712
794
|
# },
|
713
795
|
# tags: {
|
714
796
|
# "String128" => "String256",
|
@@ -730,11 +812,17 @@ module Aws::IoTDeviceAdvisor
|
|
730
812
|
|
731
813
|
# Stops a Device Advisor test suite run that is currently running.
|
732
814
|
#
|
815
|
+
# Requires permission to access the [StopSuiteRun][1] action.
|
816
|
+
#
|
817
|
+
#
|
818
|
+
#
|
819
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
820
|
+
#
|
733
821
|
# @option params [required, String] :suite_definition_id
|
734
|
-
# Suite definition
|
822
|
+
# Suite definition ID of the test suite run to be stopped.
|
735
823
|
#
|
736
824
|
# @option params [required, String] :suite_run_id
|
737
|
-
# Suite run
|
825
|
+
# Suite run ID of the test suite run to be stopped.
|
738
826
|
#
|
739
827
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
740
828
|
#
|
@@ -754,6 +842,12 @@ module Aws::IoTDeviceAdvisor
|
|
754
842
|
|
755
843
|
# Adds to and modifies existing tags of an IoT Device Advisor resource.
|
756
844
|
#
|
845
|
+
# Requires permission to access the [TagResource][1] action.
|
846
|
+
#
|
847
|
+
#
|
848
|
+
#
|
849
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
850
|
+
#
|
757
851
|
# @option params [required, String] :resource_arn
|
758
852
|
# The resource ARN of an IoT Device Advisor resource.
|
759
853
|
#
|
@@ -780,6 +874,12 @@ module Aws::IoTDeviceAdvisor
|
|
780
874
|
|
781
875
|
# Removes tags from an IoT Device Advisor resource.
|
782
876
|
#
|
877
|
+
# Requires permission to access the [UntagResource][1] action.
|
878
|
+
#
|
879
|
+
#
|
880
|
+
#
|
881
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
882
|
+
#
|
783
883
|
# @option params [required, String] :resource_arn
|
784
884
|
# The resource ARN of an IoT Device Advisor resource.
|
785
885
|
#
|
@@ -804,8 +904,14 @@ module Aws::IoTDeviceAdvisor
|
|
804
904
|
|
805
905
|
# Updates a Device Advisor test suite.
|
806
906
|
#
|
907
|
+
# Requires permission to access the [UpdateSuiteDefinition][1] action.
|
908
|
+
#
|
909
|
+
#
|
910
|
+
#
|
911
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
912
|
+
#
|
807
913
|
# @option params [required, String] :suite_definition_id
|
808
|
-
# Suite definition
|
914
|
+
# Suite definition ID of the test suite to be updated.
|
809
915
|
#
|
810
916
|
# @option params [Types::SuiteDefinitionConfiguration] :suite_definition_configuration
|
811
917
|
# Updates a Device Advisor test suite with suite definition
|
@@ -867,7 +973,7 @@ module Aws::IoTDeviceAdvisor
|
|
867
973
|
params: params,
|
868
974
|
config: config)
|
869
975
|
context[:gem_name] = 'aws-sdk-iotdeviceadvisor'
|
870
|
-
context[:gem_version] = '1.
|
976
|
+
context[:gem_version] = '1.9.0'
|
871
977
|
Seahorse::Client::Request.new(handlers, context)
|
872
978
|
end
|
873
979
|
|
@@ -21,8 +21,11 @@ module Aws::IoTDeviceAdvisor
|
|
21
21
|
DeleteSuiteDefinitionResponse = Shapes::StructureShape.new(name: 'DeleteSuiteDefinitionResponse')
|
22
22
|
DeviceUnderTest = Shapes::StructureShape.new(name: 'DeviceUnderTest')
|
23
23
|
DeviceUnderTestList = Shapes::ListShape.new(name: 'DeviceUnderTestList')
|
24
|
+
Endpoint = Shapes::StringShape.new(name: 'Endpoint')
|
24
25
|
ErrorReason = Shapes::StringShape.new(name: 'ErrorReason')
|
25
26
|
Failure = Shapes::StringShape.new(name: 'Failure')
|
27
|
+
GetEndpointRequest = Shapes::StructureShape.new(name: 'GetEndpointRequest')
|
28
|
+
GetEndpointResponse = Shapes::StructureShape.new(name: 'GetEndpointResponse')
|
26
29
|
GetSuiteDefinitionRequest = Shapes::StructureShape.new(name: 'GetSuiteDefinitionRequest')
|
27
30
|
GetSuiteDefinitionResponse = Shapes::StructureShape.new(name: 'GetSuiteDefinitionResponse')
|
28
31
|
GetSuiteRunReportRequest = Shapes::StructureShape.new(name: 'GetSuiteRunReportRequest')
|
@@ -43,6 +46,7 @@ module Aws::IoTDeviceAdvisor
|
|
43
46
|
LogUrl = Shapes::StringShape.new(name: 'LogUrl')
|
44
47
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
45
48
|
Message = Shapes::StringShape.new(name: 'Message')
|
49
|
+
ParallelRun = Shapes::BooleanShape.new(name: 'ParallelRun')
|
46
50
|
QualificationReportDownloadUrl = Shapes::StringShape.new(name: 'QualificationReportDownloadUrl')
|
47
51
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
48
52
|
RootGroup = Shapes::StringShape.new(name: 'RootGroup')
|
@@ -106,6 +110,13 @@ module Aws::IoTDeviceAdvisor
|
|
106
110
|
|
107
111
|
DeviceUnderTestList.member = Shapes::ShapeRef.new(shape: DeviceUnderTest)
|
108
112
|
|
113
|
+
GetEndpointRequest.add_member(:thing_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location: "querystring", location_name: "thingArn"))
|
114
|
+
GetEndpointRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, location: "querystring", location_name: "certificateArn"))
|
115
|
+
GetEndpointRequest.struct_class = Types::GetEndpointRequest
|
116
|
+
|
117
|
+
GetEndpointResponse.add_member(:endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "endpoint"))
|
118
|
+
GetEndpointResponse.struct_class = Types::GetEndpointResponse
|
119
|
+
|
109
120
|
GetSuiteDefinitionRequest.add_member(:suite_definition_id, Shapes::ShapeRef.new(shape: UUID, required: true, location: "uri", location_name: "suiteDefinitionId"))
|
110
121
|
GetSuiteDefinitionRequest.add_member(:suite_definition_version, Shapes::ShapeRef.new(shape: SuiteDefinitionVersion, location: "querystring", location_name: "suiteDefinitionVersion"))
|
111
122
|
GetSuiteDefinitionRequest.struct_class = Types::GetSuiteDefinitionRequest
|
@@ -218,6 +229,7 @@ module Aws::IoTDeviceAdvisor
|
|
218
229
|
|
219
230
|
SuiteRunConfiguration.add_member(:primary_device, Shapes::ShapeRef.new(shape: DeviceUnderTest, location_name: "primaryDevice"))
|
220
231
|
SuiteRunConfiguration.add_member(:selected_test_list, Shapes::ShapeRef.new(shape: SelectedTestList, location_name: "selectedTestList"))
|
232
|
+
SuiteRunConfiguration.add_member(:parallel_run, Shapes::ShapeRef.new(shape: ParallelRun, location_name: "parallelRun"))
|
221
233
|
SuiteRunConfiguration.struct_class = Types::SuiteRunConfiguration
|
222
234
|
|
223
235
|
SuiteRunInformation.add_member(:suite_definition_id, Shapes::ShapeRef.new(shape: UUID, location_name: "suiteDefinitionId"))
|
@@ -321,6 +333,17 @@ module Aws::IoTDeviceAdvisor
|
|
321
333
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
322
334
|
end)
|
323
335
|
|
336
|
+
api.add_operation(:get_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
337
|
+
o.name = "GetEndpoint"
|
338
|
+
o.http_method = "GET"
|
339
|
+
o.http_request_uri = "/endpoint"
|
340
|
+
o.input = Shapes::ShapeRef.new(shape: GetEndpointRequest)
|
341
|
+
o.output = Shapes::ShapeRef.new(shape: GetEndpointResponse)
|
342
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
343
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
344
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
345
|
+
end)
|
346
|
+
|
324
347
|
api.add_operation(:get_suite_definition, Seahorse::Model::Operation.new.tap do |o|
|
325
348
|
o.name = "GetSuiteDefinition"
|
326
349
|
o.http_method = "GET"
|
@@ -64,7 +64,7 @@ module Aws::IoTDeviceAdvisor
|
|
64
64
|
# @return [String]
|
65
65
|
#
|
66
66
|
# @!attribute [rw] suite_definition_arn
|
67
|
-
# Creates a Device Advisor test suite with Amazon Resource
|
67
|
+
# Creates a Device Advisor test suite with Amazon Resource Name (ARN).
|
68
68
|
# @return [String]
|
69
69
|
#
|
70
70
|
# @!attribute [rw] suite_definition_name
|
@@ -93,7 +93,7 @@ module Aws::IoTDeviceAdvisor
|
|
93
93
|
# }
|
94
94
|
#
|
95
95
|
# @!attribute [rw] suite_definition_id
|
96
|
-
# Suite definition
|
96
|
+
# Suite definition ID of the test suite to be deleted.
|
97
97
|
# @return [String]
|
98
98
|
#
|
99
99
|
class DeleteSuiteDefinitionRequest < Struct.new(
|
@@ -104,7 +104,8 @@ module Aws::IoTDeviceAdvisor
|
|
104
104
|
|
105
105
|
class DeleteSuiteDefinitionResponse < Aws::EmptyStructure; end
|
106
106
|
|
107
|
-
#
|
107
|
+
# Information of a test device. Required to provide either a thing ARN
|
108
|
+
# or a certificate ARN.
|
108
109
|
#
|
109
110
|
# @note When making an API call, you may pass DeviceUnderTest
|
110
111
|
# data as a hash:
|
@@ -115,11 +116,11 @@ module Aws::IoTDeviceAdvisor
|
|
115
116
|
# }
|
116
117
|
#
|
117
118
|
# @!attribute [rw] thing_arn
|
118
|
-
# Lists devices thing
|
119
|
+
# Lists devices thing ARN.
|
119
120
|
# @return [String]
|
120
121
|
#
|
121
122
|
# @!attribute [rw] certificate_arn
|
122
|
-
# Lists devices certificate
|
123
|
+
# Lists devices certificate ARN.
|
123
124
|
# @return [String]
|
124
125
|
#
|
125
126
|
class DeviceUnderTest < Struct.new(
|
@@ -129,6 +130,36 @@ module Aws::IoTDeviceAdvisor
|
|
129
130
|
include Aws::Structure
|
130
131
|
end
|
131
132
|
|
133
|
+
# @note When making an API call, you may pass GetEndpointRequest
|
134
|
+
# data as a hash:
|
135
|
+
#
|
136
|
+
# {
|
137
|
+
# thing_arn: "AmazonResourceName",
|
138
|
+
# certificate_arn: "AmazonResourceName",
|
139
|
+
# }
|
140
|
+
#
|
141
|
+
# @!attribute [rw] thing_arn
|
142
|
+
# @return [String]
|
143
|
+
#
|
144
|
+
# @!attribute [rw] certificate_arn
|
145
|
+
# @return [String]
|
146
|
+
#
|
147
|
+
class GetEndpointRequest < Struct.new(
|
148
|
+
:thing_arn,
|
149
|
+
:certificate_arn)
|
150
|
+
SENSITIVE = []
|
151
|
+
include Aws::Structure
|
152
|
+
end
|
153
|
+
|
154
|
+
# @!attribute [rw] endpoint
|
155
|
+
# @return [String]
|
156
|
+
#
|
157
|
+
class GetEndpointResponse < Struct.new(
|
158
|
+
:endpoint)
|
159
|
+
SENSITIVE = []
|
160
|
+
include Aws::Structure
|
161
|
+
end
|
162
|
+
|
132
163
|
# @note When making an API call, you may pass GetSuiteDefinitionRequest
|
133
164
|
# data as a hash:
|
134
165
|
#
|
@@ -138,7 +169,7 @@ module Aws::IoTDeviceAdvisor
|
|
138
169
|
# }
|
139
170
|
#
|
140
171
|
# @!attribute [rw] suite_definition_id
|
141
|
-
# Suite definition
|
172
|
+
# Suite definition ID of the test suite to get.
|
142
173
|
# @return [String]
|
143
174
|
#
|
144
175
|
# @!attribute [rw] suite_definition_version
|
@@ -153,7 +184,7 @@ module Aws::IoTDeviceAdvisor
|
|
153
184
|
end
|
154
185
|
|
155
186
|
# @!attribute [rw] suite_definition_id
|
156
|
-
# Suite definition
|
187
|
+
# Suite definition ID of the suite definition.
|
157
188
|
# @return [String]
|
158
189
|
#
|
159
190
|
# @!attribute [rw] suite_definition_arn
|
@@ -207,11 +238,11 @@ module Aws::IoTDeviceAdvisor
|
|
207
238
|
# }
|
208
239
|
#
|
209
240
|
# @!attribute [rw] suite_definition_id
|
210
|
-
# Suite definition
|
241
|
+
# Suite definition ID of the test suite.
|
211
242
|
# @return [String]
|
212
243
|
#
|
213
244
|
# @!attribute [rw] suite_run_id
|
214
|
-
# Suite run
|
245
|
+
# Suite run ID of the test suite run.
|
215
246
|
# @return [String]
|
216
247
|
#
|
217
248
|
class GetSuiteRunReportRequest < Struct.new(
|
@@ -240,11 +271,11 @@ module Aws::IoTDeviceAdvisor
|
|
240
271
|
# }
|
241
272
|
#
|
242
273
|
# @!attribute [rw] suite_definition_id
|
243
|
-
# Suite definition
|
274
|
+
# Suite definition ID for the test suite run.
|
244
275
|
# @return [String]
|
245
276
|
#
|
246
277
|
# @!attribute [rw] suite_run_id
|
247
|
-
# Suite run
|
278
|
+
# Suite run ID for the test suite run.
|
248
279
|
# @return [String]
|
249
280
|
#
|
250
281
|
class GetSuiteRunRequest < Struct.new(
|
@@ -255,7 +286,7 @@ module Aws::IoTDeviceAdvisor
|
|
255
286
|
end
|
256
287
|
|
257
288
|
# @!attribute [rw] suite_definition_id
|
258
|
-
# Suite definition
|
289
|
+
# Suite definition ID for the test suite run.
|
259
290
|
# @return [String]
|
260
291
|
#
|
261
292
|
# @!attribute [rw] suite_definition_version
|
@@ -263,7 +294,7 @@ module Aws::IoTDeviceAdvisor
|
|
263
294
|
# @return [String]
|
264
295
|
#
|
265
296
|
# @!attribute [rw] suite_run_id
|
266
|
-
# Suite run
|
297
|
+
# Suite run ID for the test suite run.
|
267
298
|
# @return [String]
|
268
299
|
#
|
269
300
|
# @!attribute [rw] suite_run_arn
|
@@ -317,7 +348,7 @@ module Aws::IoTDeviceAdvisor
|
|
317
348
|
# Show Group Result.
|
318
349
|
#
|
319
350
|
# @!attribute [rw] group_id
|
320
|
-
# Group result
|
351
|
+
# Group result ID.
|
321
352
|
# @return [String]
|
322
353
|
#
|
323
354
|
# @!attribute [rw] group_name
|
@@ -399,7 +430,7 @@ module Aws::IoTDeviceAdvisor
|
|
399
430
|
#
|
400
431
|
# @!attribute [rw] suite_definition_id
|
401
432
|
# Lists the test suite runs of the specified test suite based on suite
|
402
|
-
# definition
|
433
|
+
# definition ID.
|
403
434
|
# @return [String]
|
404
435
|
#
|
405
436
|
# @!attribute [rw] suite_definition_version
|
@@ -491,6 +522,7 @@ module Aws::IoTDeviceAdvisor
|
|
491
522
|
# certificate_arn: "AmazonResourceName",
|
492
523
|
# },
|
493
524
|
# selected_test_list: ["UUID"],
|
525
|
+
# parallel_run: false,
|
494
526
|
# },
|
495
527
|
# tags: {
|
496
528
|
# "String128" => "String256",
|
@@ -498,7 +530,7 @@ module Aws::IoTDeviceAdvisor
|
|
498
530
|
# }
|
499
531
|
#
|
500
532
|
# @!attribute [rw] suite_definition_id
|
501
|
-
# Suite definition
|
533
|
+
# Suite definition ID of the test suite.
|
502
534
|
# @return [String]
|
503
535
|
#
|
504
536
|
# @!attribute [rw] suite_definition_version
|
@@ -523,15 +555,15 @@ module Aws::IoTDeviceAdvisor
|
|
523
555
|
end
|
524
556
|
|
525
557
|
# @!attribute [rw] suite_run_id
|
526
|
-
# Suite Run
|
558
|
+
# Suite Run ID of the started suite run.
|
527
559
|
# @return [String]
|
528
560
|
#
|
529
561
|
# @!attribute [rw] suite_run_arn
|
530
|
-
# Amazon
|
562
|
+
# Amazon Resource Name (ARN) of the started suite run.
|
531
563
|
# @return [String]
|
532
564
|
#
|
533
565
|
# @!attribute [rw] created_at
|
534
|
-
#
|
566
|
+
# Starts a Device Advisor test suite run based on suite create time.
|
535
567
|
# @return [Time]
|
536
568
|
#
|
537
569
|
class StartSuiteRunResponse < Struct.new(
|
@@ -551,11 +583,11 @@ module Aws::IoTDeviceAdvisor
|
|
551
583
|
# }
|
552
584
|
#
|
553
585
|
# @!attribute [rw] suite_definition_id
|
554
|
-
# Suite definition
|
586
|
+
# Suite definition ID of the test suite run to be stopped.
|
555
587
|
# @return [String]
|
556
588
|
#
|
557
589
|
# @!attribute [rw] suite_run_id
|
558
|
-
# Suite run
|
590
|
+
# Suite run ID of the test suite run to be stopped.
|
559
591
|
# @return [String]
|
560
592
|
#
|
561
593
|
class StopSuiteRunRequest < Struct.new(
|
@@ -602,7 +634,7 @@ module Aws::IoTDeviceAdvisor
|
|
602
634
|
# @return [String]
|
603
635
|
#
|
604
636
|
# @!attribute [rw] device_permission_role_arn
|
605
|
-
# Gets device permission
|
637
|
+
# Gets device permission ARN.
|
606
638
|
# @return [String]
|
607
639
|
#
|
608
640
|
class SuiteDefinitionConfiguration < Struct.new(
|
@@ -618,7 +650,7 @@ module Aws::IoTDeviceAdvisor
|
|
618
650
|
# Information about the suite definition.
|
619
651
|
#
|
620
652
|
# @!attribute [rw] suite_definition_id
|
621
|
-
# Suite definition
|
653
|
+
# Suite definition ID of the test suite.
|
622
654
|
# @return [String]
|
623
655
|
#
|
624
656
|
# @!attribute [rw] suite_definition_name
|
@@ -658,6 +690,7 @@ module Aws::IoTDeviceAdvisor
|
|
658
690
|
# certificate_arn: "AmazonResourceName",
|
659
691
|
# },
|
660
692
|
# selected_test_list: ["UUID"],
|
693
|
+
# parallel_run: false,
|
661
694
|
# }
|
662
695
|
#
|
663
696
|
# @!attribute [rw] primary_device
|
@@ -668,17 +701,27 @@ module Aws::IoTDeviceAdvisor
|
|
668
701
|
# Gets test case list.
|
669
702
|
# @return [Array<String>]
|
670
703
|
#
|
704
|
+
# @!attribute [rw] parallel_run
|
705
|
+
# @return [Boolean]
|
706
|
+
#
|
671
707
|
class SuiteRunConfiguration < Struct.new(
|
672
708
|
:primary_device,
|
673
|
-
:selected_test_list
|
709
|
+
:selected_test_list,
|
710
|
+
:parallel_run)
|
674
711
|
SENSITIVE = []
|
675
712
|
include Aws::Structure
|
676
713
|
end
|
677
714
|
|
678
715
|
# Information about the suite run.
|
679
716
|
#
|
717
|
+
# Requires permission to access the [SuiteRunInformation][1] action.
|
718
|
+
#
|
719
|
+
#
|
720
|
+
#
|
721
|
+
# [1]: https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions
|
722
|
+
#
|
680
723
|
# @!attribute [rw] suite_definition_id
|
681
|
-
# Suite definition
|
724
|
+
# Suite definition ID of the suite run.
|
682
725
|
# @return [String]
|
683
726
|
#
|
684
727
|
# @!attribute [rw] suite_definition_version
|
@@ -690,7 +733,7 @@ module Aws::IoTDeviceAdvisor
|
|
690
733
|
# @return [String]
|
691
734
|
#
|
692
735
|
# @!attribute [rw] suite_run_id
|
693
|
-
# Suite run
|
736
|
+
# Suite run ID of the suite run.
|
694
737
|
# @return [String]
|
695
738
|
#
|
696
739
|
# @!attribute [rw] created_at
|
@@ -762,11 +805,11 @@ module Aws::IoTDeviceAdvisor
|
|
762
805
|
# Provides test case run.
|
763
806
|
#
|
764
807
|
# @!attribute [rw] test_case_run_id
|
765
|
-
# Provides test case run
|
808
|
+
# Provides test case run ID.
|
766
809
|
# @return [String]
|
767
810
|
#
|
768
811
|
# @!attribute [rw] test_case_definition_id
|
769
|
-
# Provides test case run definition
|
812
|
+
# Provides test case run definition ID.
|
770
813
|
# @return [String]
|
771
814
|
#
|
772
815
|
# @!attribute [rw] test_case_definition_name
|
@@ -775,6 +818,25 @@ module Aws::IoTDeviceAdvisor
|
|
775
818
|
#
|
776
819
|
# @!attribute [rw] status
|
777
820
|
# Provides test case run status.
|
821
|
+
#
|
822
|
+
# * `PASS`\: Test passed.
|
823
|
+
#
|
824
|
+
# * `FAIL`\: Test failed.
|
825
|
+
#
|
826
|
+
# * `PENDING`\: Test has not started running but is scheduled.
|
827
|
+
#
|
828
|
+
# * `RUNNING`\: Test is running
|
829
|
+
#
|
830
|
+
# * `STOPPING`\: Test is performing cleanup steps. You will see this
|
831
|
+
# status only if you stop a suite run.
|
832
|
+
#
|
833
|
+
# * `STOPPED` Test is stopped. You will see this status only if you
|
834
|
+
# stop a suite run.
|
835
|
+
#
|
836
|
+
# * `PASS_WITH_WARNINGS`\: Test passed with warnings.
|
837
|
+
#
|
838
|
+
# * `ERORR`\: Test faced an error when running due to an internal
|
839
|
+
# issue.
|
778
840
|
# @return [String]
|
779
841
|
#
|
780
842
|
# @!attribute [rw] start_time
|
@@ -868,7 +930,7 @@ module Aws::IoTDeviceAdvisor
|
|
868
930
|
# }
|
869
931
|
#
|
870
932
|
# @!attribute [rw] suite_definition_id
|
871
|
-
# Suite definition
|
933
|
+
# Suite definition ID of the test suite to be updated.
|
872
934
|
# @return [String]
|
873
935
|
#
|
874
936
|
# @!attribute [rw] suite_definition_configuration
|
@@ -884,11 +946,11 @@ module Aws::IoTDeviceAdvisor
|
|
884
946
|
end
|
885
947
|
|
886
948
|
# @!attribute [rw] suite_definition_id
|
887
|
-
# Suite definition
|
949
|
+
# Suite definition ID of the updated test suite.
|
888
950
|
# @return [String]
|
889
951
|
#
|
890
952
|
# @!attribute [rw] suite_definition_arn
|
891
|
-
# Amazon Resource
|
953
|
+
# Amazon Resource Name (ARN) of the updated test suite.
|
892
954
|
# @return [String]
|
893
955
|
#
|
894
956
|
# @!attribute [rw] suite_definition_name
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.9.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-11-
|
11
|
+
date: 2021-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|