Skip to content

Commit

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

chore: fix snippet region tag format
chore: fix docstring code block formatting
PiperOrigin-RevId: 430730865

Source-Link: googleapis/googleapis@ea58002

Source-Link: googleapis/googleapis-gen@ca893ff
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiY2E4OTNmZjhhZjI1ZmM3ZmUwMDFkZTE0MDVhNTE3ZDgwNDQ2ZWNjYSJ9

* 🦉 Updates from OwlBot post-processor

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

* 🦉 Updates from OwlBot post-processor

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

* chore: delete duplicates

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 25, 2022
1 parent e1752a5 commit 882c93b
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ async def list_endpoints(
) -> pagers.ListEndpointsAsyncPager:
r"""Lists Endpoints in a given project and location.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down Expand Up @@ -313,7 +313,7 @@ async def get_endpoint(
) -> ids.Endpoint:
r"""Gets details of a single Endpoint.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down Expand Up @@ -417,7 +417,7 @@ async def create_endpoint(
location.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down Expand Up @@ -544,7 +544,7 @@ async def delete_endpoint(
) -> operation_async.AsyncOperation:
r"""Deletes a single Endpoint.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,7 @@ def list_endpoints(
) -> pagers.ListEndpointsPager:
r"""Lists Endpoints in a given project and location.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down Expand Up @@ -510,8 +509,7 @@ def get_endpoint(
) -> ids.Endpoint:
r"""Gets details of a single Endpoint.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down Expand Up @@ -606,8 +604,7 @@ def create_endpoint(
location.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down Expand Up @@ -734,8 +731,7 @@ def delete_endpoint(
) -> operation.Operation:
r"""Deletes a single Endpoint.
.. code-block::
.. code-block:: python
from google.cloud import ids_v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_CreateEndpoint_async]
# [START ids_v1_generated_IDS_CreateEndpoint_async]
from google.cloud import ids_v1


Expand Down Expand Up @@ -52,4 +52,4 @@ async def sample_create_endpoint():
# Handle the response
print(response)

# [END ids_generated_ids_v1_IDS_CreateEndpoint_async]
# [END ids_v1_generated_IDS_CreateEndpoint_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_CreateEndpoint_sync]
# [START ids_v1_generated_IDS_CreateEndpoint_sync]
from google.cloud import ids_v1


Expand Down Expand Up @@ -52,4 +52,4 @@ def sample_create_endpoint():
# Handle the response
print(response)

# [END ids_generated_ids_v1_IDS_CreateEndpoint_sync]
# [END ids_v1_generated_IDS_CreateEndpoint_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_DeleteEndpoint_async]
# [START ids_v1_generated_IDS_DeleteEndpoint_async]
from google.cloud import ids_v1


Expand All @@ -46,4 +46,4 @@ async def sample_delete_endpoint():
# Handle the response
print(response)

# [END ids_generated_ids_v1_IDS_DeleteEndpoint_async]
# [END ids_v1_generated_IDS_DeleteEndpoint_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_DeleteEndpoint_sync]
# [START ids_v1_generated_IDS_DeleteEndpoint_sync]
from google.cloud import ids_v1


Expand All @@ -46,4 +46,4 @@ def sample_delete_endpoint():
# Handle the response
print(response)

# [END ids_generated_ids_v1_IDS_DeleteEndpoint_sync]
# [END ids_v1_generated_IDS_DeleteEndpoint_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_GetEndpoint_async]
# [START ids_v1_generated_IDS_GetEndpoint_async]
from google.cloud import ids_v1


Expand All @@ -42,4 +42,4 @@ async def sample_get_endpoint():
# Handle the response
print(response)

# [END ids_generated_ids_v1_IDS_GetEndpoint_async]
# [END ids_v1_generated_IDS_GetEndpoint_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_GetEndpoint_sync]
# [START ids_v1_generated_IDS_GetEndpoint_sync]
from google.cloud import ids_v1


Expand All @@ -42,4 +42,4 @@ def sample_get_endpoint():
# Handle the response
print(response)

# [END ids_generated_ids_v1_IDS_GetEndpoint_sync]
# [END ids_v1_generated_IDS_GetEndpoint_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_ListEndpoints_async]
# [START ids_v1_generated_IDS_ListEndpoints_async]
from google.cloud import ids_v1


Expand All @@ -43,4 +43,4 @@ async def sample_list_endpoints():
async for response in page_result:
print(response)

