aws-sdk-iotdeviceadvisor 1.9.0 → 1.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9210ba818682fed8233ee5339c09cbbdb5c3ff3f16aced85d15cc4db2c10d4e9
4
- data.tar.gz: 297922e6bd7a90afecef70ecdcca2a413d794bd5cf02ad2d2628e98c88416111
3
+ metadata.gz: 28bd9e21e6ec30e894a2c980ababd5057c32254ac0a76f663249574a5a5e9199
4
+ data.tar.gz: 4bdeadf936a1710c8b6113ddd6a3f774a569aad924967dac100434b310a2681f
5
5
  SHA512:
6
- metadata.gz: b7629f1dd316576b6e1d2b3c7838716f155d9aa0aa5c817d0b3b92bce03887376c388ca9c1ea7a57563b5d3a29b715a81ab5783842b6a021b46c07751d83f215
7
- data.tar.gz: 71da5f7573efba73430d6169b353920f3b0fe53ae4eb7ed0ca3ea2bb23aea15981bf12286bfa6e678568e1165d65de736755af103aa0fe0241ac02de4ef88a23
6
+ metadata.gz: '08e349c0c8e3baa96282f510b8a367631c4b6958efb5a6c934a1881e369673778cdec57f224a98353fd45a895b8072c37fe2aaca78b3868ad89d430114077a4e'
7
+ data.tar.gz: 5c40a107d6ac4eaa507da96c14cb8d98ab6b5eacd30700c05b9683fe46321af45d21ba173f5f8e07aa66d31e3091898b53cad0c0a0161b9c474e755701991c72
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.12.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.11.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.10.0 (2021-11-26)
20
+ ------------------
21
+
22
+ * Feature - Documentation update for Device Advisor GetEndpoint API
23
+
4
24
  1.9.0 (2021-11-23)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.13.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::IoTDeviceAdvisor
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::RestJson)
78
82
 
@@ -119,7 +123,9 @@ module Aws::IoTDeviceAdvisor
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::IoTDeviceAdvisor
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -295,7 +305,7 @@ module Aws::IoTDeviceAdvisor
295
305
  # seconds to wait when opening a HTTP session before raising a
296
306
  # `Timeout::Error`.
297
307
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
299
309
  # number of seconds to wait for response data. This value can
300
310
  # safely be set per-request on the session.
301
311
  #
@@ -311,6 +321,9 @@ module Aws::IoTDeviceAdvisor
311
321
  # disables this behaviour. This value can safely be set per
312
322
  # request on the session.
313
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
314
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
328
  # HTTP debug output will be sent to the `:logger`.
316
329
  #
@@ -418,9 +431,13 @@ module Aws::IoTDeviceAdvisor
418
431
  req.send_request(options)
419
432
  end
420
433
 
434
+ # Gets information about an Device Advisor endpoint.
435
+ #
421
436
  # @option params [String] :thing_arn
437
+ # The thing ARN of the device. This is an optional parameter.
422
438
  #
423
439
  # @option params [String] :certificate_arn
440
+ # The certificate ARN of the device. This is an optional parameter.
424
441
  #
425
442
  # @return [Types::GetEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
426
443
  #
@@ -658,9 +675,9 @@ module Aws::IoTDeviceAdvisor
658
675
  req.send_request(options)
659
676
  end
660
677
 
661
- # Lists the runs of the specified Device Advisor test suite. You can
662
- # list all runs of the test suite, or the runs of a specific version of
663
- # the test suite.
678
+ # Lists runs of the specified Device Advisor test suite. You can list
679
+ # all runs of the test suite, or the runs of a specific version of the
680
+ # test suite.
664
681
  #
665
682
  # Requires permission to access the [ListSuiteRuns][1] action.
666
683
  #
@@ -673,8 +690,8 @@ module Aws::IoTDeviceAdvisor
673
690
  # definition ID.
674
691
  #
675
692
  # @option params [String] :suite_definition_version
