Skip to content

Commit fa8c533

Browse files
feat: Add BigQuery Metastore Partition Service API version v1beta (#941)
* feat: Add BigQuery Metastore Partition Service API version v1beta PiperOrigin-RevId: 753333720 Source-Link: googleapis/googleapis@389abd1 Source-Link: googleapis/googleapis-gen@a875887 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYTg3NTg4NzkxYWMwMDU3YjViY2Q1YjkxZTQ5N2E1ZGFmZjY2ZWJiYyJ9 * update replacement in owlbot.py * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * Add gapic_version.py * update gapic_version.py * update docs/index.rst --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent e4c41d2 commit fa8c533

File tree

38 files changed

+9298
-4
lines changed

38 files changed

+9298
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
MetastorePartitionService
2+
-------------------------------------------
3+
4+
.. automodule:: google.cloud.bigquery_storage_v1beta.services.metastore_partition_service
5+
:members:
6+
:inherited-members:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Services for Google Cloud Bigquery Storage v1beta API
2+
=====================================================
3+
.. toctree::
4+
:maxdepth: 2
5+
6+
metastore_partition_service
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Types for Google Cloud Bigquery Storage v1beta API
2+
==================================================
3+
4+
.. automodule:: google.cloud.bigquery_storage_v1beta.types
5+
:members:
6+
:show-inheritance:

docs/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ API Reference
2121
bigquery_storage_v1/library
2222
bigquery_storage_v1/services_
2323
bigquery_storage_v1/types_
24+
bigquery_storage_v1beta/services_
25+
bigquery_storage_v1beta/types_
2426
bigquery_storage_v1beta2/library
2527
bigquery_storage_v1beta2/services_
2628
bigquery_storage_v1beta2/types_

google/cloud/bigquery_storage_v1alpha/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "2.25.0" # {x-release-please-version}
16+
__version__ = "2.31.0" # {x-release-please-version}
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
3+
"language": "python",
4+
"libraryPackage": "google.cloud.bigquery_storage_v1beta",
5+
"protoPackage": "google.cloud.bigquery.storage.v1beta",
6+
"schema": "1.0",
7+
"services": {
8+
"MetastorePartitionService": {
9+
"clients": {
10+
"grpc": {
11+
"libraryClient": "MetastorePartitionServiceClient",
12+
"rpcs": {
13+
"BatchCreateMetastorePartitions": {
14+
"methods": [
15+
"batch_create_metastore_partitions"
16+
]
17+
},
18+
"BatchDeleteMetastorePartitions": {
19+
"methods": [
20+
"batch_delete_metastore_partitions"
21+
]
22+
},
23+
"BatchUpdateMetastorePartitions": {
24+
"methods": [
25+
"batch_update_metastore_partitions"
26+
]
27+
},
28+
"ListMetastorePartitions": {
29+
"methods": [
30+
"list_metastore_partitions"
31+
]
32+
},
33+
"StreamMetastorePartitions": {
34+
"methods": [
35+
"stream_metastore_partitions"
36+
]
37+
}
38+
}
39+
},
40+
"grpc-async": {
41+
"libraryClient": "MetastorePartitionServiceAsyncClient",
42+
"rpcs": {
43+
"BatchCreateMetastorePartitions": {
44+
"methods": [
45+
"batch_create_metastore_partitions"
46+
]
47+
},
48+
"BatchDeleteMetastorePartitions": {
49+
"methods": [
50+
"batch_delete_metastore_partitions"
51+
]
52+
},
53+
"BatchUpdateMetastorePartitions": {
54+
"methods": [
55+
"batch_update_metastore_partitions"
56+
]
57+
},
58+
"ListMetastorePartitions": {
59+
"methods": [
60+
"list_metastore_partitions"
61+
]
62+
},
63+
"StreamMetastorePartitions": {
64+
"methods": [
65+
"stream_metastore_partitions"
66+
]
67+
}
68+
}
69+
}
70+
}
71+
}
72+
}
73+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
__version__ = "2.31.0" # {x-release-please-version}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Marker file for PEP 561.
2+
# The google-cloud-bigquery-storage package uses inline types.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2025 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
from .async_client import MetastorePartitionServiceAsyncClient
17+
from .client import MetastorePartitionServiceClient
18+
19+
__all__ = (
20+
"MetastorePartitionServiceClient",
21+
"MetastorePartitionServiceAsyncClient",
22+
)

0 commit comments

Comments
 (0)