Skip to content

Commit eab98cc

Browse files
chore: use gapic-generator-python 0.63.4 (#69)
* 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>
1 parent 44129b1 commit eab98cc

15 files changed

+60
-66
lines changed

packages/google-cloud-network-management/google/cloud/network_management_v1/services/reachability_service/async_client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ async def list_connectivity_tests(
234234
) -> pagers.ListConnectivityTestsAsyncPager:
235235
r"""Lists all Connectivity Tests owned by a project.
236236
237-
.. code-block::
237+
.. code-block:: python
238238
239239
from google.cloud import network_management_v1
240240
@@ -333,7 +333,7 @@ async def get_connectivity_test(
333333
) -> connectivity_test.ConnectivityTest:
334334
r"""Gets the details of a specific Connectivity Test.
335335
336-
.. code-block::
336+
.. code-block:: python
337337
338338
from google.cloud import network_management_v1
339339
@@ -440,7 +440,7 @@ async def create_connectivity_test(
440440
documentation.
441441
442442
443-
.. code-block::
443+
.. code-block:: python
444444
445445
from google.cloud import network_management_v1
446446
@@ -590,7 +590,7 @@ async def update_connectivity_test(
590590
for more details.
591591
592592
593-
.. code-block::
593+
.. code-block:: python
594594
595595
from google.cloud import network_management_v1
596596
@@ -723,7 +723,7 @@ async def rerun_connectivity_test(
723723
returns a value of ``UNKNOWN``.
724724
725725
726-
.. code-block::
726+
.. code-block:: python
727727
728728
from google.cloud import network_management_v1
729729
@@ -807,7 +807,7 @@ async def delete_connectivity_test(
807807
) -> operation_async.AsyncOperation:
808808
r"""Deletes a specific ``ConnectivityTest``.
809809
810-
.. code-block::
810+
.. code-block:: python
811811
812812
from google.cloud import network_management_v1
813813

packages/google-cloud-network-management/google/cloud/network_management_v1/services/reachability_service/client.py

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,7 @@ def list_connectivity_tests(
428428
) -> pagers.ListConnectivityTestsPager:
429429
r"""Lists all Connectivity Tests owned by a project.
430430
431-
432-
.. code-block::
431+
.. code-block:: python
433432
434433
from google.cloud import network_management_v1
435434
@@ -528,8 +527,7 @@ def get_connectivity_test(
528527
) -> connectivity_test.ConnectivityTest:
529528
r"""Gets the details of a specific Connectivity Test.
530529
531-
532-
.. code-block::
530+
.. code-block:: python
533531
534532
from google.cloud import network_management_v1
535533
@@ -636,8 +634,7 @@ def create_connectivity_test(
636634
documentation.
637635
638636
639-
640-
.. code-block::
637+
.. code-block:: python
641638
642639
from google.cloud import network_management_v1
643640
@@ -787,8 +784,7 @@ def update_connectivity_test(
787784
for more details.
788785
789786
790-
791-
.. code-block::
787+
.. code-block:: python
792788
793789
from google.cloud import network_management_v1
794790
@@ -921,8 +917,7 @@ def rerun_connectivity_test(
921917
returns a value of ``UNKNOWN``.
922918
923919
924-
925-
.. code-block::
920+
.. code-block:: python
926921
927922
from google.cloud import network_management_v1
928923
@@ -1007,8 +1002,7 @@ def delete_connectivity_test(
10071002
) -> operation.Operation:
10081003
r"""Deletes a specific ``ConnectivityTest``.
10091004
1010-
1011-
.. code-block::
1005+
.. code-block:: python
10121006
10131007
from google.cloud import network_management_v1
10141008

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_create_connectivity_test_async.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_create_connectivity_test_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_CreateConnectivityTest_async]
26+
# [START networkmanagement_v1_generated_ReachabilityService_CreateConnectivityTest_async]
2727
from google.cloud import network_management_v1
2828

2929

@@ -51,4 +51,4 @@ async def sample_create_connectivity_test():
5151
# Handle the response
5252
print(response)
5353

54-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_CreateConnectivityTest_async]
54+
# [END networkmanagement_v1_generated_ReachabilityService_CreateConnectivityTest_async]

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_create_connectivity_test_sync.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_create_connectivity_test_sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_CreateConnectivityTest_sync]
26+
# [START networkmanagement_v1_generated_ReachabilityService_CreateConnectivityTest_sync]
2727
from google.cloud import network_management_v1
2828

2929

@@ -51,4 +51,4 @@ def sample_create_connectivity_test():
5151
# Handle the response
5252
print(response)
5353

54-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_CreateConnectivityTest_sync]
54+
# [END networkmanagement_v1_generated_ReachabilityService_CreateConnectivityTest_sync]

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_delete_connectivity_test_async.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_delete_connectivity_test_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_DeleteConnectivityTest_async]
26+
# [START networkmanagement_v1_generated_ReachabilityService_DeleteConnectivityTest_async]
2727
from google.cloud import network_management_v1
2828

