Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
chore: use gapic-generator-python 0.51.2 (#44)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

fix: add 'dict' annotation type to 'request'

Committer: @busunkim96
PiperOrigin-RevId: 398509016

Source-Link: googleapis/googleapis@b224dfa

Source-Link: googleapis/googleapis-gen@63a1db7
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNjNhMWRiN2EzOGQ3NGI5NjM5NTkyZjUyMWVkMWRhYWY3Mjk5YWQ5YSJ9
  • Loading branch information
gcf-owl-bot[bot] committed Sep 24, 2021
1 parent 618d57f commit b9ce54a
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 24 deletions.
Expand Up @@ -17,7 +17,7 @@
from distutils import util
import os
import re
from typing import Callable, Dict, Optional, Sequence, Tuple, Type, Union
from typing import Dict, Optional, Sequence, Tuple, Type, Union
import pkg_resources

from google.api_core import client_options as client_options_lib # type: ignore
Expand Down Expand Up @@ -396,7 +396,7 @@ def __init__(

def search_catalogs(
self,
request: private_catalog.SearchCatalogsRequest = None,
request: Union[private_catalog.SearchCatalogsRequest, dict] = None,
*,
retry: retries.Retry = gapic_v1.method.DEFAULT,
timeout: float = None,
Expand All @@ -407,7 +407,7 @@ def search_catalogs(
consumer cloud resource hierarchy context.
Args:
request (google.cloud.privatecatalog_v1beta1.types.SearchCatalogsRequest):
request (Union[google.cloud.privatecatalog_v1beta1.types.SearchCatalogsRequest, dict]):
The request object. Request message for
[PrivateCatalog.SearchCatalogs][google.cloud.privatecatalog.v1beta1.PrivateCatalog.SearchCatalogs].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
Expand Down Expand Up @@ -457,7 +457,7 @@ def search_catalogs(

def search_products(
self,
request: private_catalog.SearchProductsRequest = None,
request: Union[private_catalog.SearchProductsRequest, dict] = None,
*,
retry: retries.Retry = gapic_v1.method.DEFAULT,
timeout: float = None,
Expand All @@ -468,7 +468,7 @@ def search_products(
consumer cloud resource hierarchy context.
Args:
request (google.cloud.privatecatalog_v1beta1.types.SearchProductsRequest):
request (Union[google.cloud.privatecatalog_v1beta1.types.SearchProductsRequest, dict]):
The request object. Request message for
[PrivateCatalog.SearchProducts][google.cloud.privatecatalog.v1beta1.PrivateCatalog.SearchProducts].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
Expand Down Expand Up @@ -518,7 +518,7 @@ def search_products(

def search_versions(
self,
request: private_catalog.SearchVersionsRequest = None,
request: Union[private_catalog.SearchVersionsRequest, dict] = None,
*,
retry: retries.Retry = gapic_v1.method.DEFAULT,
timeout: float = None,
Expand All @@ -529,7 +529,7 @@ def search_versions(
consumer cloud resource hierarchy context.
Args:
request (google.cloud.privatecatalog_v1beta1.types.SearchVersionsRequest):
request (Union[google.cloud.privatecatalog_v1beta1.types.SearchVersionsRequest, dict]):
The request object. Request message for
[PrivateCatalog.SearchVersions][google.cloud.privatecatalog.v1beta1.PrivateCatalog.SearchVersions].
retry (google.api_core.retry.Retry): Designation of what errors, if any,
Expand Down
Expand Up @@ -117,7 +117,7 @@ def __init__(
**scopes_kwargs, quota_project_id=quota_project_id
)

# If the credentials is service account credentials, then always try to use self signed JWT.
# If the credentials are service account credentials, then always try to use self signed JWT.
if (
always_use_jwt_access
and isinstance(credentials, service_account.Credentials)
Expand Down
Expand Up @@ -101,16 +101,16 @@ def __init__(
api_mtls_endpoint (Optional[str]): Deprecated. The mutual TLS endpoint.
If provided, it overrides the ``host`` argument and tries to create
a mutual TLS channel with client SSL credentials from
``client_cert_source`` or applicatin default SSL credentials.
``client_cert_source`` or application default SSL credentials.
client_cert_source (Optional[Callable[[], Tuple[bytes, bytes]]]):
Deprecated. A callback to provide client SSL certificate bytes and
private key bytes, both in PEM format. It is ignored if
``api_mtls_endpoint`` is None.
ssl_channel_credentials (grpc.ChannelCredentials): SSL credentials
for grpc channel. It is ignored if ``channel`` is provided.
for the grpc channel. It is ignored if ``channel`` is provided.
client_cert_source_for_mtls (Optional[Callable[[], Tuple[bytes, bytes]]]):
A callback to provide client certificate bytes and private key bytes,
both in PEM format. It is used to configure mutual TLS channel. It is
both in PEM format. It is used to configure a mutual TLS channel. It is
ignored if ``channel`` or ``ssl_channel_credentials`` is provided.
quota_project_id (Optional[str]): An optional project to use for billing
and quota.
Expand Down
Expand Up @@ -148,16 +148,16 @@ def __init__(
api_mtls_endpoint (Optional[str]): Deprecated. The mutual TLS endpoint.
If provided, it overrides the ``host`` argument and tries to create
a mutual TLS channel with client SSL credentials from
``client_cert_source`` or applicatin default SSL credentials.
``client_cert_source`` or application default SSL credentials.
client_cert_source (Optional[Callable[[], Tuple[bytes, bytes]]]):
Deprecated. A callback to provide client SSL certificate bytes and
private key bytes, both in PEM format. It is ignored if
``api_mtls_endpoint`` is None.
ssl_channel_credentials (grpc.ChannelCredentials): SSL credentials
for grpc channel. It is ignored if ``channel`` is provided.
for the grpc channel. It is ignored if ``channel`` is provided.
client_cert_source_for_mtls (Optional[Callable[[], Tuple[bytes, bytes]]]):
A callback to provide client certificate bytes and private key bytes,
both in PEM format. It is used to configure mutual TLS channel. It is
both in PEM format. It is used to configure a mutual TLS channel. It is
ignored if ``channel`` or ``ssl_channel_credentials`` is provided.
quota_project_id (Optional[str]): An optional project to use for billing
and quota.
Expand Down
Expand Up @@ -35,11 +35,12 @@ async def sample_search_catalogs():

# Initialize request argument(s)
request = privatecatalog_v1beta1.SearchCatalogsRequest(
resource="resource_value",
)

# Make the request
page_result = client.search_catalogs(request=request)
async for response in page_result:
print("{}".format(response))
print(response)

# [END cloudprivatecatalog_generated_privatecatalog_v1beta1_PrivateCatalog_SearchCatalogs_async]
Expand Up @@ -35,11 +35,12 @@ def sample_search_catalogs():

# Initialize request argument(s)
request = privatecatalog_v1beta1.SearchCatalogsRequest(
resource="resource_value",
)

# Make the request
page_result = client.search_catalogs(request=request)
for response in page_result:
print("{}".format(response))
print(response)

# [END cloudprivatecatalog_generated_privatecatalog_v1beta1_PrivateCatalog_SearchCatalogs_sync]
Expand Up @@ -35,11 +35,12 @@ async def sample_search_products():

# Initialize request argument(s)
request = privatecatalog_v1beta1.SearchProductsRequest(
resource="resource_value",
)

# Make the request
page_result = client.search_products(request=request)
async for response in page_result:
print("{}".format(response))
print(response)

# [END cloudprivatecatalog_generated_privatecatalog_v1beta1_PrivateCatalog_SearchProducts_async]
Expand Up @@ -35,11 +35,12 @@ def sample_search_products():

# Initialize request argument(s)
request = privatecatalog_v1beta1.SearchProductsRequest(
resource="resource_value",
)

# Make the request
page_result = client.search_products(request=request)
for response in page_result:
print("{}".format(response))
print(response)

# [END cloudprivatecatalog_generated_privatecatalog_v1beta1_PrivateCatalog_SearchProducts_sync]
Expand Up @@ -35,11 +35,13 @@ async def sample_search_versions():

# Initialize request argument(s)
request = privatecatalog_v1beta1.SearchVersionsRequest(
resource="resource_value",
query="query_value",
)

# Make the request
page_result = client.search_versions(request=request)
async for response in page_result:
print("{}".format(response))
print(response)

# [END cloudprivatecatalog_generated_privatecatalog_v1beta1_PrivateCatalog_SearchVersions_async]
Expand Up @@ -35,11 +35,13 @@ def sample_search_versions():

# Initialize request argument(s)
request = privatecatalog_v1beta1.SearchVersionsRequest(
resource="resource_value",
query="query_value",
)

# Make the request
page_result = client.search_versions(request=request)
for response in page_result:
print("{}".format(response))
print(response)

# [END cloudprivatecatalog_generated_privatecatalog_v1beta1_PrivateCatalog_SearchVersions_sync]
8 changes: 4 additions & 4 deletions scripts/fixup_privatecatalog_v1beta1_keywords.py
Expand Up @@ -39,9 +39,9 @@ def partition(
class privatecatalogCallTransformer(cst.CSTTransformer):
CTRL_PARAMS: Tuple[str] = ('retry', 'timeout', 'metadata')
METHOD_TO_PARAMS: Dict[str, Tuple[str]] = {
'search_catalogs': ('resource', 'query', 'page_size', 'page_token', ),
'search_products': ('resource', 'query', 'page_size', 'page_token', ),
'search_versions': ('resource', 'query', 'page_size', 'page_token', ),
'search_catalogs': ('resource', 'query', 'page_size', 'page_token', ),
'search_products': ('resource', 'query', 'page_size', 'page_token', ),
'search_versions': ('resource', 'query', 'page_size', 'page_token', ),
}

def leave_Call(self, original: cst.Call, updated: cst.Call) -> cst.CSTNode:
Expand All @@ -60,7 +60,7 @@ def leave_Call(self, original: cst.Call, updated: cst.Call) -> cst.CSTNode:
return updated

kwargs, ctrl_kwargs = partition(
lambda a: not a.keyword.value in self.CTRL_PARAMS,
lambda a: a.keyword.value not in self.CTRL_PARAMS,
kwargs
)

Expand Down

0 comments on commit b9ce54a

Please sign in to comment.