aws-sdk-iotdeviceadvisor 1.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c1a8b9c19cf0f1bd3bad078609a003f7340ea94e1c7dd21f988f7e5ae82ccc74
4
- data.tar.gz: e61e66698a1e12a01b11c9a43b99473b43eeaf342b5f5e91584e4a611d9ae778
3
+ metadata.gz: 9210ba818682fed8233ee5339c09cbbdb5c3ff3f16aced85d15cc4db2c10d4e9
4
+ data.tar.gz: 297922e6bd7a90afecef70ecdcca2a413d794bd5cf02ad2d2628e98c88416111
5
5
  SHA512:
6
- metadata.gz: bcdd463df8d2466222b866e4498dd571141bb922ad84e5a22622b1624b45b6838d23d46647ddc223c264987b8c41ca26f4f35b1929e8cbcc14531be19365ecf5
7
- data.tar.gz: d0d74856163d3fd9d156e21a70a5d396de3d9ca546e54fac26c5925bd90558a32c871c1f0688b69537e95ba2c4a46d5f17903e1a50e055f2c08023d826406670
6
+ metadata.gz: b7629f1dd316576b6e1d2b3c7838716f155d9aa0aa5c817d0b3b92bce03887376c388ca9c1ea7a57563b5d3a29b715a81ab5783842b6a021b46c07751d83f215
7
+ data.tar.gz: 71da5f7573efba73430d6169b353920f3b0fe53ae4eb7ed0ca3ea2bb23aea15981bf12286bfa6e678568e1165d65de736755af103aa0fe0241ac02de4ef88a23
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
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
+
9
+ 1.8.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.7.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.6.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.5.0 (2021-07-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.0
1
+ 1.9.0
@@ -275,6 +275,15 @@ module Aws::IoTDeviceAdvisor
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -329,6 +338,12 @@ module Aws::IoTDeviceAdvisor
329
338
 
330
339
  # Creates a Device Advisor test suite.
331
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
+ #
332
347
  # @option params [Types::SuiteDefinitionConfiguration] :suite_definition_configuration
333
348
  # Creates a Device Advisor test suite with suite definition
334
349
  # configuration.
@@ -379,8 +394,14 @@ module Aws::IoTDeviceAdvisor
379
394
 
380
395
  # Deletes a Device Advisor test suite.
381
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
+ #
382
403
  # @option params [required, String] :suite_definition_id
383
- # Suite definition Id of the test suite to be deleted.
404
+ # Suite definition ID of the test suite to be deleted.
384
405
  #
385
406
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
386
407
  #
@@ -397,10 +418,42 @@ module Aws::IoTDeviceAdvisor
397
418
  req.send_request(options)
398
419
  end
399
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
+
400
447
  # Gets information about a Device Advisor test suite.
401
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
+ #
402
455
  # @option params [required, String] :suite_definition_id
403
- # Suite definition Id of the test suite to get.
456
+ # Suite definition ID of the test suite to get.
404
457
  #
405
458
  # @option params [String] :suite_definition_version
406
459
  # Suite definition version of the test suite to get.
@@ -450,11 +503,17 @@ module Aws::IoTDeviceAdvisor
450
503
 
451
504
  # Gets information about a Device Advisor test suite run.
452
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
+ #
453
512
  # @option params [required, String] :suite_definition_id
454
- # Suite definition Id for the test suite run.
513
+ # Suite definition ID for the test suite run.
455
514
  #
456
515
  # @option params [required, String] :suite_run_id
457
- # Suite run Id for the test suite run.
516
+ # Suite run ID for the test suite run.
458
517
  #
459
518
  # @return [Types::GetSuiteRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
460
519
  #
@@ -487,6 +546,7 @@ module Aws::IoTDeviceAdvisor
487
546
  # resp.suite_run_configuration.primary_device.certificate_arn #=> String
488
547
  # resp.suite_run_configuration.selected_test_list #=> Array
489
548
  # resp.suite_run_configuration.selected_test_list[0] #=> String
549
+ # resp.suite_run_configuration.parallel_run #=> Boolean
490
550
  # resp.test_result.groups #=> Array
491
551
  # resp.test_result.groups[0].group_id #=> String
492
552
  # resp.test_result.groups[0].group_name #=> String
@@ -517,11 +577,17 @@ module Aws::IoTDeviceAdvisor
517
577
  # Gets a report download link for a successful Device Advisor qualifying
518
578
  # test suite run.
519
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
+ #
520
586
  # @option params [required, String] :suite_definition_id
521
- # Suite definition Id of the test suite.
587
+ # Suite definition ID of the test suite.
522
588
  #
523
589
  # @option params [required, String] :suite_run_id
524
- # Suite run Id of the test suite run.
590
+ # Suite run ID of the test suite run.
525
591
  #
526
592
  # @return [Types::GetSuiteRunReportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
527
593
  #
@@ -547,6 +613,12 @@ module Aws::IoTDeviceAdvisor
547
613
 
548
614
  # Lists the Device Advisor test suites you have created.
549
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
+ #
550
622
  # @option params [Integer] :max_results
551
623
  # The maximum number of results to return at once.
552
624
  #
@@ -590,9 +662,15 @@ module Aws::IoTDeviceAdvisor
590
662
  # list all runs of the test suite, or the runs of a specific version of
591
663
  # the test suite.
592
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
+ #
593
671
  # @option params [String] :suite_definition_id
594
672
  # Lists the test suite runs of the specified test suite based on suite
595
- # definition Id.
673
+ # definition ID.
596
674
  #
597
675
  # @option params [String] :suite_definition_version
598
676
  # Must be passed along with suiteDefinitionId. Lists the test suite runs
@@ -644,6 +722,12 @@ module Aws::IoTDeviceAdvisor
644
722
 
645
723
  # Lists the tags attached to an IoT Device Advisor resource.
646
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
+ #
647
731
  # @option params [required, String] :resource_arn
648
732
  # The ARN of the IoT Device Advisor resource.
649
733
  #
@@ -671,8 +755,14 @@ module Aws::IoTDeviceAdvisor
671
755
 
672
756
  # Starts a Device Advisor test suite run.
673
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
+ #
674
764
  # @option params [required, String] :suite_definition_id
675
- # Suite definition Id of the test suite.
765
+ # Suite definition ID of the test suite.
676
766
  #
677
767
  # @option params [String] :suite_definition_version
678
768
  # Suite definition version of the test suite.
@@ -700,6 +790,7 @@ module Aws::IoTDeviceAdvisor
700
790
  # certificate_arn: "AmazonResourceName",
701
791
  # },
702
792
  # selected_test_list: ["UUID"],
793
+ # parallel_run: false,
703
794
  # },
704
795
  # tags: {
705
796
  # "String128" => "String256",
@@ -721,11 +812,17 @@ module Aws::IoTDeviceAdvisor
721
812
 
722
813
  # Stops a Device Advisor test suite run that is currently running.
723
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
+ #
724
821
  # @option params [required, String] :suite_definition_id
725
- # Suite definition Id of the test suite run to be stopped.
822
+ # Suite definition ID of the test suite run to be stopped.
726
823
  #
727
824
  # @option params [required, String] :suite_run_id
728
- # Suite run Id of the test suite run to be stopped.
825
+ # Suite run ID of the test suite run to be stopped.
729
826
  #
730
827
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
731
828
  #
@@ -745,6 +842,12 @@ module Aws::IoTDeviceAdvisor
745
842
 
746
843
  # Adds to and modifies existing tags of an IoT Device Advisor resource.
747
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
+ #
748
851
  # @option params [required, String] :resource_arn
749
852
  # The resource ARN of an IoT Device Advisor resource.
750
853
  #
@@ -771,6 +874,12 @@ module Aws::IoTDeviceAdvisor
771
874
 
772
875
  # Removes tags from an IoT Device Advisor resource.
773
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
+ #
774
883
  # @option params [required, String] :resource_arn
775
884
  # The resource ARN of an IoT Device Advisor resource.
776
885
  #
@@ -795,8 +904,14 @@ module Aws::IoTDeviceAdvisor
795
904
 
796
905
  # Updates a Device Advisor test suite.
797
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
+ #
798
913
  # @option params [required, String] :suite_definition_id
799
- # Suite definition Id of the test suite to be updated.
914
+ # Suite definition ID of the test suite to be updated.
800
915
  #
801
916
  # @option params [Types::SuiteDefinitionConfiguration] :suite_definition_configuration
802
917
  # Updates a Device Advisor test suite with suite definition
@@ -858,7 +973,7 @@ module Aws::IoTDeviceAdvisor
858
973
  params: params,
859
974
  config: config)
