Skip to content

Commit

Permalink
chore: use gapic-generator-python 0.65.1 (#374)
Browse files Browse the repository at this point in the history
* chore: use gapic-generator-python 0.65.1

PiperOrigin-RevId: 441524537

Source-Link: googleapis/googleapis@2a27391

Source-Link: googleapis/googleapis-gen@ab6756a
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYWI2NzU2YTQ4Yzg5YjViY2I5ZmI3MzQ0M2NiOGU1NWQ1NzRmNDY0MyJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
3 people committed Apr 14, 2022
1 parent 33802fb commit 82eea67
Show file tree
Hide file tree
Showing 8 changed files with 2,729 additions and 237 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from collections import OrderedDict
import functools
import re
from typing import Dict, Optional, Sequence, Tuple, Type, Union
from typing import Dict, Mapping, Optional, Sequence, Tuple, Type, Union
import pkg_resources

from google.api_core.client_options import ClientOptions
Expand Down Expand Up @@ -245,7 +245,6 @@ async def inspect_content(
https://cloud.google.com/dlp/docs/inspecting-images and
https://cloud.google.com/dlp/docs/inspecting-text,
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -335,7 +334,6 @@ async def redact_image(
detectors to run. By default this may be all types, but
may change over time as detectors are updated.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -426,7 +424,6 @@ async def deidentify_content(
detectors to run. By default this may be all types, but
may change over time as detectors are updated.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -511,7 +508,6 @@ async def reidentify_content(
https://cloud.google.com/dlp/docs/pseudonymization#re-identification_in_free_text_code_example
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -596,7 +592,6 @@ async def list_info_types(
https://cloud.google.com/dlp/docs/infotypes-reference to
learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -704,7 +699,6 @@ async def create_inspect_template(
https://cloud.google.com/dlp/docs/creating-templates to
learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -840,7 +834,6 @@ async def update_inspect_template(
See https://cloud.google.com/dlp/docs/creating-templates
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -961,7 +954,6 @@ async def get_inspect_template(
See https://cloud.google.com/dlp/docs/creating-templates
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1076,7 +1068,6 @@ async def list_inspect_templates(
See https://cloud.google.com/dlp/docs/creating-templates
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1219,7 +1210,6 @@ async def delete_inspect_template(
See https://cloud.google.com/dlp/docs/creating-templates
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1320,7 +1310,6 @@ async def create_deidentify_template(
https://cloud.google.com/dlp/docs/creating-templates-deid
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1455,7 +1444,6 @@ async def update_deidentify_template(
https://cloud.google.com/dlp/docs/creating-templates-deid
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1575,7 +1563,6 @@ async def get_deidentify_template(
https://cloud.google.com/dlp/docs/creating-templates-deid
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1689,7 +1676,6 @@ async def list_deidentify_templates(
https://cloud.google.com/dlp/docs/creating-templates-deid
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1833,7 +1819,6 @@ async def delete_deidentify_template(
https://cloud.google.com/dlp/docs/creating-templates-deid
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -1934,7 +1919,6 @@ async def create_job_trigger(
https://cloud.google.com/dlp/docs/creating-job-triggers
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2065,7 +2049,6 @@ async def update_job_trigger(
https://cloud.google.com/dlp/docs/creating-job-triggers
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2183,7 +2166,6 @@ async def hybrid_inspect_job_trigger(
asynchronously. To review the findings monitor the jobs
within the trigger.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2283,7 +2265,6 @@ async def get_job_trigger(
https://cloud.google.com/dlp/docs/creating-job-triggers
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2394,7 +2375,6 @@ async def list_job_triggers(
https://cloud.google.com/dlp/docs/creating-job-triggers
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2531,7 +2511,6 @@ async def delete_job_trigger(
https://cloud.google.com/dlp/docs/creating-job-triggers
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2627,7 +2606,6 @@ async def activate_job_trigger(
of a trigger instead of waiting on the trigger event to
occur.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2712,7 +2690,6 @@ async def create_dlp_job(
detectors to run. By default this may be all types, but
may change over time as detectors are updated.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2850,7 +2827,6 @@ async def list_dlp_jobs(
https://cloud.google.com/dlp/docs/compute-risk-analysis
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -2990,7 +2966,6 @@ async def get_dlp_job(
https://cloud.google.com/dlp/docs/compute-risk-analysis
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3102,7 +3077,6 @@ async def delete_dlp_job(
https://cloud.google.com/dlp/docs/compute-risk-analysis
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3201,7 +3175,6 @@ async def cancel_dlp_job(
https://cloud.google.com/dlp/docs/compute-risk-analysis
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3268,7 +3241,6 @@ async def create_stored_info_type(
https://cloud.google.com/dlp/docs/creating-stored-infotypes
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3402,7 +3374,6 @@ async def update_stored_info_type(
https://cloud.google.com/dlp/docs/creating-stored-infotypes
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3524,7 +3495,6 @@ async def get_stored_info_type(
https://cloud.google.com/dlp/docs/creating-stored-infotypes
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3636,7 +3606,6 @@ async def list_stored_info_types(
https://cloud.google.com/dlp/docs/creating-stored-infotypes
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3780,7 +3749,6 @@ async def delete_stored_info_type(
https://cloud.google.com/dlp/docs/creating-stored-infotypes
to learn more.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3878,7 +3846,6 @@ async def hybrid_inspect_dlp_job(
To review the findings, inspect the job. Inspection will
occur asynchronously.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down Expand Up @@ -3976,7 +3943,6 @@ async def finish_dlp_job(
finalization steps and running of any enabled actions
that have not yet run.
.. code-block:: python
from google.cloud import dlp_v2
Expand Down
Loading

0 comments on commit 82eea67

Please sign in to comment.