676
- # Must be passed along with suiteDefinitionId. Lists the test suite runs
677
- # of the specified test suite based on suite definition version.
693
+ # Must be passed along with `suiteDefinitionId`. Lists the test suite
694
+ # runs of the specified test suite based on suite definition version.
678
695
  #
679
696
  # @option params [Integer] :max_results
680
697
  # The maximum number of results to return at once.
@@ -973,7 +990,7 @@ module Aws::IoTDeviceAdvisor
973
990
  params: params,
974
991
  config: config)
975
992
  context[:gem_name] = 'aws-sdk-iotdeviceadvisor'
976
- context[:gem_version] = '1.9.0'
993
+ context[:gem_version] = '1.13.0'
977
994
  Seahorse::Client::Request.new(handlers, context)
978
995
  end
979
996
 
@@ -10,10 +10,10 @@
10
10
  module Aws::IoTDeviceAdvisor
11
11
  module Types
12
12
 
13
- # Sends Conflict Exception.
13
+ # Sends a Conflict Exception.
14
14
  #
15
15
  # @!attribute [rw] message
16
- # Sends Conflict Exception message.
16
+ # Sends a Conflict Exception message.
17
17
  # @return [String]
18
18
  #
19
19
  class ConflictException < Struct.new(
@@ -104,8 +104,8 @@ module Aws::IoTDeviceAdvisor
104
104
 
105
105
  class DeleteSuiteDefinitionResponse < Aws::EmptyStructure; end
106
106
 
107
- # Information of a test device. Required to provide either a thing ARN
108
- # or a certificate ARN.
107
+ # Information of a test device. A thing ARN or a certificate ARN is
108
+ # required.
109
109
  #
110
110
  # @note When making an API call, you may pass DeviceUnderTest
111
111
  # data as a hash:
@@ -139,9 +139,11 @@ module Aws::IoTDeviceAdvisor
139
139
  # }
140
140
  #
141
141
  # @!attribute [rw] thing_arn
142
+ # The thing ARN of the device. This is an optional parameter.
142
143
  # @return [String]
143
144
  #
144
145
  # @!attribute [rw] certificate_arn
146
+ # The certificate ARN of the device. This is an optional parameter.
145
147
  # @return [String]
146
148
  #
147
149
  class GetEndpointRequest < Struct.new(
@@ -152,6 +154,7 @@ module Aws::IoTDeviceAdvisor
152
154
  end
153
155
 
154
156
  # @!attribute [rw] endpoint
157
+ # The response of an Device Advisor endpoint.
155
158
  # @return [String]
156
159
  #
157
160
  class GetEndpointResponse < Struct.new(
@@ -310,7 +313,7 @@ module Aws::IoTDeviceAdvisor
310
313
  # @return [Types::TestResult]
311
314
  #
312
315
  # @!attribute [rw] start_time
313
- # Date (in Unix epoch time) when the test suite run was started.
316
+ # Date (in Unix epoch time) when the test suite run started.
314
317
  # @return [Time]
315
318
  #
316
319
  # @!attribute [rw] end_time
@@ -367,10 +370,10 @@ module Aws::IoTDeviceAdvisor
367
370
  include Aws::Structure
368
371
  end
369
372
 
370
- # Sends Internal Failure Exception.
373
+ # Sends an Internal Failure exception.
371
374
  #
372
375
  # @!attribute [rw] message
373
- # Sends Internal Failure Exception message.
376
+ # Sends an Internal Failure Exception message.
374
377
  # @return [String]
375
378
  #
376
379
  class InternalServerException < Struct.new(
@@ -434,7 +437,7 @@ module Aws::IoTDeviceAdvisor
434
437
  # @return [String]
435
438
  #
436
439
  # @!attribute [rw] suite_definition_version
437
- # Must be passed along with suiteDefinitionId. Lists the test suite
440
+ # Must be passed along with `suiteDefinitionId`. Lists the test suite
438
441
  # runs of the specified test suite based on suite definition version.
439
442
  # @return [String]
440
443
  #
@@ -498,10 +501,10 @@ module Aws::IoTDeviceAdvisor
498
501
  include Aws::Structure
499
502
  end
500
503
 
501
- # Sends Resource Not Found Exception.
504
+ # Sends a Resource Not Found exception.
502
505
  #
503
506
  # @!attribute [rw] message
504
- # Sends Resource Not Found Exception message.
507
+ # Sends a Resource Not Found Exception message.
505
508
  # @return [String]
506
509
  #
507
510
  class ResourceNotFoundException < Struct.new(
@@ -634,7 +637,7 @@ module Aws::IoTDeviceAdvisor
634
637
  # @return [String]
635
638
  #
636
639
  # @!attribute [rw] device_permission_role_arn
637
- # Gets device permission ARN.
640
+ # Gets the device permission ARN.
638
641
  # @return [String]
639
642
  #
640
643
  class SuiteDefinitionConfiguration < Struct.new(
@@ -658,7 +661,7 @@ module Aws::IoTDeviceAdvisor
658
661
  # @return [String]
659
662
  #
660
663
  # @!attribute [rw] default_devices
661
- # Specifies the devices under test for the test suite.
664
+ # Specifies the devices that are under test for the test suite.
662
665
  # @return [Array<Types::DeviceUnderTest>]
663
666
  #
664
667
  # @!attribute [rw] intended_for_qualification
@@ -702,6 +705,7 @@ module Aws::IoTDeviceAdvisor
702
705
  # @return [Array<String>]
703
706
  #
704
707
  # @!attribute [rw] parallel_run
708
+ # TRUE if multiple test suites run in parallel.
705
709
  # @return [Boolean]
706
710
  #
707
711
  class SuiteRunConfiguration < Struct.new(
@@ -802,22 +806,22 @@ module Aws::IoTDeviceAdvisor
802
806
 
803
807
  class TagResourceResponse < Aws::EmptyStructure; end
804
808
 
805
- # Provides test case run.
809
+ # Provides the test case run.
806
810
  #
807
811
  # @!attribute [rw] test_case_run_id
808
- # Provides test case run ID.
812
+ # Provides the test case run ID.
809
813
  # @return [String]
810
814
  #
811
815
  # @!attribute [rw] test_case_definition_id
812
- # Provides test case run definition ID.
816
+ # Provides the test case run definition ID.
813
817
  # @return [String]
814
818
  #
815
819
  # @!attribute [rw] test_case_definition_name
816
- # Provides test case run definition Name.
820
+ # Provides the test case run definition name.
817
821
  # @return [String]
818
822
  #
819
823
  # @!attribute [rw] status
820
- # Provides test case run status.
824
+ # Provides the test case run status. Status is one of the following:
821
825
  #
822
826
  # * `PASS`\: Test passed.
823
827
  #
@@ -825,7 +829,7 @@ module Aws::IoTDeviceAdvisor
825
829
  #
826
830
  # * `PENDING`\: Test has not started running but is scheduled.
827
831
  #
828
- # * `RUNNING`\: Test is running
832
+ # * `RUNNING`\: Test is running.
829
833
  #
830
834
  # * `STOPPING`\: Test is performing cleanup steps. You will see this
831
835
  # status only if you stop a suite run.
@@ -848,7 +852,7 @@ module Aws::IoTDeviceAdvisor
848
852
  # @return [Time]
849
853
  #
850
854
  # @!attribute [rw] log_url
851
- # Provides test case run log Url.
855
+ # Provides test case run log URL.
852
856
  # @return [String]
853
857
  #
854
858
  # @!attribute [rw] warnings
@@ -980,10 +984,10 @@ module Aws::IoTDeviceAdvisor
980
984
  include Aws::Structure
981
985
  end
982
986
 
983
- # Sends invalid request exception.
987
+ # Sends a validation exception.
984
988
  #
985
989
  # @!attribute [rw] message
986
- # Sends invalid request exception message.
990
+ # Sends a Validation Exception message.
987
991
  # @return [String]
988
992
  #
989
993
  class ValidationException < Struct.new(
@@ -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.9.0'
51
+ GEM_VERSION = '1.13.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.9.0
4
+ version: 1.13.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-23 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement