Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268840,6 +268840,7 @@
"/domains:v1beta1/ImportDomainRequest/labels/label": label
"/domains:v1beta1/InitiatePushTransferRequest": initiate_push_transfer_request
"/domains:v1beta1/InitiatePushTransferRequest/tag": tag
"/domains:v1beta1/InitiatePushTransferRequest/validateOnly": validate_only
"/domains:v1beta1/ListLocationsResponse": list_locations_response
"/domains:v1beta1/ListLocationsResponse/locations": locations
"/domains:v1beta1/ListLocationsResponse/locations/location": location
Expand Down Expand Up @@ -269080,6 +269081,7 @@
"/domains:v1beta1/domains.projects.locations.registrations.patch": patch_project_location_registration
"/domains:v1beta1/domains.projects.locations.registrations.patch/name": name
"/domains:v1beta1/domains.projects.locations.registrations.patch/updateMask": update_mask
"/domains:v1beta1/domains.projects.locations.registrations.patch/validateOnly": validate_only
"/domains:v1beta1/domains.projects.locations.registrations.register": register_registration_domain
"/domains:v1beta1/domains.projects.locations.registrations.register/parent": parent
"/domains:v1beta1/domains.projects.locations.registrations.renewDomain": renew_registration_domain
Expand Down
5 changes: 5 additions & 0 deletions generated/google-apis-domains_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-domains_v1beta1

### v0.47.0 (2026-06-14)

* Regenerated from discovery document revision 20260603
* Regenerated using generator version 0.19.0

### v0.46.0 (2026-05-03)

* Regenerated from discovery document revision 20260427
Expand Down
2 changes: 1 addition & 1 deletion generated/google-apis-domains_v1beta1/OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/domains/) may provide guida

## Supported Ruby versions

This library is supported on Ruby 3.1+.
This library is supported on Ruby 3.2+.

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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ Gem::Specification.new do |gem|
gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("*.md") + [".yardopts"]
gem.require_paths = ["lib"]

gem.required_ruby_version = '>= 3.1'
gem.required_ruby_version = '>= 3.2'
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
end
Original file line number Diff line number Diff line change
Expand Up @@ -948,13 +948,21 @@ class InitiatePushTransferRequest
# @return [String]
attr_accessor :tag

# Optional. If set, validates the request without actually initiating the
# transfer.
# Corresponds to the JSON property `validateOnly`
# @return [Boolean]
attr_accessor :validate_only
alias_method :validate_only?, :validate_only

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@tag = args[:tag] if args.key?(:tag)
@validate_only = args[:validate_only] if args.key?(:validate_only)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DomainsV1beta1
# Version of the google-apis-domains_v1beta1 gem
GEM_VERSION = "0.46.0"
GEM_VERSION = "0.47.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"
GENERATOR_VERSION = "0.19.0"

# Revision of the discovery document this client was generated from
REVISION = "20260427"
REVISION = "20260603"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,7 @@ class InitiatePushTransferRequest
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :tag, as: 'tag'
property :validate_only, as: 'validateOnly'
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,9 @@ def list_project_location_registrations(parent, filter: nil, page_size: nil, pag
# Required. The field mask describing which fields to update as a comma-
# separated list. For example, if only the labels are being updated, the `
# update_mask` is `"labels"`.
# @param [Boolean] validate_only
# Optional. If set, validates the request without actually updating the
# registration.
# @param [String] fields
# Selector specifying which fields to include in a partial response.
# @param [String] quota_user
Expand All @@ -650,14 +653,15 @@ def list_project_location_registrations(parent, filter: nil, page_size: nil, pag
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
def patch_project_location_registration(name, registration_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
def patch_project_location_registration(name, registration_object = nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
command = make_simple_command(:patch, 'v1beta1/{+name}', options)
command.request_representation = Google::Apis::DomainsV1beta1::Registration::Representation
command.request_object = registration_object
command.response_representation = Google::Apis::DomainsV1beta1::Operation::Representation
command.response_class = Google::Apis::DomainsV1beta1::Operation
command.params['name'] = name unless name.nil?
command.query['updateMask'] = update_mask unless update_mask.nil?
command.query['validateOnly'] = validate_only unless validate_only.nil?
command.query['fields'] = fields unless fields.nil?
command.query['quotaUser'] = quota_user unless quota_user.nil?
execute_or_queue_command(command, &block)
Expand Down
Loading