Skip to content
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
2 changes: 1 addition & 1 deletion librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
language: python
version: v0.11.0
version: v0.12.0
repo: googleapis/google-cloud-python
sources:
googleapis:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
__version__ = package_version.__version__


from google.cloud.memorystore_v1.services.memorystore.async_client import (
MemorystoreAsyncClient,
)
from google.cloud.memorystore_v1.services.memorystore.client import MemorystoreClient
from google.cloud.memorystore_v1.types.memorystore import (
AutomatedBackupConfig,
Expand Down Expand Up @@ -64,6 +67,7 @@

__all__ = (
"MemorystoreClient",
"MemorystoreAsyncClient",
"AutomatedBackupConfig",
"Backup",
"BackupCollection",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import importlib_metadata as metadata


from .services.memorystore import MemorystoreClient
from .services.memorystore import MemorystoreAsyncClient, MemorystoreClient
from .types.memorystore import (
AutomatedBackupConfig,
Backup,
Expand Down Expand Up @@ -168,6 +168,7 @@ def _get_version(dependency_name):
)

__all__ = (
"MemorystoreAsyncClient",
"AutomatedBackupConfig",
"Backup",
"BackupCollection",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,166 @@
"services": {
"Memorystore": {
"clients": {
"grpc": {
"libraryClient": "MemorystoreClient",
"rpcs": {
"BackupInstance": {
"methods": [
"backup_instance"
]
},
"CreateInstance": {
"methods": [
"create_instance"
]
},
"DeleteBackup": {
"methods": [
"delete_backup"
]
},
"DeleteInstance": {
"methods": [
"delete_instance"
]
},
"ExportBackup": {
"methods": [
"export_backup"
]
},
"GetBackup": {
"methods": [
"get_backup"
]
},
"GetBackupCollection": {
"methods": [
"get_backup_collection"
]
},
"GetCertificateAuthority": {
"methods": [
"get_certificate_authority"
]
},
"GetInstance": {
"methods": [
"get_instance"
]
},
"GetSharedRegionalCertificateAuthority": {
"methods": [
"get_shared_regional_certificate_authority"
]
},
"ListBackupCollections": {
"methods": [
"list_backup_collections"
]
},
"ListBackups": {
"methods": [
"list_backups"
]
},
"ListInstances": {
"methods": [
"list_instances"
]
},
"RescheduleMaintenance": {
"methods": [
"reschedule_maintenance"
]
},
"UpdateInstance": {
"methods": [
"update_instance"
]
}
}
},
"grpc-async": {
"libraryClient": "MemorystoreAsyncClient",
"rpcs": {
"BackupInstance": {
"methods": [
"backup_instance"
]
},
"CreateInstance": {
"methods": [
"create_instance"
]
},
"DeleteBackup": {
"methods": [
"delete_backup"
]
},
"DeleteInstance": {
"methods": [
"delete_instance"
]
},
"ExportBackup": {
"methods": [
"export_backup"
]
},
"GetBackup": {
"methods": [
"get_backup"
]
},
"GetBackupCollection": {
"methods": [
"get_backup_collection"
]
},
"GetCertificateAuthority": {
"methods": [
"get_certificate_authority"
]
},
"GetInstance": {
"methods": [
"get_instance"
]
},
"GetSharedRegionalCertificateAuthority": {
"methods": [
"get_shared_regional_certificate_authority"
]
},
"ListBackupCollections": {
"methods": [
"list_backup_collections"
]
},
"ListBackups": {
"methods": [
"list_backups"
]
},
"ListInstances": {
"methods": [
"list_instances"
]
},
"RescheduleMaintenance": {
"methods": [
"reschedule_maintenance"
]
},
"UpdateInstance": {
"methods": [
"update_instance"
]
}
}
},
"rest": {
"libraryClient": "MemorystoreClient",
"rpcs": {
Expand Down
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 .async_client import MemorystoreAsyncClient
from .client import MemorystoreClient

__all__ = ("MemorystoreClient",)
__all__ = (
"MemorystoreClient",
"MemorystoreAsyncClient",
)
Loading
Loading