Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/release-please.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
releaseType: python
handleGHRelease: true
manifest: true
# NOTE: this section is generated by synthtool.languages.python
# See https://github.com/googleapis/synthtool/blob/master/synthtool/languages/python.py
branches:
Expand Down
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.4.4"
}
1 change: 0 additions & 1 deletion docs/memcache_v1/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ Types for Google Cloud Memcache v1 API

.. automodule:: google.cloud.memcache_v1.types
:members:
:undoc-members:
:show-inheritance:
1 change: 0 additions & 1 deletion docs/memcache_v1beta2/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ Types for Google Cloud Memcache v1beta2 API

.. automodule:: google.cloud.memcache_v1beta2.types
:members:
:undoc-members:
:show-inheritance:
16 changes: 16 additions & 0 deletions google/cloud/memcache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from google.cloud.memcache import gapic_version as package_version

__version__ = package_version.__version__


from google.cloud.memcache_v1.services.cloud_memcache.async_client import (
CloudMemcacheAsyncClient,
Expand All @@ -26,11 +30,17 @@
Instance,
ListInstancesRequest,
ListInstancesResponse,
LocationMetadata,
MaintenancePolicy,
MaintenanceSchedule,
MemcacheParameters,
MemcacheVersion,
OperationMetadata,
RescheduleMaintenanceRequest,
UpdateInstanceRequest,
UpdateParametersRequest,
WeeklyMaintenanceWindow,
ZoneMetadata,
)

__all__ = (
Expand All @@ -43,9 +53,15 @@
"Instance",
"ListInstancesRequest",
"ListInstancesResponse",
"LocationMetadata",
"MaintenancePolicy",
"MaintenanceSchedule",
"MemcacheParameters",
"OperationMetadata",
"RescheduleMaintenanceRequest",
"UpdateInstanceRequest",
"UpdateParametersRequest",
"WeeklyMaintenanceWindow",
"ZoneMetadata",
"MemcacheVersion",
)
16 changes: 16 additions & 0 deletions google/cloud/memcache/gapic_version.py
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__ = "1.4.4" # {x-release-please-version}
16 changes: 16 additions & 0 deletions google/cloud/memcache_v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from google.cloud.memcache import gapic_version as package_version

__version__ = package_version.__version__


from .services.cloud_memcache import CloudMemcacheAsyncClient, CloudMemcacheClient
from .types.cloud_memcache import (
Expand All @@ -23,11 +27,17 @@
Instance,
ListInstancesRequest,
ListInstancesResponse,
LocationMetadata,
MaintenancePolicy,
MaintenanceSchedule,
MemcacheParameters,
MemcacheVersion,
OperationMetadata,
RescheduleMaintenanceRequest,
UpdateInstanceRequest,
UpdateParametersRequest,
WeeklyMaintenanceWindow,
ZoneMetadata,
)

__all__ = (
Expand All @@ -40,9 +50,15 @@
"Instance",
"ListInstancesRequest",
"ListInstancesResponse",
"LocationMetadata",
"MaintenancePolicy",
"MaintenanceSchedule",
"MemcacheParameters",
"MemcacheVersion",
"OperationMetadata",
"RescheduleMaintenanceRequest",
"UpdateInstanceRequest",
"UpdateParametersRequest",
"WeeklyMaintenanceWindow",
"ZoneMetadata",
)
10 changes: 10 additions & 0 deletions google/cloud/memcache_v1/gapic_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
"list_instances"
]
},
"RescheduleMaintenance": {
"methods": [
"reschedule_maintenance"
]
},
"UpdateInstance": {
"methods": [
"update_instance"
Expand Down Expand Up @@ -75,6 +80,11 @@
"list_instances"
]
},
"RescheduleMaintenance": {
"methods": [
"reschedule_maintenance"
]
},
"UpdateInstance": {
"methods": [
"update_instance"
Expand Down
Loading