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
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -293722,6 +293722,7 @@
"/healthcare:v1beta1/BulkDeleteResourcesRequest/gcsDestination": gcs_destination
"/healthcare:v1beta1/BulkDeleteResourcesRequest/type": type
"/healthcare:v1beta1/BulkDeleteResourcesRequest/until": until
"/healthcare:v1beta1/BulkDeleteResourcesRequest/validateOnly": validate_only
"/healthcare:v1beta1/BulkDeleteResourcesRequest/versionConfig": version_config
"/healthcare:v1beta1/BulkExportGcsDestination": bulk_export_gcs_destination
"/healthcare:v1beta1/BulkExportGcsDestination/uriPrefix": uri_prefix
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-healthcare_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-healthcare_v1beta1

### v0.98.0 (2026-05-17)

* Regenerated from discovery document revision 20260512

### v0.97.0 (2026-04-19)

* Regenerated from discovery document revision 20260331
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -825,6 +825,15 @@ class BulkDeleteResourcesRequest
# @return [String]
attr_accessor :until

# Optional. If set to true, the request will only perform a dry run. By default (
# once the behavior change is fully rolled out), this will default to true.
# During the transition period, the default depends on the Mendel flag status
# for the project.
# Corresponds to the JSON property `validateOnly`
# @return [Boolean]
attr_accessor :validate_only
alias_method :validate_only?, :validate_only

# Optional. Specifies which version of the resources to delete.
# Corresponds to the JSON property `versionConfig`
# @return [String]
Expand All @@ -839,6 +848,7 @@ def update!(**args)
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
@type = args[:type] if args.key?(:type)
@until = args[:until] if args.key?(:until)
@validate_only = args[:validate_only] if args.key?(:validate_only)
@version_config = args[:version_config] if args.key?(:version_config)
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 HealthcareV1beta1
# Version of the google-apis-healthcare_v1beta1 gem
GEM_VERSION = "0.97.0"
GEM_VERSION = "0.98.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20260331"
REVISION = "20260512"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1494,6 +1494,7 @@ class Representation < Google::Apis::Core::JsonRepresentation

property :type, as: 'type'
property :until, as: 'until'
property :validate_only, as: 'validateOnly'
property :version_config, as: 'versionConfig'
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
end

# Lists information about the supported locations for this service. This method
# lists locations based on the resource scope provided in the [
# ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
# lists locations based on the resource scope provided in the
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
# the method lists the public locations available to all projects. * **Project-
# specific locations**: If `name` follows the format `projects/`project``, the
# method lists locations visible to that specific project. This includes public,
Expand All @@ -94,8 +94,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
# @param [String] name
# The resource that owns the locations collection, if applicable.
# @param [Array<String>, String] extra_location_types
# Optional. Do not use this field. It is unsupported and is ignored unless
# explicitly documented otherwise. This is primarily for internal usage.
# Optional. Do not use this field unless explicitly documented otherwise. This
# is primarily for internal usage.
# @param [String] filter
# A filter to narrow down results to a preferred subset. The filtering language
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
Expand Down
Loading