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
3 changes: 2 additions & 1 deletion librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tools:
version: 23.7.0
package: black[jupyter]==23.7.0
- name: gapic-generator
version: 1.37.1
version: 1.39.0
- name: isort
version: 5.11.0
- name: nox
Expand Down Expand Up @@ -554,6 +554,7 @@ libraries:
- name: google-cloud-biglake-hive
version: 0.3.2
apis:
- path: google/cloud/biglake/hive/v1
- path: google/cloud/biglake/hive/v1beta
python:
default_version: v1beta
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
HiveMetastoreService
--------------------------------------

.. automodule:: google.cloud.biglake_hive_v1.services.hive_metastore_service
:members:
:inherited-members:

.. automodule:: google.cloud.biglake_hive_v1.services.hive_metastore_service.pagers
:members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Services for Google Cloud Biglake Hive v1 API
=============================================
.. toctree::
:maxdepth: 2

hive_metastore_service
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Types for Google Cloud Biglake Hive v1 API
==========================================

.. automodule:: google.cloud.biglake_hive_v1.types
:members:
:show-inheritance:
11 changes: 11 additions & 0 deletions packages/google-cloud-biglake-hive/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

.. include:: multiprocessing.rst

This package includes clients for multiple versions of Lakehouse.
By default, you will get version ``biglake_hive_v1beta``.


API Reference
-------------
Expand All @@ -11,6 +14,14 @@ API Reference
biglake_hive_v1beta/services_
biglake_hive_v1beta/types_

API Reference
-------------
.. toctree::
:maxdepth: 2

biglake_hive_v1/services_
biglake_hive_v1/types_


Changelog
---------
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# -*- coding: utf-8 -*-
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import google.api_core as api_core

from google.cloud.biglake_hive_v1 import gapic_version as package_version

__version__ = package_version.__version__

# PEP 0810: Explicit Lazy Imports
# Python 3.15+ natively intercepts and defers these imports.
# Developers can disable this behavior and force eager imports.
# For more information, see:
# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
# Older Python versions safely ignore this variable.
__lazy_modules__ = {
"google.cloud.biglake_hive_v1.services.hive_metastore_service",
"google.cloud.biglake_hive_v1.types.hive_metastore",
}


from .services.hive_metastore_service import (
HiveMetastoreServiceAsyncClient,
HiveMetastoreServiceClient,
)
from .types.hive_metastore import (
BatchCreatePartitionsRequest,
BatchCreatePartitionsResponse,
BatchDeletePartitionsRequest,
BatchUpdatePartitionsRequest,
BatchUpdatePartitionsResponse,
CreateHiveCatalogRequest,
CreateHiveDatabaseRequest,
CreateHiveTableRequest,
CreatePartitionRequest,
DeleteHiveCatalogRequest,
DeleteHiveDatabaseRequest,
DeleteHiveTableRequest,
FailoverHiveCatalogRequest,
FailoverHiveCatalogResponse,
FieldSchema,
GetHiveCatalogRequest,
GetHiveDatabaseRequest,
GetHiveTableRequest,
HiveCatalog,
HiveDatabase,
HiveTable,
ListHiveCatalogsRequest,
ListHiveCatalogsResponse,
ListHiveDatabasesRequest,
ListHiveDatabasesResponse,
ListHiveTablesRequest,
ListHiveTablesResponse,
ListPartitionsRequest,
ListPartitionsResponse,
Partition,
PartitionValues,
SerdeInfo,
StorageDescriptor,
UpdateHiveCatalogRequest,
UpdateHiveDatabaseRequest,
UpdateHiveTableRequest,
UpdatePartitionRequest,
)

__all__ = (
"HiveMetastoreServiceAsyncClient",
"BatchCreatePartitionsRequest",
"BatchCreatePartitionsResponse",
"BatchDeletePartitionsRequest",
"BatchUpdatePartitionsRequest",
"BatchUpdatePartitionsResponse",
"CreateHiveCatalogRequest",
"CreateHiveDatabaseRequest",
"CreateHiveTableRequest",
"CreatePartitionRequest",
"DeleteHiveCatalogRequest",
"DeleteHiveDatabaseRequest",
"DeleteHiveTableRequest",
"FailoverHiveCatalogRequest",
"FailoverHiveCatalogResponse",
"FieldSchema",
"GetHiveCatalogRequest",
"GetHiveDatabaseRequest",
"GetHiveTableRequest",
"HiveCatalog",
"HiveDatabase",
"HiveMetastoreServiceClient",
"HiveTable",
"ListHiveCatalogsRequest",
"ListHiveCatalogsResponse",
"ListHiveDatabasesRequest",
"ListHiveDatabasesResponse",
"ListHiveTablesRequest",
"ListHiveTablesResponse",
"ListPartitionsRequest",
"ListPartitionsResponse",
"Partition",
"PartitionValues",
"SerdeInfo",
"StorageDescriptor",
"UpdateHiveCatalogRequest",
"UpdateHiveDatabaseRequest",
"UpdateHiveTableRequest",
"UpdatePartitionRequest",
)

api_core.check_python_version("google.cloud.biglake_hive_v1")
api_core.check_dependency_versions("google.cloud.biglake_hive_v1")
Loading
Loading