Skip to content

Commit

Permalink
chore: Update gapic-generator-python to v1.6.1 (#48)
Browse files Browse the repository at this point in the history
* chore: update to gapic-generator-python 1.5.0

feat: add support for `google.cloud.<api>.__version__`
PiperOrigin-RevId: 484665853

Source-Link: googleapis/googleapis@8eb249a

Source-Link: googleapis/googleapis-gen@c8aa327
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYzhhYTMyN2I1ZjQ3ODg2NWZjM2ZkOTFlM2MyNzY4ZTU0ZTI2YWQ0NCJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* add .release-please-manifest.json with correct version

* feat: new APIs added to reflect updates to the filestore service

- Add ENTERPRISE Tier
- Add snapshot APIs: RevertInstance, ListSnapshots, CreateSnapshot, DeleteSnapshot, UpdateSnapshot
- Add multi-share APIs: ListShares, GetShare, CreateShare, DeleteShare, UpdateShare
- Add ConnectMode to NetworkConfig (for Private Service Access support)
- New status codes (SUSPENDED/SUSPENDING, REVERTING/RESUMING)
- Add SuspensionReason (for KMS related suspension)
- Add new fields to Instance information: max_capacity_gb, capacity_step_size_gb, max_share_count, capacity_gb, multi_share_enabled

PiperOrigin-RevId: 487492758

Source-Link: googleapis/googleapis@5be5981

Source-Link: googleapis/googleapis-gen@ab0e217
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYWIwZTIxN2Y1NjBjYzJjMWFmYzExNDQxYzJlYWI2YjY5NTBlZmQyYiJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* chore: Update gapic-generator-python to v1.6.1

PiperOrigin-RevId: 488036204

Source-Link: googleapis/googleapis@08f275f

Source-Link: googleapis/googleapis-gen@555c094
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNTU1YzA5NDVlNjA2NDllMzg3MzlhZTY0YmM0NTcxOWNkZjcyMTc4ZiJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* use templated owlbot.py and setup.py

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* run nox format session

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
3 people authored Nov 19, 2022
1 parent c562006 commit d2867f6
Show file tree
Hide file tree
Showing 29 changed files with 523 additions and 325 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
releaseType: python
handleGHRelease: true
manifest: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.3.2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ Types for Google Cloud Bigquery Data Exchange v1beta1 API

.. automodule:: google.cloud.bigquery_data_exchange_v1beta1.types
:members:
:undoc-members:
:show-inheritance:
2 changes: 1 addition & 1 deletion packages/google-cloud-bigquery-data-exchange/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import os
import shlex
import sys

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# -*- coding: utf-8 -*-
# Copyright 2022 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 google.cloud.bigquery_data_exchange import gapic_version as package_version

__version__ = package_version.__version__


from google.cloud.bigquery_data_exchange_v1beta1.services.analytics_hub_service.async_client import (
AnalyticsHubServiceAsyncClient,
)
from google.cloud.bigquery_data_exchange_v1beta1.services.analytics_hub_service.client import (
AnalyticsHubServiceClient,
)
from google.cloud.bigquery_data_exchange_v1beta1.types.dataexchange import (
CreateDataExchangeRequest,
CreateListingRequest,
DataExchange,
DataProvider,
DeleteDataExchangeRequest,
DeleteListingRequest,
DestinationDataset,
DestinationDatasetReference,
GetDataExchangeRequest,
GetListingRequest,
ListDataExchangesRequest,
ListDataExchangesResponse,
Listing,
ListListingsRequest,
ListListingsResponse,
ListOrgDataExchangesRequest,
ListOrgDataExchangesResponse,
Publisher,
SubscribeListingRequest,
SubscribeListingResponse,
UpdateDataExchangeRequest,
UpdateListingRequest,
)

__all__ = (
"AnalyticsHubServiceClient",
"AnalyticsHubServiceAsyncClient",
"CreateDataExchangeRequest",
"CreateListingRequest",
"DataExchange",
"DataProvider",
"DeleteDataExchangeRequest",
"DeleteListingRequest",
"DestinationDataset",
"DestinationDatasetReference",
"GetDataExchangeRequest",
"GetListingRequest",
"ListDataExchangesRequest",
"ListDataExchangesResponse",
"Listing",
"ListListingsRequest",
"ListListingsResponse",
"ListOrgDataExchangesRequest",
"ListOrgDataExchangesResponse",
"Publisher",
"SubscribeListingRequest",
"SubscribeListingResponse",
"UpdateDataExchangeRequest",
"UpdateListingRequest",
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
# Copyright 2022 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.
#
__version__ = "0.3.2" # {x-release-please-version}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Marker file for PEP 561.
# The google-cloud-bigquery-data-exchange package uses inline types.
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,39 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from google.cloud.bigquery_data_exchange import gapic_version as package_version

from .services.analytics_hub_service import AnalyticsHubServiceClient
from .services.analytics_hub_service import AnalyticsHubServiceAsyncClient
__version__ = package_version.__version__

from .types.dataexchange import CreateDataExchangeRequest
from .types.dataexchange import CreateListingRequest
from .types.dataexchange import DataExchange
from .types.dataexchange import DataProvider
from .types.dataexchange import DeleteDataExchangeRequest
from .types.dataexchange import DeleteListingRequest
from .types.dataexchange import DestinationDataset
from .types.dataexchange import DestinationDatasetReference
from .types.dataexchange import GetDataExchangeRequest
from .types.dataexchange import GetListingRequest
from .types.dataexchange import ListDataExchangesRequest
from .types.dataexchange import ListDataExchangesResponse
from .types.dataexchange import Listing
from .types.dataexchange import ListListingsRequest
from .types.dataexchange import ListListingsResponse
from .types.dataexchange import ListOrgDataExchangesRequest
from .types.dataexchange import ListOrgDataExchangesResponse
from .types.dataexchange import Publisher
from .types.dataexchange import SubscribeListingRequest
from .types.dataexchange import SubscribeListingResponse
from .types.dataexchange import UpdateDataExchangeRequest
from .types.dataexchange import UpdateListingRequest

from .services.analytics_hub_service import (
AnalyticsHubServiceAsyncClient,
AnalyticsHubServiceClient,
)
from .types.dataexchange import (
CreateDataExchangeRequest,
CreateListingRequest,
DataExchange,
DataProvider,
DeleteDataExchangeRequest,
DeleteListingRequest,
DestinationDataset,
DestinationDatasetReference,
GetDataExchangeRequest,
GetListingRequest,
ListDataExchangesRequest,
ListDataExchangesResponse,
Listing,
ListListingsRequest,
ListListingsResponse,
ListOrgDataExchangesRequest,
ListOrgDataExchangesResponse,
Publisher,
SubscribeListingRequest,
SubscribeListingResponse,
UpdateDataExchangeRequest,
UpdateListingRequest,
)

__all__ = (
"AnalyticsHubServiceAsyncClient",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#
import proto # type: ignore


__protobuf__ = proto.module(
package="google.cloud.bigquery.dataexchange.common",
manifest={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from .client import AnalyticsHubServiceClient
from .async_client import AnalyticsHubServiceAsyncClient
from .client import AnalyticsHubServiceClient

__all__ = (
"AnalyticsHubServiceClient",
Expand Down
Loading

0 comments on commit d2867f6

Please sign in to comment.