| Server IP : 35.236.43.222 / Your IP : 216.73.216.143 Web Server : Apache System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64 User : deploy ( 1002) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/google-cloud-sdk/lib/googlecloudsdk/api_lib/database_migration/ |
Upload File : |
# -*- coding: utf-8 -*- #
# Copyright 2020 Google LLC. All Rights Reserved.
#
# 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.
"""Cloud Database Migration API utilities."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import pprint
import uuid
from apitools.base.py import encoding
from googlecloudsdk.api_lib.util import apis
from googlecloudsdk.api_lib.util import waiter
from googlecloudsdk.calliope import base
from googlecloudsdk.core import log
from googlecloudsdk.core import resources
import six
def GetApiVersion(release_track):
"""Returns the API version based on the release track."""
if release_track == base.ReleaseTrack.ALPHA:
return 'v1alpha2'
return 'v1'
def GetClientInstance(release_track, no_http=False):
return apis.GetClientInstance('datamigration', GetApiVersion(release_track),
no_http=no_http)
def GetMessagesModule(release_track):
return apis.GetMessagesModule('datamigration', GetApiVersion(release_track))
def GetResourceParser(release_track):
resource_parser = resources.Registry()
resource_parser.RegisterApiByName('datamigration',
GetApiVersion(release_track))
return resource_parser
def ParentRef(project, location):
"""Get the resource name of the parent collection.
Args:
project: the project of the parent collection.
location: the GCP region of the membership.
Returns:
the resource name of the parent collection in the format of
`projects/{project}/locations/{location}`.
"""
return 'projects/{}/locations/{}'.format(project, location)
def GenerateRequestId():
"""Generates a UUID to use as the request ID.
Returns:
string, the 40-character UUID for the request ID.
"""
return six.text_type(uuid.uuid4())
def HandleLRO(client, result_operation, service, no_resource=False):
"""Uses the waiter library to handle LRO synchronous execution."""
op_resource = resources.REGISTRY.ParseRelativeName(
result_operation.name,
collection='datamigration.projects.locations.operations')
if no_resource:
poller = waiter.CloudOperationPollerNoResources(
client.projects_locations_operations)
else:
poller = CloudDmsOperationPoller(
service, client.projects_locations_operations
)
try:
waiter.WaitFor(
poller,
op_resource,
'Waiting for operation [{}] to complete'.format(result_operation.name),
)
except waiter.TimeoutError:
log.status.Print(
'The operations may still be underway remotely and may still succeed.'
' You may check the operation status for the following operation [{}]'
.format(result_operation.name)
)
return
class CloudDmsOperationPoller(waiter.CloudOperationPoller):
"""Manages a longrunning Operations for cloud DMS.
It is needed since we want to return the entire error rather than just the
error message as the base class does.
See https://cloud.google.com/speech/reference/rpc/google.longrunning
"""
def IsDone(self, operation):
"""Overrides."""
if operation.done:
if operation.error:
op_error = encoding.MessageToDict(operation.error)
raise waiter.OperationError('\n' + pprint.pformat(op_error))
return True
return False