# [END ids_generated_ids_v1_IDS_ListEndpoints_async]
# [END ids_v1_generated_IDS_ListEndpoints_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-ids


# [START ids_generated_ids_v1_IDS_ListEndpoints_sync]
# [START ids_v1_generated_IDS_ListEndpoints_sync]
from google.cloud import ids_v1


Expand All @@ -43,4 +43,4 @@ def sample_list_endpoints():
for response in page_result:
print(response)

# [END ids_generated_ids_v1_IDS_ListEndpoints_sync]
# [END ids_v1_generated_IDS_ListEndpoints_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"shortName": "CreateEndpoint"
}
},
"file": "ids_generated_ids_v1_ids_create_endpoint_async.py",
"regionTag": "ids_generated_ids_v1_IDS_CreateEndpoint_async",
"file": "ids_v1_generated_ids_create_endpoint_async.py",
"regionTag": "ids_v1_generated_IDS_CreateEndpoint_async",
"segments": [
{
"end": 54,
Expand Down Expand Up @@ -54,8 +54,8 @@
"shortName": "CreateEndpoint"
}
},
"file": "ids_generated_ids_v1_ids_create_endpoint_sync.py",
"regionTag": "ids_generated_ids_v1_IDS_CreateEndpoint_sync",
"file": "ids_v1_generated_ids_create_endpoint_sync.py",
"regionTag": "ids_v1_generated_IDS_CreateEndpoint_sync",
"segments": [
{
"end": 54,
Expand Down Expand Up @@ -99,8 +99,8 @@
"shortName": "DeleteEndpoint"
}
},
"file": "ids_generated_ids_v1_ids_delete_endpoint_async.py",
"regionTag": "ids_generated_ids_v1_IDS_DeleteEndpoint_async",
"file": "ids_v1_generated_ids_delete_endpoint_async.py",
"regionTag": "ids_v1_generated_IDS_DeleteEndpoint_async",
"segments": [
{
"end": 48,
Expand Down Expand Up @@ -143,8 +143,8 @@
"shortName": "DeleteEndpoint"
}
},
"file": "ids_generated_ids_v1_ids_delete_endpoint_sync.py",
"regionTag": "ids_generated_ids_v1_IDS_DeleteEndpoint_sync",
"file": "ids_v1_generated_ids_delete_endpoint_sync.py",
"regionTag": "ids_v1_generated_IDS_DeleteEndpoint_sync",
"segments": [
{
"end": 48,
Expand Down Expand Up @@ -188,8 +188,8 @@
"shortName": "GetEndpoint"
}
},
"file": "ids_generated_ids_v1_ids_get_endpoint_async.py",
"regionTag": "ids_generated_ids_v1_IDS_GetEndpoint_async",
"file": "ids_v1_generated_ids_get_endpoint_async.py",
"regionTag": "ids_v1_generated_IDS_GetEndpoint_async",
"segments": [
{
"end": 44,
Expand Down Expand Up @@ -232,8 +232,8 @@
"shortName": "GetEndpoint"
}
},
"file": "ids_generated_ids_v1_ids_get_endpoint_sync.py",
"regionTag": "ids_generated_ids_v1_IDS_GetEndpoint_sync",
"file": "ids_v1_generated_ids_get_endpoint_sync.py",
"regionTag": "ids_v1_generated_IDS_GetEndpoint_sync",
"segments": [
{
"end": 44,
Expand Down Expand Up @@ -277,8 +277,8 @@
"shortName": "ListEndpoints"
}
},
"file": "ids_generated_ids_v1_ids_list_endpoints_async.py",
"regionTag": "ids_generated_ids_v1_IDS_ListEndpoints_async",
"file": "ids_v1_generated_ids_list_endpoints_async.py",
"regionTag": "ids_v1_generated_IDS_ListEndpoints_async",
"segments": [
{
"end": 45,
Expand Down Expand Up @@ -321,8 +321,8 @@
"shortName": "ListEndpoints"
}
},
"file": "ids_generated_ids_v1_ids_list_endpoints_sync.py",
"regionTag": "ids_generated_ids_v1_IDS_ListEndpoints_sync",
"file": "ids_v1_generated_ids_list_endpoints_sync.py",
"regionTag": "ids_v1_generated_IDS_ListEndpoints_sync",
"segments": [
{
"end": 45,
Expand Down

0 comments on commit 882c93b

Please sign in to comment.