[go: nahoru, domu]

Skip to content

Commit

Permalink
[CHANGE ME] Re-generated redis to pick up changes in the API or clien…
Browse files Browse the repository at this point in the history
…t library generator.
  • Loading branch information
yoshi-automation committed Jan 3, 2020
1 parent c6d953b commit 4efcc03
Show file tree
Hide file tree
Showing 5 changed files with 3,477 additions and 29 deletions.
11 changes: 11 additions & 0 deletions redis/google/cloud/redis_v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,23 @@


from __future__ import absolute_import
import sys
import warnings

from google.cloud.redis_v1 import types
from google.cloud.redis_v1.gapic import cloud_redis_client
from google.cloud.redis_v1.gapic import enums


if sys.version_info[:2] == (2, 7):
message = (
"A future version of this library will drop support for Python 2.7."
"More details about Python 2 support for Google Cloud Client Libraries"
"can be found at https://cloud.google.com/python/docs/python2-sunset/"
)
warnings.warn(message, DeprecationWarning)


class CloudRedisClient(cloud_redis_client.CloudRedisClient):
__doc__ = cloud_redis_client.CloudRedisClient.__doc__
enums = enums
Expand Down
14 changes: 2 additions & 12 deletions redis/google/cloud/redis_v1/gapic/cloud_redis_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,7 @@ def from_service_account_file(cls, filename, *args, **kwargs):

@classmethod
def instance_path(cls, project, location, instance):
"""DEPRECATED. Return a fully-qualified instance string."""
warnings.warn(
"Resource name helper functions are deprecated.",
PendingDeprecationWarning,
stacklevel=1,
)
"""Return a fully-qualified instance string."""
return google.api_core.path_template.expand(
"projects/{project}/locations/{location}/instances/{instance}",
project=project,
Expand All @@ -115,12 +110,7 @@ def instance_path(cls, project, location, instance):

@classmethod
def location_path(cls, project, location):
"""DEPRECATED. Return a fully-qualified location string."""
warnings.warn(
"Resource name helper functions are deprecated.",
PendingDeprecationWarning,
stacklevel=1,
)
"""Return a fully-qualified location string."""
return google.api_core.path_template.expand(
"projects/{project}/locations/{location}",
project=project,
Expand Down
11 changes: 11 additions & 0 deletions redis/google/cloud/redis_v1beta1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,23 @@


from __future__ import absolute_import
import sys
import warnings

from google.cloud.redis_v1beta1 import types
from google.cloud.redis_v1beta1.gapic import cloud_redis_client
from google.cloud.redis_v1beta1.gapic import enums


if sys.version_info[:2] == (2, 7):
message = (
"A future version of this library will drop support for Python 2.7."
"More details about Python 2 support for Google Cloud Client Libraries"
"can be found at https://cloud.google.com/python/docs/python2-sunset/"
)
warnings.warn(message, DeprecationWarning)


class CloudRedisClient(cloud_redis_client.CloudRedisClient):
__doc__ = cloud_redis_client.CloudRedisClient.__doc__
enums = enums
Expand Down
14 changes: 2 additions & 12 deletions redis/google/cloud/redis_v1beta1/gapic/cloud_redis_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,7 @@ def from_service_account_file(cls, filename, *args, **kwargs):

@classmethod
def instance_path(cls, project, location, instance):
"""DEPRECATED. Return a fully-qualified instance string."""
warnings.warn(
"Resource name helper functions are deprecated.",
PendingDeprecationWarning,
stacklevel=1,
)
"""Return a fully-qualified instance string."""
return google.api_core.path_template.expand(
"projects/{project}/locations/{location}/instances/{instance}",
project=project,
Expand All @@ -116,12 +111,7 @@ def instance_path(cls, project, location, instance):

@classmethod
def location_path(cls, project, location):
"""DEPRECATED. Return a fully-qualified location string."""
warnings.warn(
"Resource name helper functions are deprecated.",
PendingDeprecationWarning,
stacklevel=1,
)
"""Return a fully-qualified location string."""
return google.api_core.path_template.expand(
"projects/{project}/locations/{location}",
project=project,
Expand Down
Loading

0 comments on commit 4efcc03

Please sign in to comment.