860
975
  context[:gem_name] = 'aws-sdk-iotdeviceadvisor'
861
- context[:gem_version] = '1.5.0'
976
+ context[:gem_version] = '1.9.0'
862
977
  Seahorse::Client::Request.new(handlers, context)
863
978
  end
864
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 name.
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 Id of the test suite to be deleted.
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
- # Lists all the devices under test
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 arn
119
+ # Lists devices thing ARN.
119
120
  # @return [String]
120
121
  #
121
122
  # @!attribute [rw] certificate_arn
122
- # Lists devices certificate arn
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 Id of the test suite to get.
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 Id of the 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 Id of the test suite.
241
+ # Suite definition ID of the test suite.
211
242
  # @return [String]
212
243
  #
213
244
  # @!attribute [rw] suite_run_id
214
- # Suite run Id of the test 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 Id for the test suite run.
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 Id for the test 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 Id for the test suite run.
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 Id for the test 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 Id.
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 Id.
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 Id of the test suite.
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 Id of the started 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 resource name of the started suite run.
562
+ # Amazon Resource Name (ARN) of the started suite run.
531
563
  # @return [String]
532
564
  #
533
565
  # @!attribute [rw] created_at
534
- # Date (in Unix epoch time) when the suite run was created.
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 Id of the test suite run to be stopped.
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 Id of the test suite run to be stopped.
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 arn.
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 Id of the test suite.
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 Id of the suite run.
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 Id of the 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 Id.
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 Id.
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 Id of the test suite to be updated.
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 Id of the updated test suite.
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 name of the updated test suite.
953
+ # Amazon Resource Name (ARN) of the updated test suite.
892
954
  # @return [String]
893
955
  #
894
956
  # @!attribute [rw] suite_definition_name
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-iotdeviceadvisor/customizations'
48
48
  # @!group service
49
49
  module Aws::IoTDeviceAdvisor
50
50
 
51
- GEM_VERSION = '1.5.0'
51
+ GEM_VERSION = '1.9.0'
52
52
 
53
53
  end
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.5.0
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-07-30 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.119.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="