On January 1, 2020 this library will no longer support Python 2 on the latest released version. Previously released library versions will continue to be available. For more information please visit Python 2 support on Google Cloud.

Client for Cloud Data Loss Prevention (DLP) API

class google.cloud.dlp_v2.DlpServiceClient(transport=None, channel=None, credentials=None, client_config=None, client_info=None, client_options=None)[source]

The Cloud Data Loss Prevention (DLP) API is a service that allows clients to detect the presence of Personally Identifiable Information (PII) and other privacy-sensitive data in user-supplied, unstructured data streams, like text blocks or images. The service also includes methods for sensitive data redaction and scheduling of data scans on Google Cloud Platform based data sets.

To learn more about concepts and find how-to guides see https://cloud.google.com/dlp/docs/.

Constructor.

Parameters
  • (Union[DlpServiceGrpcTransport, (transport) – Callable[[~.Credentials, type], ~.DlpServiceGrpcTransport]): A transport instance, responsible for actually making the API calls. The default transport uses the gRPC protocol. This argument may also be a callable which returns a transport instance. Callables will be sent the credentials as the first argument and the default transport class as the second argument.

  • channel (grpc.Channel) – DEPRECATED. A Channel instance through which to make calls. This argument is mutually exclusive with credentials; providing both will raise an exception.

  • credentials (google.auth.credentials.Credentials) – The authorization credentials to attach to requests. These credentials identify this application to the service. If none are specified, the client will attempt to ascertain the credentials from the environment. This argument is mutually exclusive with providing a transport instance to transport; doing so will raise an exception.

  • client_config (dict) – DEPRECATED. A dictionary of call options for each method. If not specified, the default configuration is used.

  • client_info (google.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.

  • client_options (Union[dict, google.api_core.client_options.ClientOptions]) – Client options used to set user options on the client. API Endpoint should be set through client_options.

cancel_dlp_job(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Starts asynchronous cancellation on a long-running DlpJob. The server makes a best effort to cancel the DlpJob, but success is not guaranteed. See https://cloud.google.com/dlp/docs/inspecting-storage and https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.dlp_job_path('[PROJECT]', '[DLP_JOB]')
>>>
>>> client.cancel_dlp_job(name)
Parameters
  • name (str) – Required. The name of the DlpJob resource to be cancelled.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Raises
create_deidentify_template(parent, deidentify_template=None, template_id=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Creates a DeidentifyTemplate for re-using frequently used configuration for de-identifying content, images, and storage. See https://cloud.google.com/dlp/docs/creating-templates-deid to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.organization_path('[ORGANIZATION]')
>>>
>>> response = client.create_deidentify_template(parent)
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id or organizations/my-org-id.

  • deidentify_template (Union[dict, DeidentifyTemplate]) –

    The DeidentifyTemplate to create.

    If a dict is provided, it must be of the same form as the protobuf message DeidentifyTemplate

  • template_id (str) – The template id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\d-_]+. The maximum length is 100 characters. Can be empty to allow the system to generate one.

  • location_id (str) – The geographic location to store the deidentification template. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A DeidentifyTemplate instance.

Raises
create_dlp_job(parent, inspect_job=None, risk_job=None, job_id=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Creates a new job to inspect storage or calculate risk metrics. See https://cloud.google.com/dlp/docs/inspecting-storage and https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more.

When no InfoTypes or CustomInfoTypes are specified in inspect jobs, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> response = client.create_dlp_job(parent)
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id.

  • inspect_job (Union[dict, InspectJobConfig]) – If a dict is provided, it must be of the same form as the protobuf message InspectJobConfig

  • risk_job (Union[dict, RiskAnalysisJobConfig]) – If a dict is provided, it must be of the same form as the protobuf message RiskAnalysisJobConfig

  • job_id (str) – The job id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\d-_]+. The maximum length is 100 characters. Can be empty to allow the system to generate one.

  • location_id (str) – The geographic location to store and process the job. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A DlpJob instance.

Raises
create_inspect_template(parent, inspect_template=None, template_id=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Creates an InspectTemplate for re-using frequently used configuration for inspecting content, images, and storage. See https://cloud.google.com/dlp/docs/creating-templates to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.organization_path('[ORGANIZATION]')
>>>
>>> response = client.create_inspect_template(parent)
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id or organizations/my-org-id.

  • inspect_template (Union[dict, InspectTemplate]) –

    The InspectTemplate to create.

    If a dict is provided, it must be of the same form as the protobuf message InspectTemplate

  • template_id (str) – The template id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\d-_]+. The maximum length is 100 characters. Can be empty to allow the system to generate one.

  • location_id (str) – The geographic location to store the inspection template. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A InspectTemplate instance.

Raises
create_job_trigger(parent, job_trigger=None, trigger_id=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See https://cloud.google.com/dlp/docs/creating-job-triggers to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> response = client.create_job_trigger(parent)
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id.

  • job_trigger (Union[dict, JobTrigger]) –

    The JobTrigger to create.

    If a dict is provided, it must be of the same form as the protobuf message JobTrigger

  • trigger_id (str) – The trigger id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\d-_]+. The maximum length is 100 characters. Can be empty to allow the system to generate one.

  • location_id (str) – The geographic location to store the job trigger. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A JobTrigger instance.

Raises
create_stored_info_type(parent, config=None, stored_info_type_id=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Creates a pre-built stored infoType to be used for inspection. See https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.organization_path('[ORGANIZATION]')
>>>
>>> response = client.create_stored_info_type(parent)
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id or organizations/my-org-id.

  • config (Union[dict, StoredInfoTypeConfig]) –

    Configuration of the storedInfoType to create.

    If a dict is provided, it must be of the same form as the protobuf message StoredInfoTypeConfig

  • stored_info_type_id (str) – The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\d-_]+. The maximum length is 100 characters. Can be empty to allow the system to generate one.

  • location_id (str) – The geographic location to store the stored infoType. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A StoredInfoType instance.

Raises
deidentify_content(parent, deidentify_config=None, inspect_config=None, item=None, inspect_template_name=None, deidentify_template_name=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

De-identifies potentially sensitive info from a ContentItem. This method has limits on input size and output size. See https://cloud.google.com/dlp/docs/deidentify-sensitive-data to learn more.

When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> response = client.deidentify_content(parent)
Parameters
  • parent (str) – The parent resource name, for example projects/my-project-id.

  • deidentify_config (Union[dict, DeidentifyConfig]) –

    Configuration for the de-identification of the content item. Items specified here will override the template referenced by the deidentify_template_name argument.

    If a dict is provided, it must be of the same form as the protobuf message DeidentifyConfig

  • inspect_config (Union[dict, InspectConfig]) –

    Configuration for the inspector. Items specified here will override the template referenced by the inspect_template_name argument.

    If a dict is provided, it must be of the same form as the protobuf message InspectConfig

  • item (Union[dict, ContentItem]) –

    The item to de-identify. Will be treated as text.

    If a dict is provided, it must be of the same form as the protobuf message ContentItem

  • inspect_template_name (str) – Optional template to use. Any configuration directly specified in inspect_config will override those set in the template. Singular fields that are set in this request will replace their corresponding fields in the template. Repeated fields are appended. Singular sub-messages and groups are recursively merged.

  • deidentify_template_name (str) – Optional template to use. Any configuration directly specified in deidentify_config will override those set in the template. Singular fields that are set in this request will replace their corresponding fields in the template. Repeated fields are appended. Singular sub-messages and groups are recursively merged.

  • location_id (str) – The geographic location to process de-identification. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A DeidentifyContentResponse instance.

Raises
delete_deidentify_template(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Deletes a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating-templates-deid to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_deidentify_template_path('[ORGANIZATION]', '[DEIDENTIFY_TEMPLATE]')
>>>
>>> client.delete_deidentify_template(name)
Parameters
  • name (str) – Required. Resource name of the organization and deidentify template to be deleted, for example organizations/433245324/deidentifyTemplates/432452342 or projects/project-id/deidentifyTemplates/432452342.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Raises
delete_dlp_job(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Deletes a long-running DlpJob. This method indicates that the client is no longer interested in the DlpJob result. The job will be cancelled if possible. See https://cloud.google.com/dlp/docs/inspecting-storage and https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.dlp_job_path('[PROJECT]', '[DLP_JOB]')
>>>
>>> client.delete_dlp_job(name)
Parameters
  • name (str) – Required. The name of the DlpJob resource to be deleted.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Raises
delete_inspect_template(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Deletes an InspectTemplate. See https://cloud.google.com/dlp/docs/creating-templates to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_inspect_template_path('[ORGANIZATION]', '[INSPECT_TEMPLATE]')
>>>
>>> client.delete_inspect_template(name)
Parameters
  • name (str) – Required. Resource name of the organization and inspectTemplate to be deleted, for example organizations/433245324/inspectTemplates/432452342 or projects/project-id/inspectTemplates/432452342.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Raises
delete_job_trigger(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Deletes a job trigger. See https://cloud.google.com/dlp/docs/creating-job-triggers to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> # TODO: Initialize `name`:
>>> name = ''
>>>
>>> client.delete_job_trigger(name)
Parameters
  • name (str) – Required. Resource name of the project and the triggeredJob, for example projects/dlp-test-project/jobTriggers/53234423.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Raises
delete_stored_info_type(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Deletes a stored infoType. See https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_stored_info_type_path('[ORGANIZATION]', '[STORED_INFO_TYPE]')
>>>
>>> client.delete_stored_info_type(name)
Parameters
  • name (str) – Required. Resource name of the organization and storedInfoType to be deleted, for example organizations/433245324/storedInfoTypes/432452342 or projects/project-id/storedInfoTypes/432452342.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Raises
classmethod dlp_job_path(project, dlp_job)[source]

DEPRECATED. Return a fully-qualified dlp_job string.

enums = <module 'google.cloud.dlp_v2.gapic.enums' from '/tmpfs/src/github/google-cloud-python/dlp/google/cloud/dlp_v2/gapic/enums.py'>
classmethod from_service_account_file(filename, *args, **kwargs)[source]

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

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

DlpServiceClient

classmethod from_service_account_json(filename, *args, **kwargs)

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

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

DlpServiceClient

get_deidentify_template(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Gets a DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating-templates-deid to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_deidentify_template_path('[ORGANIZATION]', '[DEIDENTIFY_TEMPLATE]')
>>>
>>> response = client.get_deidentify_template(name)
Parameters
  • name (str) – Required. Resource name of the organization and deidentify template to be read, for example organizations/433245324/deidentifyTemplates/432452342 or projects/project-id/deidentifyTemplates/432452342.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A DeidentifyTemplate instance.

Raises
get_dlp_job(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Gets the latest state of a long-running DlpJob. See https://cloud.google.com/dlp/docs/inspecting-storage and https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.dlp_job_path('[PROJECT]', '[DLP_JOB]')
>>>
>>> response = client.get_dlp_job(name)
Parameters
  • name (str) – Required. The name of the DlpJob resource.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A DlpJob instance.

Raises
get_inspect_template(name=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Gets an InspectTemplate. See https://cloud.google.com/dlp/docs/creating-templates to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> response = client.get_inspect_template()
Parameters
  • name (str) – Required. Resource name of the organization and inspectTemplate to be read, for example organizations/433245324/inspectTemplates/432452342 or projects/project-id/inspectTemplates/432452342.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A InspectTemplate instance.

Raises
get_job_trigger(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Gets a job trigger. See https://cloud.google.com/dlp/docs/creating-job-triggers to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.project_job_trigger_path('[PROJECT]', '[JOB_TRIGGER]')
>>>
>>> response = client.get_job_trigger(name)
Parameters
  • name (str) – Required. Resource name of the project and the triggeredJob, for example projects/dlp-test-project/jobTriggers/53234423.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A JobTrigger instance.

Raises
get_stored_info_type(name, retry=<object object>, timeout=<object object>, metadata=None)[source]

Gets a stored infoType. See https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_stored_info_type_path('[ORGANIZATION]', '[STORED_INFO_TYPE]')
>>>
>>> response = client.get_stored_info_type(name)
Parameters
  • name (str) – Required. Resource name of the organization and storedInfoType to be read, for example organizations/433245324/storedInfoTypes/432452342 or projects/project-id/storedInfoTypes/432452342.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A StoredInfoType instance.

Raises
inspect_content(parent, inspect_config=None, item=None, inspect_template_name=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Finds potentially sensitive info in content. This method has limits on input size, processing time, and output size.

When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated.

For how to guides, see https://cloud.google.com/dlp/docs/inspecting-images and https://cloud.google.com/dlp/docs/inspecting-text,

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> response = client.inspect_content(parent)
Parameters
  • parent (str) – The parent resource name, for example projects/my-project-id.

  • inspect_config (Union[dict, InspectConfig]) –

    Configuration for the inspector. What specified here will override the template referenced by the inspect_template_name argument.

    If a dict is provided, it must be of the same form as the protobuf message InspectConfig

  • item (Union[dict, ContentItem]) –

    The item to inspect.

    If a dict is provided, it must be of the same form as the protobuf message ContentItem

  • inspect_template_name (str) – Optional template to use. Any configuration directly specified in inspect_config will override those set in the template. Singular fields that are set in this request will replace their corresponding fields in the template. Repeated fields are appended. Singular sub-messages and groups are recursively merged.

  • location_id (str) – The geographic location to process content inspection. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A InspectContentResponse instance.

Raises
list_deidentify_templates(parent, page_size=None, order_by=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Lists DeidentifyTemplates. See https://cloud.google.com/dlp/docs/creating-templates-deid to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.organization_path('[ORGANIZATION]')
>>>
>>> # Iterate over all results
>>> for element in client.list_deidentify_templates(parent):
...     # process element
...     pass
>>>
>>>
>>> # Alternatively:
>>>
>>> # Iterate over results one page at a time
>>> for page in client.list_deidentify_templates(parent).pages:
...     for element in page:
...         # process element
...         pass
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id or organizations/my-org-id.

  • page_size (int) – The maximum number of resources contained in the underlying API response. If page streaming is performed per- resource, this parameter does not affect the return value. If page streaming is performed per-page, this determines the maximum number of resources in a page.

  • order_by (str) –

    Optional comma separated list of fields to order by, followed by asc or desc postfix. This list is case-insensitive, default sorting order is ascending, redundant space characters are insignificant.

    Example: name asc,update_time, create_time desc

    Supported fields are:

    • create_time: corresponds to time the template was created.

    • update_time: corresponds to time the template was last updated.

    • name: corresponds to template’s name.

    • display_name: corresponds to template’s display name.

  • location_id (str) – The geographic location where deidentifications templates will be retrieved from. Use - for all locations. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A PageIterator instance. An iterable of DeidentifyTemplate instances. You can also iterate over the pages of the response using its pages property.

Raises
list_dlp_jobs(parent, filter_=None, page_size=None, type_=None, order_by=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Lists DlpJobs that match the specified filter in the request. See https://cloud.google.com/dlp/docs/inspecting-storage and https://cloud.google.com/dlp/docs/compute-risk-analysis to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> # Iterate over all results
>>> for element in client.list_dlp_jobs(parent):
...     # process element
...     pass
>>>
>>>
>>> # Alternatively:
>>>
>>> # Iterate over results one page at a time
>>> for page in client.list_dlp_jobs(parent).pages:
...     for element in page:
...         # process element
...         pass
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id.

  • filter_ (str) –

    Optional. Allows filtering.

    Supported syntax:

    • Filter expressions are made up of one or more restrictions.

    • Restrictions can be combined by AND or OR logical operators. A sequence of restrictions implicitly uses AND.

    • A restriction has the form of <field> <operator> <value>.

    • Supported fields/values for inspect jobs:

      • state - PENDING|RUNNING|CANCELED|FINISHED|FAILED

      • inspected_storage - DATASTORE|CLOUD_STORAGE|BIGQUERY

      • trigger_name - The resource name of the trigger that created job.

      • ’end_time` - Corresponds to time the job finished.

      • ’start_time` - Corresponds to time the job finished.

    • Supported fields for risk analysis jobs:

      • state - RUNNING|CANCELED|FINISHED|FAILED

      • ’end_time` - Corresponds to time the job finished.

      • ’start_time` - Corresponds to time the job finished.

    • The operator must be = or !=.

    Examples:

    • inspected_storage = cloud_storage AND state = done

    • inspected_storage = cloud_storage OR inspected_storage = bigquery

    • inspected_storage = cloud_storage AND (state = done OR state = canceled)

    • end_time > “2017-12-12T00:00:00+00:00”

    The length of this field should be no more than 500 characters.

  • page_size (int) – The maximum number of resources contained in the underlying API response. If page streaming is performed per- resource, this parameter does not affect the return value. If page streaming is performed per-page, this determines the maximum number of resources in a page.

  • type_ (DlpJobType) – The type of job. Defaults to DlpJobType.INSPECT

  • order_by (str) –

    Optional comma separated list of fields to order by, followed by asc or desc postfix. This list is case-insensitive, default sorting order is ascending, redundant space characters are insignificant.

    Example: name asc, end_time asc, create_time desc

    Supported fields are:

    • create_time: corresponds to time the job was created.

    • end_time: corresponds to time the job ended.

    • name: corresponds to job’s name.

    • state: corresponds to state

  • location_id (str) – The geographic location where jobs will be retrieved from. Use - for all locations. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A PageIterator instance. An iterable of DlpJob instances. You can also iterate over the pages of the response using its pages property.

Raises
list_info_types(language_code=None, filter_=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Returns a list of the sensitive information types that the DLP API supports. See https://cloud.google.com/dlp/docs/infotypes-reference to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> response = client.list_info_types()
Parameters
  • language_code (str) – Optional BCP-47 language code for localized infoType friendly names. If omitted, or if localized strings are not available, en-US strings will be returned.

  • filter_ (str) – Optional filter to only return infoTypes supported by certain parts of the API. Defaults to supported_by=INSPECT.

  • location_id (str) – The geographic location to list info types. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A ListInfoTypesResponse instance.

Raises
list_inspect_templates(parent, page_size=None, order_by=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Lists InspectTemplates. See https://cloud.google.com/dlp/docs/creating-templates to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.organization_path('[ORGANIZATION]')
>>>
>>> # Iterate over all results
>>> for element in client.list_inspect_templates(parent):
...     # process element
...     pass
>>>
>>>
>>> # Alternatively:
>>>
>>> # Iterate over results one page at a time
>>> for page in client.list_inspect_templates(parent).pages:
...     for element in page:
...         # process element
...         pass
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id or organizations/my-org-id.

  • page_size (int) – The maximum number of resources contained in the underlying API response. If page streaming is performed per- resource, this parameter does not affect the return value. If page streaming is performed per-page, this determines the maximum number of resources in a page.

  • order_by (str) –

    Optional comma separated list of fields to order by, followed by asc or desc postfix. This list is case-insensitive, default sorting order is ascending, redundant space characters are insignificant.

    Example: name asc,update_time, create_time desc

    Supported fields are:

    • create_time: corresponds to time the template was created.

    • update_time: corresponds to time the template was last updated.

    • name: corresponds to template’s name.

    • display_name: corresponds to template’s display name.

  • location_id (str) – The geographic location where inspection templates will be retrieved from. Use - for all locations. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A PageIterator instance. An iterable of InspectTemplate instances. You can also iterate over the pages of the response using its pages property.

Raises
list_job_triggers(parent, page_size=None, order_by=None, filter_=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Lists job triggers. See https://cloud.google.com/dlp/docs/creating-job-triggers to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> # Iterate over all results
>>> for element in client.list_job_triggers(parent):
...     # process element
...     pass
>>>
>>>
>>> # Alternatively:
>>>
>>> # Iterate over results one page at a time
>>> for page in client.list_job_triggers(parent).pages:
...     for element in page:
...         # process element
...         pass
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id.

  • page_size (int) – The maximum number of resources contained in the underlying API response. If page streaming is performed per- resource, this parameter does not affect the return value. If page streaming is performed per-page, this determines the maximum number of resources in a page.

  • order_by (str) –

    Optional comma separated list of triggeredJob fields to order by, followed by asc or desc postfix. This list is case-insensitive, default sorting order is ascending, redundant space characters are insignificant.

    Example: name asc,update_time, create_time desc

    Supported fields are:

    • create_time: corresponds to time the JobTrigger was created.

    • update_time: corresponds to time the JobTrigger was last updated.

    • last_run_time: corresponds to the last time the JobTrigger ran.

    • name: corresponds to JobTrigger’s name.

    • display_name: corresponds to JobTrigger’s display name.

    • status: corresponds to JobTrigger’s status.

  • filter_ (str) –

    Optional. Allows filtering.

    Supported syntax:

    • Filter expressions are made up of one or more restrictions.

    • Restrictions can be combined by AND or OR logical operators. A sequence of restrictions implicitly uses AND.

    • A restriction has the form of <field> <operator> <value>.

    • Supported fields/values for inspect jobs:

      • status - HEALTHY|PAUSED|CANCELLED

      • inspected_storage - DATASTORE|CLOUD_STORAGE|BIGQUERY

      • ’last_run_time` - RFC 3339 formatted timestamp, surrounded by quotation marks. Nanoseconds are ignored.

      • ’error_count’ - Number of errors that have occurred while running.

    • The operator must be = or != for status and inspected_storage.

    Examples:

    • inspected_storage = cloud_storage AND status = HEALTHY

    • inspected_storage = cloud_storage OR inspected_storage = bigquery

    • inspected_storage = cloud_storage AND (state = PAUSED OR state = HEALTHY)

    • last_run_time > “2017-12-12T00:00:00+00:00”

    The length of this field should be no more than 500 characters.

  • location_id (str) – The geographic location where job triggers will be retrieved from. Use - for all locations. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A PageIterator instance. An iterable of JobTrigger instances. You can also iterate over the pages of the response using its pages property.

Raises
list_stored_info_types(parent, page_size=None, order_by=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Lists stored infoTypes. See https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.organization_path('[ORGANIZATION]')
>>>
>>> # Iterate over all results
>>> for element in client.list_stored_info_types(parent):
...     # process element
...     pass
>>>
>>>
>>> # Alternatively:
>>>
>>> # Iterate over results one page at a time
>>> for page in client.list_stored_info_types(parent).pages:
...     for element in page:
...         # process element
...         pass
Parameters
  • parent (str) – Required. The parent resource name, for example projects/my-project-id or organizations/my-org-id.

  • page_size (int) – The maximum number of resources contained in the underlying API response. If page streaming is performed per- resource, this parameter does not affect the return value. If page streaming is performed per-page, this determines the maximum number of resources in a page.

  • order_by (str) –

    Optional comma separated list of fields to order by, followed by asc or desc postfix. This list is case-insensitive, default sorting order is ascending, redundant space characters are insignificant.

    Example: name asc, display_name, create_time desc

    Supported fields are:

    • create_time: corresponds to time the most recent version of the

      resource was created.

    • state: corresponds to the state of the resource.

    • name: corresponds to resource name.

    • display_name: corresponds to info type’s display name.

  • location_id (str) – The geographic location where stored infoTypes will be retrieved from. Use - for all locations. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A PageIterator instance. An iterable of StoredInfoType instances. You can also iterate over the pages of the response using its pages property.

Raises
classmethod organization_deidentify_template_path(organization, deidentify_template)[source]

DEPRECATED. Return a fully-qualified organization_deidentify_template string.

classmethod organization_inspect_template_path(organization, inspect_template)[source]

DEPRECATED. Return a fully-qualified organization_inspect_template string.

classmethod organization_path(organization)[source]

DEPRECATED. Return a fully-qualified organization string.

classmethod organization_stored_info_type_path(organization, stored_info_type)[source]

DEPRECATED. Return a fully-qualified organization_stored_info_type string.

classmethod project_deidentify_template_path(project, deidentify_template)[source]

DEPRECATED. Return a fully-qualified project_deidentify_template string.

classmethod project_inspect_template_path(project, inspect_template)[source]

DEPRECATED. Return a fully-qualified project_inspect_template string.

classmethod project_job_trigger_path(project, job_trigger)[source]

DEPRECATED. Return a fully-qualified project_job_trigger string.

classmethod project_path(project)[source]

DEPRECATED. Return a fully-qualified project string.

classmethod project_stored_info_type_path(project, stored_info_type)[source]

DEPRECATED. Return a fully-qualified project_stored_info_type string.

redact_image(parent, location_id=None, inspect_config=None, image_redaction_configs=None, include_findings=None, byte_item=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Redacts potentially sensitive info from an image. This method has limits on input size, processing time, and output size. See https://cloud.google.com/dlp/docs/redacting-sensitive-data-images to learn more.

When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> response = client.redact_image(parent)
Parameters
  • parent (str) – The parent resource name, for example projects/my-project-id.

  • location_id (str) – The geographic location to process the request. Reserved for future extensions.

  • inspect_config (Union[dict, InspectConfig]) –

    Configuration for the inspector.

    If a dict is provided, it must be of the same form as the protobuf message InspectConfig

  • image_redaction_configs (list[Union[dict, ImageRedactionConfig]]) –

    The configuration for specifying what content to redact from images.

    If a dict is provided, it must be of the same form as the protobuf message ImageRedactionConfig

  • include_findings (bool) – Whether the response should include findings along with the redacted image.

  • byte_item (Union[dict, ByteContentItem]) –

    The content must be PNG, JPEG, SVG or BMP.

    If a dict is provided, it must be of the same form as the protobuf message ByteContentItem

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A RedactImageResponse instance.

Raises
reidentify_content(parent, reidentify_config=None, inspect_config=None, item=None, inspect_template_name=None, reidentify_template_name=None, location_id=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Re-identifies content that has been de-identified. See https://cloud.google.com/dlp/docs/pseudonymization#re-identification_in_free_text_code_example to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> parent = client.project_path('[PROJECT]')
>>>
>>> response = client.reidentify_content(parent)
Parameters
  • parent (str) – Required. The parent resource name.

  • reidentify_config (Union[dict, DeidentifyConfig]) –

    Configuration for the re-identification of the content item. This field shares the same proto message type that is used for de-identification, however its usage here is for the reversal of the previous de-identification. Re-identification is performed by examining the transformations used to de-identify the items and executing the reverse. This requires that only reversible transformations be provided here. The reversible transformations are:

    • CryptoDeterministicConfig

    • CryptoReplaceFfxFpeConfig

    If a dict is provided, it must be of the same form as the protobuf message DeidentifyConfig

  • inspect_config (Union[dict, InspectConfig]) –

    Configuration for the inspector.

    If a dict is provided, it must be of the same form as the protobuf message InspectConfig

  • item (Union[dict, ContentItem]) –

    The item to re-identify. Will be treated as text.

    If a dict is provided, it must be of the same form as the protobuf message ContentItem

  • inspect_template_name (str) – Optional template to use. Any configuration directly specified in inspect_config will override those set in the template. Singular fields that are set in this request will replace their corresponding fields in the template. Repeated fields are appended. Singular sub-messages and groups are recursively merged.

  • reidentify_template_name (str) – Optional template to use. References an instance of DeidentifyTemplate. Any configuration directly specified in reidentify_config or inspect_config will override those set in the template. Singular fields that are set in this request will replace their corresponding fields in the template. Repeated fields are appended. Singular sub-messages and groups are recursively merged.

  • location_id (str) – The geographic location to process content reidentification. Reserved for future extensions.

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A ReidentifyContentResponse instance.

Raises
update_deidentify_template(name, deidentify_template=None, update_mask=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Updates the DeidentifyTemplate. See https://cloud.google.com/dlp/docs/creating-templates-deid to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_deidentify_template_path('[ORGANIZATION]', '[DEIDENTIFY_TEMPLATE]')
>>>
>>> response = client.update_deidentify_template(name)
Parameters
  • name (str) – Required. Resource name of organization and deidentify template to be updated, for example organizations/433245324/deidentifyTemplates/432452342 or projects/project-id/deidentifyTemplates/432452342.

  • deidentify_template (Union[dict, DeidentifyTemplate]) –

    New DeidentifyTemplate value.

    If a dict is provided, it must be of the same form as the protobuf message DeidentifyTemplate

  • update_mask (Union[dict, FieldMask]) –

    Mask to control which fields get updated.

    If a dict is provided, it must be of the same form as the protobuf message FieldMask

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A DeidentifyTemplate instance.

Raises
update_inspect_template(name, inspect_template=None, update_mask=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Updates the InspectTemplate. See https://cloud.google.com/dlp/docs/creating-templates to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_inspect_template_path('[ORGANIZATION]', '[INSPECT_TEMPLATE]')
>>>
>>> response = client.update_inspect_template(name)
Parameters
  • name (str) – Required. Resource name of organization and inspectTemplate to be updated, for example organizations/433245324/inspectTemplates/432452342 or projects/project-id/inspectTemplates/432452342.

  • inspect_template (Union[dict, InspectTemplate]) –

    New InspectTemplate value.

    If a dict is provided, it must be of the same form as the protobuf message InspectTemplate

  • update_mask (Union[dict, FieldMask]) –

    Mask to control which fields get updated.

    If a dict is provided, it must be of the same form as the protobuf message FieldMask

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A InspectTemplate instance.

Raises
update_job_trigger(name, job_trigger=None, update_mask=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Updates a job trigger. See https://cloud.google.com/dlp/docs/creating-job-triggers to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.project_job_trigger_path('[PROJECT]', '[JOB_TRIGGER]')
>>>
>>> response = client.update_job_trigger(name)
Parameters
  • name (str) – Required. Resource name of the project and the triggeredJob, for example projects/dlp-test-project/jobTriggers/53234423.

  • job_trigger (Union[dict, JobTrigger]) –

    New JobTrigger value.

    If a dict is provided, it must be of the same form as the protobuf message JobTrigger

  • update_mask (Union[dict, FieldMask]) –

    Mask to control which fields get updated.

    If a dict is provided, it must be of the same form as the protobuf message FieldMask

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A JobTrigger instance.

Raises
update_stored_info_type(name, config=None, update_mask=None, retry=<object object>, timeout=<object object>, metadata=None)[source]

Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See https://cloud.google.com/dlp/docs/creating-stored-infotypes to learn more.

Example

>>> from google.cloud import dlp_v2
>>>
>>> client = dlp_v2.DlpServiceClient()
>>>
>>> name = client.organization_stored_info_type_path('[ORGANIZATION]', '[STORED_INFO_TYPE]')
>>>
>>> response = client.update_stored_info_type(name)
Parameters
  • name (str) – Required. Resource name of organization and storedInfoType to be updated, for example organizations/433245324/storedInfoTypes/432452342 or projects/project-id/storedInfoTypes/432452342.

  • config (Union[dict, StoredInfoTypeConfig]) –

    Updated configuration for the storedInfoType. If not provided, a new version of the storedInfoType will be created with the existing configuration.

    If a dict is provided, it must be of the same form as the protobuf message StoredInfoTypeConfig

  • update_mask (Union[dict, FieldMask]) –

    Mask to control which fields get updated.

    If a dict is provided, it must be of the same form as the protobuf message FieldMask

  • retry (Optional[google.api_core.retry.Retry]) – A retry object used to retry requests. If None is specified, requests will be retried using a default configuration.

  • timeout (Optional[float]) – The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt.

  • metadata (Optional[Sequence[Tuple[str, str]]]) – Additional metadata that is provided to the method.

Returns

A StoredInfoType instance.

Raises