google-apis-domains_v1beta1 0.46.0 → 0.47.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: b8a535aea9c3853fb4ab3844460177c2397e76053e2b117e5bc40bf7e821f6b1
4
- data.tar.gz: eca49133b5fc8f0f02b2a4a1355e2d321954cf31d1587472c38227dc12fe15d0
3
+ metadata.gz: 00b52d1bf0bec648e1924fc30e38019f327d327a4e036b0df849fbe3bd842a80
4
+ data.tar.gz: 35199d42dfd2339f5a4ba534290fa17229888f1a888bcf3e5c6350871e256123
5
5
  SHA512:
6
- metadata.gz: cfcddd9e658302a604a6855c28e458b80555c3c4eece6b195c27fa458c29a803d073ed01c54a4851eb5b809b0cae06ebc1f8b17b524e6a529db8102eac67f80d
7
- data.tar.gz: 6500794d994292c18395b4c543939050c58db60a84b399b74a64d4d88a4f8aad2ce43dfa1a9b5060dfdb59bd3c428e83e9440673894a50d6cffeee091158b4c6
6
+ metadata.gz: b19bacec7ede14d7e790673d904c93c4b83bfd3ff832e513af796a5bd71100e9e8d772a16cb5bd0f7b76508e4b51f8cd145f945940d856b9d1c1fc973fba5528
7
+ data.tar.gz: 3bbaae54fff85a3d2c51d0b0b051a0f8ecd5998fda545d2658cdb0533aa84e5e17c1efec914458ff5f915119d0a8069ec0cb86ad66453d92edff8bd676d57940
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-domains_v1beta1
2
2
 
3
+ ### v0.47.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260603
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.46.0 (2026-05-03)
4
9
 
5
10
  * Regenerated from discovery document revision 20260427
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/domains/) may provide guida
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -948,6 +948,13 @@ module Google
948
948
  # @return [String]
949
949
  attr_accessor :tag
950
950
 
951
+ # Optional. If set, validates the request without actually initiating the
952
+ # transfer.
953
+ # Corresponds to the JSON property `validateOnly`
954
+ # @return [Boolean]
955
+ attr_accessor :validate_only
956
+ alias_method :validate_only?, :validate_only
957
+
951
958
  def initialize(**args)
952
959
  update!(**args)
953
960
  end
@@ -955,6 +962,7 @@ module Google
955
962
  # Update properties of this object
956
963
  def update!(**args)
957
964
  @tag = args[:tag] if args.key?(:tag)
965
+ @validate_only = args[:validate_only] if args.key?(:validate_only)
958
966
  end
959
967
  end
960
968
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DomainsV1beta1
18
18
  # Version of the google-apis-domains_v1beta1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260427"
25
+ REVISION = "20260603"
26
26
  end
27
27
  end
28
28
  end
@@ -591,6 +591,7 @@ module Google
591
591
  # @private
592
592
  class Representation < Google::Apis::Core::JsonRepresentation
593
593
  property :tag, as: 'tag'
594
+ property :validate_only, as: 'validateOnly'
594
595
  end
595
596
  end
596
597
 
@@ -633,6 +633,9 @@ module Google
633
633
  # Required. The field mask describing which fields to update as a comma-
634
634
  # separated list. For example, if only the labels are being updated, the `
635
635
  # update_mask` is `"labels"`.
636
+ # @param [Boolean] validate_only
637
+ # Optional. If set, validates the request without actually updating the
638
+ # registration.
636
639
  # @param [String] fields
637
640
  # Selector specifying which fields to include in a partial response.
638
641
  # @param [String] quota_user
@@ -650,7 +653,7 @@ module Google
650
653
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
651
654
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
652
655
  # @raise [Google::Apis::AuthorizationError] Authorization is required
653
- def patch_project_location_registration(name, registration_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
656
+ def patch_project_location_registration(name, registration_object = nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
654
657
  command = make_simple_command(:patch, 'v1beta1/{+name}', options)
655
658
  command.request_representation = Google::Apis::DomainsV1beta1::Registration::Representation
656
659
  command.request_object = registration_object
@@ -658,6 +661,7 @@ module Google
658
661
  command.response_class = Google::Apis::DomainsV1beta1::Operation
659
662
  command.params['name'] = name unless name.nil?
660
663
  command.query['updateMask'] = update_mask unless update_mask.nil?
664
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
661
665
  command.query['fields'] = fields unless fields.nil?
662
666
  command.query['quotaUser'] = quota_user unless quota_user.nil?
663
667
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-domains_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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-domains_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1beta1/v0.46.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-domains_v1beta1/v0.47.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-domains_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="