google-apis-testing_v1 0.52.0 → 0.53.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: 78b2ffb8562b83e3f0b5e0f55e05325bab55719e0ea142213fb98dade7cbf2e6
4
- data.tar.gz: 7c9819edc5003a42b799857b1aa92578416b9ef91b9d51dbe51285ac7f43206e
3
+ metadata.gz: f88b4ad9ab9b6d743cc045804eb1a1e887be0e9b38ab7557a1f74f84a0728b78
4
+ data.tar.gz: b422cbb6e1807a063045be0f8e4d1131d1b13f314ff8df0cdf4eb407dd8aa4d5
5
5
  SHA512:
6
- metadata.gz: d36ff3aef7e5a62e7e679055acc0a1eee11fd17cfcb1512a844d5099501e08e2c35ccdd4e826b400e9a1b5846962f600040884a993d5f51fdf31d7c10a74e885
7
- data.tar.gz: ef033d6339f6c5a2eec692437471c9ad0406084b658eef9755d2bd4d64491df10b4f529763b4be1dbf78608af982ff3a1c01cfa3e4a69fbbad596158e54b8901
6
+ metadata.gz: 4bdbcb80ff6d9c0143762e6a6b645ba13862e0f45ddd58717816c8f06c836a508178fe95f77c4f5e4547d363c5d9bd69e664886abab186b7a797b579348cfb81
7
+ data.tar.gz: d8bd613dba64d08e5105fb73b8c37cb0e9012181221b4d7ddd65b34ce773daf6077400bcc91520516cddfe4971d22e8138e8e6b4f866f560ef8d6c466df4ba1e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-testing_v1
2
2
 
3
+ ### v0.53.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250327
6
+
3
7
  ### v0.52.0 (2025-03-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20250304
@@ -272,6 +272,12 @@ module Google
272
272
  class AndroidModel
273
273
  include Google::Apis::Core::Hashable
274
274
 
275
+ # Reasons for access denial. This model is accessible if this list is empty,
276
+ # otherwise the model is viewable only.
277
+ # Corresponds to the JSON property `accessDeniedReasons`
278
+ # @return [Array<String>]
279
+ attr_accessor :access_denied_reasons
280
+
275
281
  # The company that this device is branded with. Example: "Google", "Samsung".
276
282
  # Corresponds to the JSON property `brand`
277
283
  # @return [String]
@@ -372,6 +378,7 @@ module Google
372
378
 
373
379
  # Update properties of this object
374
380
  def update!(**args)
381
+ @access_denied_reasons = args[:access_denied_reasons] if args.key?(:access_denied_reasons)
375
382
  @brand = args[:brand] if args.key?(:brand)
376
383
  @codename = args[:codename] if args.key?(:codename)
377
384
  @form = args[:form] if args.key?(:form)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module TestingV1
18
18
  # Version of the google-apis-testing_v1 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250304"
25
+ REVISION = "20250327"
26
26
  end
27
27
  end
28
28
  end
@@ -614,6 +614,7 @@ module Google
614
614
  class AndroidModel
615
615
  # @private
616
616
  class Representation < Google::Apis::Core::JsonRepresentation
617
+ collection :access_denied_reasons, as: 'accessDeniedReasons'
617
618
  property :brand, as: 'brand'
618
619
  property :codename, as: 'codename'
619
620
  property :form, as: 'form'
@@ -400,6 +400,9 @@ module Google
400
400
  # an internal error occurred
401
401
  # @param [String] environment_type
402
402
  # Required. The type of environment that should be listed.
403
+ # @param [Boolean] include_viewable_models
404
+ # Optional. Whether to include viewable only models in the response. This is
405
+ # only applicable for Android models.
403
406
  # @param [String] project_id
404
407
  # For authorization, the cloud project requesting the TestEnvironmentCatalog.
405
408
  # @param [String] fields
@@ -419,11 +422,12 @@ module Google
419
422
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
420
423
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
421
424
  # @raise [Google::Apis::AuthorizationError] Authorization is required
422
- def get_test_environment_catalog(environment_type, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
425
+ def get_test_environment_catalog(environment_type, include_viewable_models: nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
423
426
  command = make_simple_command(:get, 'v1/testEnvironmentCatalog/{environmentType}', options)
424
427
  command.response_representation = Google::Apis::TestingV1::TestEnvironmentCatalog::Representation
425
428
  command.response_class = Google::Apis::TestingV1::TestEnvironmentCatalog
426
429
  command.params['environmentType'] = environment_type unless environment_type.nil?
430
+ command.query['includeViewableModels'] = include_viewable_models unless include_viewable_models.nil?
427
431
  command.query['projectId'] = project_id unless project_id.nil?
428
432
  command.query['fields'] = fields unless fields.nil?
429
433
  command.query['quotaUser'] = quota_user unless quota_user.nil?
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-testing_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.53.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-09 00:00:00.000000000 Z
10
+ date: 2025-04-16 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.52.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.53.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
62
62
  rdoc_options: []
63
63
  require_paths: