-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
12,318 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...s/google-cloud-dataproc-metastore/docs/metastore_v1alpha/dataproc_metastore.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
DataprocMetastore | ||
----------------------------------- | ||
|
||
.. automodule:: google.cloud.metastore_v1alpha.services.dataproc_metastore | ||
:members: | ||
:inherited-members: | ||
|
||
|
||
.. automodule:: google.cloud.metastore_v1alpha.services.dataproc_metastore.pagers | ||
:members: | ||
:inherited-members: |
6 changes: 6 additions & 0 deletions
6
packages/google-cloud-dataproc-metastore/docs/metastore_v1alpha/services.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Services for Google Cloud Metastore v1alpha API | ||
=============================================== | ||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
dataproc_metastore |
7 changes: 7 additions & 0 deletions
7
packages/google-cloud-dataproc-metastore/docs/metastore_v1alpha/types.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Types for Google Cloud Metastore v1alpha API | ||
============================================ | ||
|
||
.. automodule:: google.cloud.metastore_v1alpha.types | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
89 changes: 89 additions & 0 deletions
89
packages/google-cloud-dataproc-metastore/google/cloud/metastore_v1alpha/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright 2020 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. | ||
# | ||
|
||
from .services.dataproc_metastore import DataprocMetastoreClient | ||
from .types.metastore import Backup | ||
from .types.metastore import CreateBackupRequest | ||
from .types.metastore import CreateMetadataImportRequest | ||
from .types.metastore import CreateServiceRequest | ||
from .types.metastore import DataCatalogConfig | ||
from .types.metastore import DatabaseDumpSpec | ||
from .types.metastore import DeleteBackupRequest | ||
from .types.metastore import DeleteServiceRequest | ||
from .types.metastore import ExportMetadataRequest | ||
from .types.metastore import GetBackupRequest | ||
from .types.metastore import GetMetadataImportRequest | ||
from .types.metastore import GetServiceRequest | ||
from .types.metastore import HiveMetastoreConfig | ||
from .types.metastore import KerberosConfig | ||
from .types.metastore import ListBackupsRequest | ||
from .types.metastore import ListBackupsResponse | ||
from .types.metastore import ListMetadataImportsRequest | ||
from .types.metastore import ListMetadataImportsResponse | ||
from .types.metastore import ListServicesRequest | ||
from .types.metastore import ListServicesResponse | ||
from .types.metastore import LocationMetadata | ||
from .types.metastore import MaintenanceWindow | ||
from .types.metastore import MetadataExport | ||
from .types.metastore import MetadataImport | ||
from .types.metastore import MetadataIntegration | ||
from .types.metastore import MetadataManagementActivity | ||
from .types.metastore import OperationMetadata | ||
from .types.metastore import Restore | ||
from .types.metastore import RestoreServiceRequest | ||
from .types.metastore import Secret | ||
from .types.metastore import Service | ||
from .types.metastore import UpdateMetadataImportRequest | ||
from .types.metastore import UpdateServiceRequest | ||
|
||
|
||
__all__ = ( | ||
"Backup", | ||
"CreateBackupRequest", | ||
"CreateMetadataImportRequest", | ||
"CreateServiceRequest", | ||
"DataCatalogConfig", | ||
"DatabaseDumpSpec", | ||
"DeleteBackupRequest", | ||
"DeleteServiceRequest", | ||
"ExportMetadataRequest", | ||
"GetBackupRequest", | ||
"GetMetadataImportRequest", | ||
"GetServiceRequest", | ||
"HiveMetastoreConfig", | ||
"KerberosConfig", | ||
"ListBackupsRequest", | ||
"ListBackupsResponse", | ||
"ListMetadataImportsRequest", | ||
"ListMetadataImportsResponse", | ||
"ListServicesRequest", | ||
"ListServicesResponse", | ||
"LocationMetadata", | ||
"MaintenanceWindow", | ||
"MetadataExport", | ||
"MetadataImport", | ||
"MetadataIntegration", | ||
"MetadataManagementActivity", | ||
"OperationMetadata", | ||
"Restore", | ||
"RestoreServiceRequest", | ||
"Secret", | ||
"Service", | ||
"UpdateMetadataImportRequest", | ||
"UpdateServiceRequest", | ||
"DataprocMetastoreClient", | ||
) |
2 changes: 2 additions & 0 deletions
2
packages/google-cloud-dataproc-metastore/google/cloud/metastore_v1alpha/py.typed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Marker file for PEP 561. | ||
# The google-cloud-metastore package uses inline types. |
16 changes: 16 additions & 0 deletions
16
packages/google-cloud-dataproc-metastore/google/cloud/metastore_v1alpha/services/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright 2020 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. | ||
# |
24 changes: 24 additions & 0 deletions
24
...dataproc-metastore/google/cloud/metastore_v1alpha/services/dataproc_metastore/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright 2020 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. | ||
# | ||
|
||
from .client import DataprocMetastoreClient | ||
from .async_client import DataprocMetastoreAsyncClient | ||
|
||
__all__ = ( | ||
"DataprocMetastoreClient", | ||
"DataprocMetastoreAsyncClient", | ||
) |
Oops, something went wrong.