Skip to content

Commit

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

PiperOrigin-RevId: 511892190

Source-Link: googleapis/googleapis@a45d9c0

Source-Link: googleapis/googleapis-gen@1907294
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTkwNzI5NGIxZDgzNjVlYTI0ZjhjNWYyZTA1OWE2NDEyNGM0ZWQzYiJ9

* 🦉 Updates from OwlBot post-processor

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

---------

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 Feb 28, 2023
1 parent 66685f5 commit 32fcc59
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 60 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import dataclasses
import json # type: ignore
import re
from typing import Callable, Dict, List, Optional, Sequence, Tuple, Union
from typing import Any, Callable, Dict, List, Optional, Sequence, Tuple, Union
import warnings

from google.api_core import gapic_v1, path_template, rest_helpers, rest_streaming
Expand Down Expand Up @@ -203,7 +203,7 @@ def pre_get_location(
self,
request: locations_pb2.GetLocationRequest,
metadata: Sequence[Tuple[str, str]],
) -> locations_pb2.Location:
) -> Tuple[locations_pb2.GetLocationRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for get_location
Override in a subclass to manipulate the request or metadata
Expand All @@ -212,7 +212,7 @@ def pre_get_location(
return request, metadata

def post_get_location(
self, response: locations_pb2.GetLocationRequest
self, response: locations_pb2.Location
) -> locations_pb2.Location:
"""Post-rpc interceptor for get_location
Expand All @@ -226,7 +226,7 @@ def pre_list_locations(
self,
request: locations_pb2.ListLocationsRequest,
metadata: Sequence[Tuple[str, str]],
) -> locations_pb2.ListLocationsResponse:
) -> Tuple[locations_pb2.ListLocationsRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for list_locations
Override in a subclass to manipulate the request or metadata
Expand All @@ -235,7 +235,7 @@ def pre_list_locations(
return request, metadata

def post_list_locations(
self, response: locations_pb2.ListLocationsRequest
self, response: locations_pb2.ListLocationsResponse
) -> locations_pb2.ListLocationsResponse:
"""Post-rpc interceptor for list_locations
Expand All @@ -249,17 +249,15 @@ def pre_get_iam_policy(
self,
request: iam_policy_pb2.GetIamPolicyRequest,
metadata: Sequence[Tuple[str, str]],
) -> policy_pb2.Policy:
) -> Tuple[iam_policy_pb2.GetIamPolicyRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for get_iam_policy
Override in a subclass to manipulate the request or metadata
before they are sent to the EkmService server.
"""
return request, metadata

def post_get_iam_policy(
self, response: iam_policy_pb2.GetIamPolicyRequest
) -> policy_pb2.Policy:
def post_get_iam_policy(self, response: policy_pb2.Policy) -> policy_pb2.Policy:
"""Post-rpc interceptor for get_iam_policy
Override in a subclass to manipulate the response
Expand All @@ -272,17 +270,15 @@ def pre_set_iam_policy(
self,
request: iam_policy_pb2.SetIamPolicyRequest,
metadata: Sequence[Tuple[str, str]],
) -> policy_pb2.Policy:
) -> Tuple[iam_policy_pb2.SetIamPolicyRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for set_iam_policy
Override in a subclass to manipulate the request or metadata
before they are sent to the EkmService server.
"""
return request, metadata

def post_set_iam_policy(
self, response: iam_policy_pb2.SetIamPolicyRequest
) -> policy_pb2.Policy:
def post_set_iam_policy(self, response: policy_pb2.Policy) -> policy_pb2.Policy:
"""Post-rpc interceptor for set_iam_policy
Override in a subclass to manipulate the response
Expand All @@ -295,7 +291,7 @@ def pre_test_iam_permissions(
self,
request: iam_policy_pb2.TestIamPermissionsRequest,
metadata: Sequence[Tuple[str, str]],
) -> iam_policy_pb2.TestIamPermissionsResponse:
) -> Tuple[iam_policy_pb2.TestIamPermissionsRequest, Sequence[Tuple[str, str]]]:
"""Pre-rpc interceptor for test_iam_permissions
Override in a subclass to manipulate the request or metadata
Expand All @@ -304,7 +300,7 @@ def pre_test_iam_permissions(
return request, metadata

def post_test_iam_permissions(
self, response: iam_policy_pb2.TestIamPermissionsRequest
self, response: iam_policy_pb2.TestIamPermissionsResponse
) -> iam_policy_pb2.TestIamPermissionsResponse:
"""Post-rpc interceptor for test_iam_permissions
Expand Down Expand Up @@ -420,7 +416,7 @@ class _CreateEkmConnection(EkmServiceRestStub):
def __hash__(self):
return hash("CreateEkmConnection")

__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, str] = {
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {
"ekmConnectionId": "",
}

Expand Down Expand Up @@ -533,7 +529,7 @@ class _GetEkmConnection(EkmServiceRestStub):
def __hash__(self):
return hash("GetEkmConnection")

__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, str] = {}
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {}

@classmethod
def _get_unset_required_fields(cls, message_dict):
Expand Down Expand Up @@ -635,7 +631,7 @@ class _ListEkmConnections(EkmServiceRestStub):
def __hash__(self):
return hash("ListEkmConnections")

__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, str] = {}
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {}

@classmethod
def _get_unset_required_fields(cls, message_dict):
Expand Down Expand Up @@ -727,7 +723,7 @@ class _UpdateEkmConnection(EkmServiceRestStub):
def __hash__(self):
return hash("UpdateEkmConnection")

__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, str] = {
__REQUIRED_FIELDS_DEFAULT_VALUES: Dict[str, Any] = {
"updateMask": {},
}

Expand Down
Loading

0 comments on commit 32fcc59

Please sign in to comment.