Class BackupDRClient (0.2.4)

BackupDRClient(*, credentials: typing.Optional[google.auth.credentials.Credentials] = None, transport: typing.Optional[typing.Union[str, google.cloud.backupdr_v1.services.backup_dr.transports.base.BackupDRTransport, typing.Callable[[...], google.cloud.backupdr_v1.services.backup_dr.transports.base.BackupDRTransport]]] = None, client_options: typing.Optional[typing.Union[google.api_core.client_options.ClientOptions, dict]] = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)

The BackupDR Service

Properties

api_endpoint

Return the API endpoint used by the client instance.

Returns
TypeDescription
strThe API endpoint used by the client instance.

transport

Returns the transport used by the client instance.

Returns
TypeDescription
BackupDRTransportThe transport used by the client instance.

universe_domain

Return the universe domain used by the client instance.

Returns
TypeDescription
strThe universe domain used by the client instance.

Methods

BackupDRClient

BackupDRClient(*, credentials: typing.Optional[google.auth.credentials.Credentials] = None, transport: typing.Optional[typing.Union[str, google.cloud.backupdr_v1.services.backup_dr.transports.base.BackupDRTransport, typing.Callable[[...], google.cloud.backupdr_v1.services.backup_dr.transports.base.BackupDRTransport]]] = None, client_options: typing.Optional[typing.Union[google.api_core.client_options.ClientOptions, dict]] = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)

Instantiates the backup dr client.

Parameters
NameDescription
credentialsOptional[google.auth.credentials.Credentials]

The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment.

transportOptional[Union[str,BackupDRTransport,Callable[..., BackupDRTransport]]]

The transport to use, or a Callable that constructs and returns a new transport. If a Callable is given, it will be called with the same set of initialization arguments as used in the BackupDRTransport constructor. If set to None, a transport is chosen automatically.

client_optionsOptional[Union[google.api_core.client_options.ClientOptions, dict]]

Custom options for the client. 1. The api_endpoint property can be used to override the default endpoint provided by the client when transport is not explicitly provided. Only if this property is not set and transport was not explicitly provided, the endpoint is determined by the GOOGLE_API_USE_MTLS_ENDPOINT environment variable, which have one of the following values: "always" (always use the default mTLS endpoint), "never" (always use the default regular endpoint) and "auto" (auto-switch to the default mTLS endpoint if client certificate is present; this is the default value). 2. If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is "true", then the client_cert_source property can be used to provide a client certificate for mTLS transport. If not provided, the default SSL client certificate will be used if present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is "false" or not set, no client certificate will be used. 3. The universe_domain property can be used to override the default "googleapis.com" universe. Note that the api_endpoint property still takes precedence; and universe_domain is currently not supported for mTLS.

client_infogoogle.api_core.gapic_v1.client_info.ClientInfo

The client info used to send a user-agent string along with API requests. If None, then default info will be used. Generally, you only need to set this if you're developing your own client library.

Exceptions
TypeDescription
google.auth.exceptions.MutualTLSChannelErrorIf mutual TLS transport creation failed for any reason.

__exit__

__exit__(type, value, traceback)

Releases underlying transport's resources.

backup_path

backup_path(
    project: str, location: str, backupvault: str, datasource: str, backup: str
) -> str

Returns a fully-qualified backup string.

backup_plan_association_path

backup_plan_association_path(
    project: str, location: str, backup_plan_association: str
) -> str

Returns a fully-qualified backup_plan_association string.

backup_plan_path

backup_plan_path(project: str, location: str, backup_plan: str) -> str

Returns a fully-qualified backup_plan string.

backup_vault_path

backup_vault_path(project: str, location: str, backupvault: str) -> str

Returns a fully-qualified backup_vault string.

cancel_operation