2929

@@ -46,4 +46,4 @@ async def sample_delete_connectivity_test():
4646
# Handle the response
4747
print(response)
4848

49-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_DeleteConnectivityTest_async]
49+
# [END networkmanagement_v1_generated_ReachabilityService_DeleteConnectivityTest_async]

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_delete_connectivity_test_sync.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_delete_connectivity_test_sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_DeleteConnectivityTest_sync]
26+
# [START networkmanagement_v1_generated_ReachabilityService_DeleteConnectivityTest_sync]
2727
from google.cloud import network_management_v1
2828

2929

@@ -46,4 +46,4 @@ def sample_delete_connectivity_test():
4646
# Handle the response
4747
print(response)
4848

49-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_DeleteConnectivityTest_sync]
49+
# [END networkmanagement_v1_generated_ReachabilityService_DeleteConnectivityTest_sync]

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_get_connectivity_test_async.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_get_connectivity_test_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_GetConnectivityTest_async]
26+
# [START networkmanagement_v1_generated_ReachabilityService_GetConnectivityTest_async]
2727
from google.cloud import network_management_v1
2828

2929

@@ -42,4 +42,4 @@ async def sample_get_connectivity_test():
4242
# Handle the response
4343
print(response)
4444

45-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_GetConnectivityTest_async]
45+
# [END networkmanagement_v1_generated_ReachabilityService_GetConnectivityTest_async]

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_get_connectivity_test_sync.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_get_connectivity_test_sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_GetConnectivityTest_sync]
26+
# [START networkmanagement_v1_generated_ReachabilityService_GetConnectivityTest_sync]
2727
from google.cloud import network_management_v1
2828

2929

@@ -42,4 +42,4 @@ def sample_get_connectivity_test():
4242
# Handle the response
4343
print(response)
4444

45-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_GetConnectivityTest_sync]
45+
# [END networkmanagement_v1_generated_ReachabilityService_GetConnectivityTest_sync]

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_list_connectivity_tests_async.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_list_connectivity_tests_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_ListConnectivityTests_async]
26+
# [START networkmanagement_v1_generated_ReachabilityService_ListConnectivityTests_async]
2727
from google.cloud import network_management_v1
2828

2929

@@ -43,4 +43,4 @@ async def sample_list_connectivity_tests():
4343
async for response in page_result:
4444
print(response)
4545

46-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_ListConnectivityTests_async]
46+
# [END networkmanagement_v1_generated_ReachabilityService_ListConnectivityTests_async]

packages/google-cloud-network-management/samples/generated_samples/networkmanagement_generated_network_management_v1_reachability_service_list_connectivity_tests_sync.py renamed to packages/google-cloud-network-management/samples/generated_samples/networkmanagement_v1_generated_reachability_service_list_connectivity_tests_sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# python3 -m pip install google-cloud-network-management
2424

2525

26-
# [START networkmanagement_generated_network_management_v1_ReachabilityService_ListConnectivityTests_sync]
26+
# [START networkmanagement_v1_generated_ReachabilityService_ListConnectivityTests_sync]
2727
from google.cloud import network_management_v1
2828

2929

@@ -43,4 +43,4 @@ def sample_list_connectivity_tests():
4343
for response in page_result:
4444
print(response)
4545

46-
# [END networkmanagement_generated_network_management_v1_ReachabilityService_ListConnectivityTests_sync]
46+
# [END networkmanagement_v1_generated_ReachabilityService_ListConnectivityTests_sync]

0 commit comments

Comments
 (0)