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
5 changes: 5 additions & 0 deletions generated/google-apis-metastore_v1beta/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-metastore_v1beta

### v0.81.0 (2026-06-10)

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

### v0.80.0 (2026-02-15)

* Regenerated from discovery document revision 20260203
Expand Down
2 changes: 1 addition & 1 deletion generated/google-apis-metastore_v1beta/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/dataproc-metastore/docs) ma

## 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 @@ -618,8 +618,10 @@ def update!(**args)
end
end

# Configuration information for migrating from self-managed hive metastore on
# Google Cloud using Cloud SQL as the backend database to Dataproc Metastore.
# Deprecated: Migrations to Dataproc Metastore are no longer supported. Use
# BigLake Metastore migration instead. Configuration information for migrating
# from self-managed hive metastore on Google Cloud using Cloud SQL as the
# backend database to Dataproc Metastore.
class CloudSqlMigrationConfig
include Google::Apis::Core::Hashable

Expand Down Expand Up @@ -1820,8 +1822,10 @@ def update!(**args)
class MigrationExecution
include Google::Apis::Core::Hashable

# Configuration information for migrating from self-managed hive metastore on
# Google Cloud using Cloud SQL as the backend database to Dataproc Metastore.
# Deprecated: Migrations to Dataproc Metastore are no longer supported. Use
# BigLake Metastore migration instead. Configuration information for migrating
# from self-managed hive metastore on Google Cloud using Cloud SQL as the
# backend database to Dataproc Metastore.
# Corresponds to the JSON property `cloudSqlMigrationConfig`
# @return [Google::Apis::MetastoreV1beta::CloudSqlMigrationConfig]
attr_accessor :cloud_sql_migration_config
Expand All @@ -1843,7 +1847,9 @@ class MigrationExecution
# @return [String]
attr_accessor :name

# Output only. The current phase of the migration execution.
# Output only. Deprecated: Phase was designed for incoming migrations to
# Dataproc Metastore, not applicable when migrating away from it. The current
# phase of the migration execution.
# Corresponds to the JSON property `phase`
# @return [String]
attr_accessor :phase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module MetastoreV1beta
# Version of the google-apis-metastore_v1beta gem
GEM_VERSION = "0.80.0"
GEM_VERSION = "0.81.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 = "20260203"
REVISION = "20260427"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,21 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
execute_or_queue_command(command, &block)
end

# Lists information about the supported locations for this service. This method
# can be called in two ways: List all public locations: Use the path GET /v1/
# locations. List project-visible locations: Use the path GET /v1/projects/`
# project_id`/locations. This may include public locations as well as private or
# other locations specifically visible to the project.
# 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, 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, private, or
# other project-specific locations enabled for the project.For gRPC and client
# library implementations, the resource name is passed as the name field. For
# direct service calls, the resource name is incorporated into the request path
# based on the specific service implementation and version.
# @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 in
Expand Down
Loading