cancel_operation(
    request: typing.Optional[
        google.longrunning.operations_pb2.CancelOperationRequest
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> None

Starts asynchronous cancellation on a long-running operation.

The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Parameters
NameDescription
request.operations_pb2.CancelOperationRequest

The request object. Request message for CancelOperation method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

common_billing_account_path

common_billing_account_path(billing_account: str) -> str

Returns a fully-qualified billing_account string.

common_folder_path

common_folder_path(folder: str) -> str

Returns a fully-qualified folder string.

common_location_path

common_location_path(project: str, location: str) -> str

Returns a fully-qualified location string.

common_organization_path

common_organization_path(organization: str) -> str

Returns a fully-qualified organization string.

common_project_path

common_project_path(project: str) -> str

Returns a fully-qualified project string.

create_backup_plan

create_backup_plan(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplan.CreateBackupPlanRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    backup_plan: typing.Optional[
        google.cloud.backupdr_v1.types.backupplan.BackupPlan
    ] = None,
    backup_plan_id: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Create a BackupPlan

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_create_backup_plan():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    backup_plan = backupdr_v1.BackupPlan()
    backup_plan.backup_rules.standard_schedule.recurrence_type = "YEARLY"
    backup_plan.backup_rules.standard_schedule.backup_window.start_hour_of_day = 1820
    backup_plan.backup_rules.standard_schedule.backup_window.end_hour_of_day = 1573
    backup_plan.backup_rules.standard_schedule.time_zone = "time_zone_value"
    backup_plan.backup_rules.rule_id = "rule_id_value"
    backup_plan.backup_rules.backup_retention_days = 2237
    backup_plan.resource_type = "resource_type_value"
    backup_plan.backup_vault = "backup_vault_value"

    request = backupdr_v1.CreateBackupPlanRequest(
        parent="parent_value",
        backup_plan_id="backup_plan_id_value",
        backup_plan=backup_plan,
    )

    # Make the request
    operation = client.create_backup_plan(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.CreateBackupPlanRequest, dict]

The request object. The request message for creating a BackupPlan.

parentstr

Required. The BackupPlan project and location in the format projects/{project}/locations/{location}. In Cloud BackupDR locations map to GCP regions, for example us-central1. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

backup_plangoogle.cloud.backupdr_v1.types.BackupPlan

Required. The BackupPlan resource object to create. This corresponds to the backup_plan field on the request instance; if request is provided, this should not be set.

backup_plan_idstr

Required. The name of the BackupPlan to create. The name must be unique for the specified project and location.The name must start with a lowercase letter followed by up to 62 lowercase letters, numbers, or hyphens. Pattern, /a-z][a-z0-9-]{,62}/. This corresponds to the backup_plan_id field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be BackupPlan A BackupPlan specifies some common fields, such as description as well as one or more BackupRule messages. Each BackupRule has a retention policy and defines a schedule by which the system is to perform backup workloads.

create_backup_plan_association

create_backup_plan_association(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplanassociation.CreateBackupPlanAssociationRequest,
            dict,
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    backup_plan_association: typing.Optional[
        google.cloud.backupdr_v1.types.backupplanassociation.BackupPlanAssociation
    ] = None,
    backup_plan_association_id: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Create a BackupPlanAssociation

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_create_backup_plan_association():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    backup_plan_association = backupdr_v1.BackupPlanAssociation()
    backup_plan_association.resource_type = "resource_type_value"
    backup_plan_association.resource = "resource_value"
    backup_plan_association.backup_plan = "backup_plan_value"

    request = backupdr_v1.CreateBackupPlanAssociationRequest(
        parent="parent_value",
        backup_plan_association_id="backup_plan_association_id_value",
        backup_plan_association=backup_plan_association,
    )

    # Make the request
    operation = client.create_backup_plan_association(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.CreateBackupPlanAssociationRequest, dict]

The request object. Request message for creating a backup plan.

parentstr

Required. The backup plan association project and location in the format projects/{project_id}/locations/{location}. In Cloud BackupDR locations map to GCP regions, for example us-central1. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

backup_plan_associationgoogle.cloud.backupdr_v1.types.BackupPlanAssociation

Required. The resource being created This corresponds to the backup_plan_association field on the request instance; if request is provided, this should not be set.

backup_plan_association_idstr

Required. The name of the backup plan association to create. The name must be unique for the specified project and location. This corresponds to the backup_plan_association_id field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be BackupPlanAssociation A BackupPlanAssociation represents a single BackupPlanAssociation which contains details like workload, backup plan etc

create_backup_vault

create_backup_vault(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.CreateBackupVaultRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    backup_vault: typing.Optional[
        google.cloud.backupdr_v1.types.backupvault.BackupVault
    ] = None,
    backup_vault_id: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Creates a new BackupVault in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_create_backup_vault():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.CreateBackupVaultRequest(
        parent="parent_value",
        backup_vault_id="backup_vault_id_value",
    )

    # Make the request
    operation = client.create_backup_vault(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.CreateBackupVaultRequest, dict]

The request object. Message for creating a BackupVault.

parentstr

Required. Value for parent. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

backup_vaultgoogle.cloud.backupdr_v1.types.BackupVault

Required. The resource being created This corresponds to the backup_vault field on the request instance; if request is provided, this should not be set.

backup_vault_idstr

Required. ID of the requesting object If auto-generating ID server-side, remove this field and backup_vault_id from the method_signature of Create RPC This corresponds to the backup_vault_id field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be BackupVault Message describing a BackupVault object.

create_management_server

create_management_server(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupdr.CreateManagementServerRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    management_server: typing.Optional[
        google.cloud.backupdr_v1.types.backupdr.ManagementServer
    ] = None,
    management_server_id: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Creates a new ManagementServer in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_create_management_server():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.CreateManagementServerRequest(
        parent="parent_value",
        management_server_id="management_server_id_value",
    )

    # Make the request
    operation = client.create_management_server(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.CreateManagementServerRequest, dict]

The request object. Request message for creating a management server instance.

parentstr

Required. The management server project and location in the format 'projects/{project_id}/locations/{location}'. In Cloud Backup and DR locations map to Google Cloud regions, for example us-central1. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

management_servergoogle.cloud.backupdr_v1.types.ManagementServer

Required. A [management server resource][google.cloud.backupdr.v1.ManagementServer] This corresponds to the management_server field on the request instance; if request is provided, this should not be set.

management_server_idstr

Required. The name of the management server to create. The name must be unique for the specified project and location. This corresponds to the management_server_id field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be ManagementServer ManagementServer describes a single BackupDR ManagementServer instance.

data_source_path

data_source_path(
    project: str, location: str, backupvault: str, datasource: str
) -> str

Returns a fully-qualified data_source string.

delete_backup

delete_backup(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.DeleteBackupRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Deletes a Backup.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_delete_backup():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.DeleteBackupRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_backup(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.DeleteBackupRequest, dict]

The request object. Message for deleting a Backup.

namestr

Required. Name of the resource. This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be Backup Message describing a Backup object.

delete_backup_plan

delete_backup_plan(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplan.DeleteBackupPlanRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Deletes a single BackupPlan.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_delete_backup_plan():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.DeleteBackupPlanRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_backup_plan(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.DeleteBackupPlanRequest, dict]

The request object. The request message for deleting a BackupPlan.

namestr

Required. The resource name of the BackupPlan to delete. Format: projects/{project}/locations/{location}/backupPlans/{backup_plan} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be google.protobuf.empty_pb2.Empty A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

delete_backup_plan_association

delete_backup_plan_association(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplanassociation.DeleteBackupPlanAssociationRequest,
            dict,
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Deletes a single BackupPlanAssociation.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_delete_backup_plan_association():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.DeleteBackupPlanAssociationRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_backup_plan_association(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.DeleteBackupPlanAssociationRequest, dict]

The request object. Request message for deleting a backup plan association.

namestr

Required. Name of the backup plan association resource, in the format projects/{project}/locations/{location}/backupPlanAssociations/{backupPlanAssociationId} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be google.protobuf.empty_pb2.Empty A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

delete_backup_vault

delete_backup_vault(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.DeleteBackupVaultRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Deletes a BackupVault.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_delete_backup_vault():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.DeleteBackupVaultRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_backup_vault(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.DeleteBackupVaultRequest, dict]

The request object. Message for deleting a BackupVault.

namestr

Required. Name of the resource. This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be google.protobuf.empty_pb2.Empty A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

delete_management_server

delete_management_server(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupdr.DeleteManagementServerRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Deletes a single ManagementServer.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_delete_management_server():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.DeleteManagementServerRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_management_server(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.DeleteManagementServerRequest, dict]

The request object. Request message for deleting a management server instance.

namestr

Required. Name of the resource This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be google.protobuf.empty_pb2.Empty A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }

delete_operation

delete_operation(
    request: typing.Optional[
        google.longrunning.operations_pb2.DeleteOperationRequest
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> None

Deletes a long-running operation.

This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Parameters
NameDescription
request.operations_pb2.DeleteOperationRequest

The request object. Request message for DeleteOperation method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

fetch_usable_backup_vaults

fetch_usable_backup_vaults(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.FetchUsableBackupVaultsRequest,
            dict,
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.services.backup_dr.pagers.FetchUsableBackupVaultsPager

FetchUsableBackupVaults lists usable BackupVaults in a given project and location. Usable BackupVault are the ones that user has backupdr.backupVaults.get permission.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_fetch_usable_backup_vaults():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.FetchUsableBackupVaultsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.fetch_usable_backup_vaults(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.FetchUsableBackupVaultsRequest, dict]

The request object. Request message for fetching usable BackupVaults.

parentstr

Required. The project and location for which to retrieve backupvault stores information, in the format 'projects/{project_id}/locations/{location}'. In Cloud Backup and DR, locations map to Google Cloud regions, for example us-central1. To retrieve backupvault stores for all locations, use "-" for the '{location}' value. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.services.backup_dr.pagers.FetchUsableBackupVaultsPagerResponse message for fetching usable BackupVaults. Iterating over this object will yield results and resolve additional pages automatically.

from_service_account_file

from_service_account_file(filename: str, *args, **kwargs)

Creates an instance of this client using the provided credentials file.

Parameter
NameDescription
filenamestr

The path to the service account private key json file.

Returns
TypeDescription
BackupDRClientThe constructed client.

from_service_account_info

from_service_account_info(info: dict, *args, **kwargs)

Creates an instance of this client using the provided credentials info.

Parameter
NameDescription
infodict

The service account private key info.

Returns
TypeDescription
BackupDRClientThe constructed client.

from_service_account_json

from_service_account_json(filename: str, *args, **kwargs)

Creates an instance of this client using the provided credentials file.

Parameter
NameDescription
filenamestr

The path to the service account private key json file.

Returns
TypeDescription
BackupDRClientThe constructed client.

get_backup

get_backup(
    request: typing.Optional[
        typing.Union[google.cloud.backupdr_v1.types.backupvault.GetBackupRequest, dict]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.types.backupvault.Backup

Gets details of a Backup.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_get_backup():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.GetBackupRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_backup(request=request)

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.GetBackupRequest, dict]

The request object. Request message for getting a Backup.

namestr

Required. Name of the data source resource name, in the format 'projects/{project_id}/locations/{location}/backupVaults/{backupVault}/dataSources/{datasource}/backups/{backup}' This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.types.BackupMessage describing a Backup object.

get_backup_plan

get_backup_plan(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplan.GetBackupPlanRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.types.backupplan.BackupPlan

Gets details of a single BackupPlan.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_get_backup_plan():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.GetBackupPlanRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_backup_plan(request=request)

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.GetBackupPlanRequest, dict]

The request object. The request message for getting a BackupPlan.

namestr

Required. The resource name of the BackupPlan to retrieve. Format: projects/{project}/locations/{location}/backupPlans/{backup_plan} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.types.BackupPlanA BackupPlan specifies some common fields, such as description as well as one or more BackupRule messages. Each BackupRule has a retention policy and defines a schedule by which the system is to perform backup workloads.

get_backup_plan_association

get_backup_plan_association(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplanassociation.GetBackupPlanAssociationRequest,
            dict,
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.types.backupplanassociation.BackupPlanAssociation

Gets details of a single BackupPlanAssociation.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_get_backup_plan_association():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.GetBackupPlanAssociationRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_backup_plan_association(request=request)

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.GetBackupPlanAssociationRequest, dict]

The request object. Request message for getting a BackupPlanAssociation resource.

namestr

Required. Name of the backup plan association resource, in the format projects/{project}/locations/{location}/backupPlanAssociations/{backupPlanAssociationId} This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.types.BackupPlanAssociationA BackupPlanAssociation represents a single BackupPlanAssociation which contains details like workload, backup plan etc

get_backup_vault

get_backup_vault(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.GetBackupVaultRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.types.backupvault.BackupVault

Gets details of a BackupVault.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_get_backup_vault():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.GetBackupVaultRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_backup_vault(request=request)

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.GetBackupVaultRequest, dict]

The request object. Request message for getting a BackupVault.

namestr

Required. Name of the backupvault store resource name, in the format 'projects/{project_id}/locations/{location}/backupVaults/{resource_name}' This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.types.BackupVaultMessage describing a BackupVault object.

get_data_source

get_data_source(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.GetDataSourceRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.types.backupvault.DataSource

Gets details of a DataSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_get_data_source():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.GetDataSourceRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_data_source(request=request)

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.GetDataSourceRequest, dict]

The request object. Request message for getting a DataSource instance.

namestr

Required. Name of the data source resource name, in the format 'projects/{project_id}/locations/{location}/backupVaults/{resource_name}/dataSource/{resource_name}' This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.types.DataSourceMessage describing a DataSource object. Datasource object used to represent Datasource details for both admin and basic view.

get_iam_policy

get_iam_policy(
    request: typing.Optional[google.iam.v1.iam_policy_pb2.GetIamPolicyRequest] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.iam.v1.policy_pb2.Policy

Gets the IAM access control policy for a function.

Returns an empty policy if the function exists and does not have a policy set.

Parameters
NameDescription
request.iam_policy_pb2.GetIamPolicyRequest

The request object. Request message for GetIamPolicy method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
.policy_pb2.PolicyDefines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. A Policy is a collection of bindings. A binding binds one or more members to a single role. Members can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions (defined by IAM or configured by users). A binding can optionally specify a condition, which is a logic expression that further constrains the role binding based on attributes about the request and/or target resource. **JSON Example** :: { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:[email protected]", "group:[email protected]", "domain:google.com", "serviceAccount:[email protected]" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": ["user:[email protected]"], "condition": { "title": "expirable access", "description": "Does not grant access after Sep 2020", "expression": "request.time < timestamp('2020-10-01t00:00:00.000z')",="" }="" }="" ]="" }="" **yaml="" example**="" ::="" bindings:="" -="" members:="" -="" user:[email protected]="" -="" group:[email protected]="" -="" domain:google.com="" -="" serviceaccount:[email protected]="" role:="" roles/resourcemanager.organizationadmin="" -="" members:="" -="" user:[email protected]="" role:="" roles/resourcemanager.organizationviewer="" condition:="" title:="" expirable="" access="" description:="" does="" not="" grant="" access="" after="" sep="" 2020="" expression:="" request.time="">< timestamp('2020-10-01t00:00:00.000z')="" for="" a="" description="" of="" iam="" and="" its="" features,="" see="" the="">IAM developer's guide__.

get_location

get_location(
    request: typing.Optional[
        google.cloud.location.locations_pb2.GetLocationRequest
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.location.locations_pb2.Location

Gets information about a location.

Parameters
NameDescription
request.location_pb2.GetLocationRequest

The request object. Request message for GetLocation method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
.location_pb2.LocationLocation object.

get_management_server

get_management_server(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupdr.GetManagementServerRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.types.backupdr.ManagementServer

Gets details of a single ManagementServer.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_get_management_server():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.GetManagementServerRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_management_server(request=request)

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.GetManagementServerRequest, dict]

The request object. Request message for getting a management server instance.

namestr

Required. Name of the management server resource name, in the format 'projects/{project_id}/locations/{location}/managementServers/{resource_name}' This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.types.ManagementServerManagementServer describes a single BackupDR ManagementServer instance.

get_mtls_endpoint_and_cert_source

get_mtls_endpoint_and_cert_source(
    client_options: typing.Optional[
        google.api_core.client_options.ClientOptions
    ] = None,
)

Deprecated. Return the API endpoint and client cert source for mutual TLS.

The client cert source is determined in the following order: (1) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is not "true", the client cert source is None. (2) if client_options.client_cert_source is provided, use the provided one; if the default client cert source exists, use the default one; otherwise the client cert source is None.

The API endpoint is determined in the following order: (1) if client_options.api_endpoint if provided, use the provided one. (2) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is "always", use the default mTLS endpoint; if the environment variable is "never", use the default API endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise use the default API endpoint.

More details can be found at https://google.aip.dev/auth/4114.

Parameter
NameDescription
client_optionsgoogle.api_core.client_options.ClientOptions

Custom options for the client. Only the api_endpoint and client_cert_source properties may be used in this method.

Exceptions
TypeDescription
google.auth.exceptions.MutualTLSChannelErrorIf any errors happen.
Returns
TypeDescription
Tuple[str, Callable[[], Tuple[bytes, bytes]]]returns the API endpoint and the client cert source to use.

get_operation

get_operation(
    request: typing.Optional[
        google.longrunning.operations_pb2.GetOperationRequest
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.longrunning.operations_pb2.Operation

Gets the latest state of a long-running operation.

Parameters
NameDescription
request.operations_pb2.GetOperationRequest

The request object. Request message for GetOperation method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
.operations_pb2.OperationAn Operation object.

initialize_service

initialize_service(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupdr.InitializeServiceRequest, dict
        ]
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Initializes the service related config for a project.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_initialize_service():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.InitializeServiceRequest(
        name="name_value",
        resource_type="resource_type_value",
    )

    # Make the request
    operation = client.initialize_service(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.InitializeServiceRequest, dict]

The request object. Request message for initializing the service.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be InitializeServiceResponse Response message for initializing the service.

list_backup_plan_associations

list_backup_plan_associations(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplanassociation.ListBackupPlanAssociationsRequest,
            dict,
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupPlanAssociationsPager

Lists BackupPlanAssociations in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_list_backup_plan_associations():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.ListBackupPlanAssociationsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_backup_plan_associations(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.ListBackupPlanAssociationsRequest, dict]

The request object. Request message for List BackupPlanAssociation

parentstr

Required. The project and location for which to retrieve backup Plan Associations information, in the format projects/{project_id}/locations/{location}. In Cloud BackupDR, locations map to GCP regions, for example us-central1. To retrieve backup plan associations for all locations, use "-" for the {location} value. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupPlanAssociationsPagerResponse message for List BackupPlanAssociation Iterating over this object will yield results and resolve additional pages automatically.

list_backup_plans

list_backup_plans(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplan.ListBackupPlansRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupPlansPager

Lists BackupPlans in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_list_backup_plans():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.ListBackupPlansRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_backup_plans(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.ListBackupPlansRequest, dict]

The request object. The request message for getting a list BackupPlan.

parentstr

Required. The project and location for which to retrieve BackupPlans information. Format: projects/{project}/locations/{location}. In Cloud BackupDR, locations map to GCP regions, for e.g. us-central1. To retrieve backup plans for all locations, use "-" for the {location} value. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupPlansPagerThe response message for getting a list of BackupPlan. Iterating over this object will yield results and resolve additional pages automatically.

list_backup_vaults

list_backup_vaults(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.ListBackupVaultsRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupVaultsPager

Lists BackupVaults in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_list_backup_vaults():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.ListBackupVaultsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_backup_vaults(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.ListBackupVaultsRequest, dict]

The request object. Request message for listing backupvault stores.

parentstr

Required. The project and location for which to retrieve backupvault stores information, in the format 'projects/{project_id}/locations/{location}'. In Cloud Backup and DR, locations map to Google Cloud regions, for example us-central1. To retrieve backupvault stores for all locations, use "-" for the '{location}' value. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupVaultsPagerResponse message for listing BackupVaults. Iterating over this object will yield results and resolve additional pages automatically.

list_backups

list_backups(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.ListBackupsRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupsPager

Lists Backups in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_list_backups():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.ListBackupsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_backups(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.ListBackupsRequest, dict]

The request object. Request message for listing Backups.

parentstr

Required. The project and location for which to retrieve backup information, in the format 'projects/{project_id}/locations/{location}'. In Cloud Backup and DR, locations map to Google Cloud regions, for example us-central1. To retrieve data sources for all locations, use "-" for the '{location}' value. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.services.backup_dr.pagers.ListBackupsPagerResponse message for listing Backups. Iterating over this object will yield results and resolve additional pages automatically.

list_data_sources

list_data_sources(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.ListDataSourcesRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.services.backup_dr.pagers.ListDataSourcesPager

Lists DataSources in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_list_data_sources():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.ListDataSourcesRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_data_sources(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.ListDataSourcesRequest, dict]

The request object. Request message for listing DataSources.

parentstr

Required. The project and location for which to retrieve data sources information, in the format 'projects/{project_id}/locations/{location}'. In Cloud Backup and DR, locations map to Google Cloud regions, for example us-central1. To retrieve data sources for all locations, use "-" for the '{location}' value. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.services.backup_dr.pagers.ListDataSourcesPagerResponse message for listing DataSources. Iterating over this object will yield results and resolve additional pages automatically.

list_locations

list_locations(
    request: typing.Optional[
        google.cloud.location.locations_pb2.ListLocationsRequest
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.location.locations_pb2.ListLocationsResponse

Lists information about the supported locations for this service.

Parameters
NameDescription
request.location_pb2.ListLocationsRequest

The request object. Request message for ListLocations method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
.location_pb2.ListLocationsResponseResponse message for ListLocations method.

list_management_servers

list_management_servers(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupdr.ListManagementServersRequest, dict
        ]
    ] = None,
    *,
    parent: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.cloud.backupdr_v1.services.backup_dr.pagers.ListManagementServersPager

Lists ManagementServers in a given project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_list_management_servers():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.ListManagementServersRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_management_servers(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.ListManagementServersRequest, dict]

The request object. Request message for listing management servers.

parentstr

Required. The project and location for which to retrieve management servers information, in the format 'projects/{project_id}/locations/{location}'. In Cloud BackupDR, locations map to Google Cloud regions, for example us-central1. To retrieve management servers for all locations, use "-" for the '{location}' value. This corresponds to the parent field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.cloud.backupdr_v1.services.backup_dr.pagers.ListManagementServersPagerResponse message for listing management servers. Iterating over this object will yield results and resolve additional pages automatically.

list_operations

list_operations(
    request: typing.Optional[
        google.longrunning.operations_pb2.ListOperationsRequest
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.longrunning.operations_pb2.ListOperationsResponse

Lists operations that match the specified filter in the request.

Parameters
NameDescription
request.operations_pb2.ListOperationsRequest

The request object. Request message for ListOperations method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
.operations_pb2.ListOperationsResponseResponse message for ListOperations method.

management_server_path

management_server_path(project: str, location: str, managementserver: str) -> str

Returns a fully-qualified management_server string.

parse_backup_path

parse_backup_path(path: str) -> typing.Dict[str, str]

Parses a backup path into its component segments.

parse_backup_plan_association_path

parse_backup_plan_association_path(path: str) -> typing.Dict[str, str]

Parses a backup_plan_association path into its component segments.

parse_backup_plan_path

parse_backup_plan_path(path: str) -> typing.Dict[str, str]

Parses a backup_plan path into its component segments.

parse_backup_vault_path

parse_backup_vault_path(path: str) -> typing.Dict[str, str]

Parses a backup_vault path into its component segments.

parse_common_billing_account_path

parse_common_billing_account_path(path: str) -> typing.Dict[str, str]

Parse a billing_account path into its component segments.

parse_common_folder_path

parse_common_folder_path(path: str) -> typing.Dict[str, str]

Parse a folder path into its component segments.

parse_common_location_path

parse_common_location_path(path: str) -> typing.Dict[str, str]

Parse a location path into its component segments.

parse_common_organization_path

parse_common_organization_path(path: str) -> typing.Dict[str, str]

Parse a organization path into its component segments.

parse_common_project_path

parse_common_project_path(path: str) -> typing.Dict[str, str]

Parse a project path into its component segments.

parse_data_source_path

parse_data_source_path(path: str) -> typing.Dict[str, str]

Parses a data_source path into its component segments.

parse_management_server_path

parse_management_server_path(path: str) -> typing.Dict[str, str]

Parses a management_server path into its component segments.

restore_backup

restore_backup(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.RestoreBackupRequest, dict
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Restore from a Backup

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_restore_backup():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    compute_instance_target_environment = backupdr_v1.ComputeInstanceTargetEnvironment()
    compute_instance_target_environment.project = "project_value"
    compute_instance_target_environment.zone = "zone_value"

    request = backupdr_v1.RestoreBackupRequest(
        compute_instance_target_environment=compute_instance_target_environment,
        name="name_value",
    )

    # Make the request
    operation = client.restore_backup(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.RestoreBackupRequest, dict]

The request object. Request message for restoring from a Backup.

namestr

Required. The resource name of the Backup instance, in the format 'projects//locations//backupVaults//dataSources//backups/'. This corresponds to the name field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be RestoreBackupResponse Response message for restoring from a Backup.

set_iam_policy

set_iam_policy(
    request: typing.Optional[google.iam.v1.iam_policy_pb2.SetIamPolicyRequest] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.iam.v1.policy_pb2.Policy

Sets the IAM access control policy on the specified function.

Replaces any existing policy.

Parameters
NameDescription
request.iam_policy_pb2.SetIamPolicyRequest

The request object. Request message for SetIamPolicy method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
.policy_pb2.PolicyDefines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. A Policy is a collection of bindings. A binding binds one or more members to a single role. Members can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions (defined by IAM or configured by users). A binding can optionally specify a condition, which is a logic expression that further constrains the role binding based on attributes about the request and/or target resource. **JSON Example** :: { "bindings": [ { "role": "roles/resourcemanager.organizationAdmin", "members": [ "user:[email protected]", "group:[email protected]", "domain:google.com", "serviceAccount:[email protected]" ] }, { "role": "roles/resourcemanager.organizationViewer", "members": ["user:[email protected]"], "condition": { "title": "expirable access", "description": "Does not grant access after Sep 2020", "expression": "request.time < timestamp('2020-10-01t00:00:00.000z')",="" }="" }="" ]="" }="" **yaml="" example**="" ::="" bindings:="" -="" members:="" -="" user:[email protected]="" -="" group:[email protected]="" -="" domain:google.com="" -="" serviceaccount:[email protected]="" role:="" roles/resourcemanager.organizationadmin="" -="" members:="" -="" user:[email protected]="" role:="" roles/resourcemanager.organizationviewer="" condition:="" title:="" expirable="" access="" description:="" does="" not="" grant="" access="" after="" sep="" 2020="" expression:="" request.time="">< timestamp('2020-10-01t00:00:00.000z')="" for="" a="" description="" of="" iam="" and="" its="" features,="" see="" the="">IAM developer's guide__.

test_iam_permissions

test_iam_permissions(
    request: typing.Optional[
        google.iam.v1.iam_policy_pb2.TestIamPermissionsRequest
    ] = None,
    *,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.iam.v1.iam_policy_pb2.TestIamPermissionsResponse

Tests the specified IAM permissions against the IAM access control policy for a function.

If the function does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

Parameters
NameDescription
request.iam_policy_pb2.TestIamPermissionsRequest

The request object. Request message for TestIamPermissions method.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
.iam_policy_pb2.TestIamPermissionsResponseResponse message for TestIamPermissions method.

trigger_backup

trigger_backup(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupplanassociation.TriggerBackupRequest,
            dict,
        ]
    ] = None,
    *,
    name: typing.Optional[str] = None,
    rule_id: typing.Optional[str] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Triggers a new Backup.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_trigger_backup():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.TriggerBackupRequest(
        name="name_value",
        rule_id="rule_id_value",
    )

    # Make the request
    operation = client.trigger_backup(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.TriggerBackupRequest, dict]

The request object. Request message for triggering a backup.

namestr

Required. Name of the backup plan association resource, in the format projects/{project}/locations/{location}/backupPlanAssociations/{backupPlanAssociationId} This corresponds to the name field on the request instance; if request is provided, this should not be set.

rule_idstr

Required. backup rule_id for which a backup needs to be triggered. This corresponds to the rule_id field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be BackupPlanAssociation A BackupPlanAssociation represents a single BackupPlanAssociation which contains details like workload, backup plan etc

update_backup

update_backup(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.UpdateBackupRequest, dict
        ]
    ] = None,
    *,
    backup: typing.Optional[google.cloud.backupdr_v1.types.backupvault.Backup] = None,
    update_mask: typing.Optional[google.protobuf.field_mask_pb2.FieldMask] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Updates the settings of a Backup.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_update_backup():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.UpdateBackupRequest(
    )

    # Make the request
    operation = client.update_backup(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.UpdateBackupRequest, dict]

The request object. Request message for updating a Backup.

backupgoogle.cloud.backupdr_v1.types.Backup

Required. The resource being updated This corresponds to the backup field on the request instance; if request is provided, this should not be set.

update_maskgoogle.protobuf.field_mask_pb2.FieldMask

Required. Field mask is used to specify the fields to be overwritten in the Backup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then the request will fail. This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be Backup Message describing a Backup object.

update_backup_vault

update_backup_vault(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.UpdateBackupVaultRequest, dict
        ]
    ] = None,
    *,
    backup_vault: typing.Optional[
        google.cloud.backupdr_v1.types.backupvault.BackupVault
    ] = None,
    update_mask: typing.Optional[google.protobuf.field_mask_pb2.FieldMask] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Updates the settings of a BackupVault.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_update_backup_vault():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.UpdateBackupVaultRequest(
    )

    # Make the request
    operation = client.update_backup_vault(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.UpdateBackupVaultRequest, dict]

The request object. Request message for updating a BackupVault.

backup_vaultgoogle.cloud.backupdr_v1.types.BackupVault

Required. The resource being updated This corresponds to the backup_vault field on the request instance; if request is provided, this should not be set.

update_maskgoogle.protobuf.field_mask_pb2.FieldMask

Required. Field mask is used to specify the fields to be overwritten in the BackupVault resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then the request will fail. This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be BackupVault Message describing a BackupVault object.

update_data_source

update_data_source(
    request: typing.Optional[
        typing.Union[
            google.cloud.backupdr_v1.types.backupvault.UpdateDataSourceRequest, dict
        ]
    ] = None,
    *,
    data_source: typing.Optional[
        google.cloud.backupdr_v1.types.backupvault.DataSource
    ] = None,
    update_mask: typing.Optional[google.protobuf.field_mask_pb2.FieldMask] = None,
    retry: typing.Optional[
        typing.Union[
            google.api_core.retry.retry_unary.Retry,
            google.api_core.gapic_v1.method._MethodDefault,
        ]
    ] = _MethodDefault._DEFAULT_VALUE,
    timeout: typing.Union[float, object] = _MethodDefault._DEFAULT_VALUE,
    metadata: typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]] = ()
) -> google.api_core.operation.Operation

Updates the settings of a DataSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import backupdr_v1

def sample_update_data_source():
    # Create a client
    client = backupdr_v1.BackupDRClient()

    # Initialize request argument(s)
    request = backupdr_v1.UpdateDataSourceRequest(
    )

    # Make the request
    operation = client.update_data_source(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
NameDescription
requestUnion[google.cloud.backupdr_v1.types.UpdateDataSourceRequest, dict]

The request object. Request message for updating a data source instance.

data_sourcegoogle.cloud.backupdr_v1.types.DataSource

Required. The resource being updated This corresponds to the data_source field on the request instance; if request is provided, this should not be set.

update_maskgoogle.protobuf.field_mask_pb2.FieldMask

Required. Field mask is used to specify the fields to be overwritten in the DataSource resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then the request will fail. This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

retrygoogle.api_core.retry.Retry

Designation of what errors, if any, should be retried.

timeoutfloat

The timeout for this request.

metadataSequence[Tuple[str, Union[str, bytes]]]

Key/value pairs which should be sent along with the request as metadata. Normally, each value must be of type str, but for metadata keys ending with the suffix -bin, the corresponding values must be of type bytes.

Returns
TypeDescription
google.api_core.operation.OperationAn object representing a long-running operation. The result type for the operation will be DataSource Message describing a DataSource object. Datasource object used to represent Datasource details for both admin and basic view.