Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

chore: use gapic-generator-python 0.63.4 #67

Merged
merged 5 commits into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions google/cloud/debugger_v2/services/controller2/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ async def register_debuggee(
re-registration.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -336,7 +336,7 @@ async def list_active_breakpoints(
from the active list to avoid setting those breakpoints again.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -437,7 +437,7 @@ async def update_active_breakpoint(
to the correct line of code.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down
9 changes: 3 additions & 6 deletions google/cloud/debugger_v2/services/controller2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,7 @@ def register_debuggee(
re-registration.



.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -522,8 +521,7 @@ def list_active_breakpoints(
from the active list to avoid setting those breakpoints again.



.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -614,8 +612,7 @@ def update_active_breakpoint(
to the correct line of code.



.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down
10 changes: 5 additions & 5 deletions google/cloud/debugger_v2/services/debugger2/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ async def set_breakpoint(
) -> debugger.SetBreakpointResponse:
r"""Sets the breakpoint to the debuggee.

.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -323,7 +323,7 @@ async def get_breakpoint(
) -> debugger.GetBreakpointResponse:
r"""Gets breakpoint information.

.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -440,7 +440,7 @@ async def delete_breakpoint(
) -> None:
r"""Deletes the breakpoint from the debuggee.

.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -545,7 +545,7 @@ async def list_breakpoints(
) -> debugger.ListBreakpointsResponse:
r"""Lists all breakpoints for the debuggee.

.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -648,7 +648,7 @@ async def list_debuggees(
) -> debugger.ListDebuggeesResponse:
r"""Lists all the debuggees that the user has access to.

.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down
15 changes: 5 additions & 10 deletions google/cloud/debugger_v2/services/debugger2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,7 @@ def set_breakpoint(
) -> debugger.SetBreakpointResponse:
r"""Sets the breakpoint to the debuggee.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -511,8 +510,7 @@ def get_breakpoint(
) -> debugger.GetBreakpointResponse:
r"""Gets breakpoint information.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -619,8 +617,7 @@ def delete_breakpoint(
) -> None:
r"""Deletes the breakpoint from the debuggee.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -715,8 +712,7 @@ def list_breakpoints(
) -> debugger.ListBreakpointsResponse:
r"""Lists all breakpoints for the debuggee.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down Expand Up @@ -809,8 +805,7 @@ def list_debuggees(
) -> debugger.ListDebuggeesResponse:
r"""Lists all the debuggees that the user has access to.


.. code-block::
.. code-block:: python

from google.cloud import debugger_v2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Controller2_ListActiveBreakpoints_async]
# [START clouddebugger_v2_generated_Controller2_ListActiveBreakpoints_async]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Controller2_ListActiveBreakpoints_async]
# [END clouddebugger_v2_generated_Controller2_ListActiveBreakpoints_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Controller2_ListActiveBreakpoints_sync]
# [START clouddebugger_v2_generated_Controller2_ListActiveBreakpoints_sync]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Controller2_ListActiveBreakpoints_sync]
# [END clouddebugger_v2_generated_Controller2_ListActiveBreakpoints_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Controller2_RegisterDebuggee_async]
# [START clouddebugger_v2_generated_Controller2_RegisterDebuggee_async]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Controller2_RegisterDebuggee_async]
# [END clouddebugger_v2_generated_Controller2_RegisterDebuggee_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Controller2_RegisterDebuggee_sync]
# [START clouddebugger_v2_generated_Controller2_RegisterDebuggee_sync]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Controller2_RegisterDebuggee_sync]
# [END clouddebugger_v2_generated_Controller2_RegisterDebuggee_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Controller2_UpdateActiveBreakpoint_async]
# [START clouddebugger_v2_generated_Controller2_UpdateActiveBreakpoint_async]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Controller2_UpdateActiveBreakpoint_async]
# [END clouddebugger_v2_generated_Controller2_UpdateActiveBreakpoint_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Controller2_UpdateActiveBreakpoint_sync]
# [START clouddebugger_v2_generated_Controller2_UpdateActiveBreakpoint_sync]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Controller2_UpdateActiveBreakpoint_sync]
# [END clouddebugger_v2_generated_Controller2_UpdateActiveBreakpoint_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_DeleteBreakpoint_async]
# [START clouddebugger_v2_generated_Debugger2_DeleteBreakpoint_async]
from google.cloud import debugger_v2


Expand All @@ -42,4 +42,4 @@ async def sample_delete_breakpoint():
await client.delete_breakpoint(request=request)


# [END clouddebugger_generated_debugger_v2_Debugger2_DeleteBreakpoint_async]
# [END clouddebugger_v2_generated_Debugger2_DeleteBreakpoint_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_DeleteBreakpoint_sync]
# [START clouddebugger_v2_generated_Debugger2_DeleteBreakpoint_sync]
from google.cloud import debugger_v2


Expand All @@ -42,4 +42,4 @@ def sample_delete_breakpoint():
client.delete_breakpoint(request=request)


# [END clouddebugger_generated_debugger_v2_Debugger2_DeleteBreakpoint_sync]
# [END clouddebugger_v2_generated_Debugger2_DeleteBreakpoint_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_GetBreakpoint_async]
# [START clouddebugger_v2_generated_Debugger2_GetBreakpoint_async]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_GetBreakpoint_async]
# [END clouddebugger_v2_generated_Debugger2_GetBreakpoint_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_GetBreakpoint_sync]
# [START clouddebugger_v2_generated_Debugger2_GetBreakpoint_sync]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_GetBreakpoint_sync]
# [END clouddebugger_v2_generated_Debugger2_GetBreakpoint_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_ListBreakpoints_async]
# [START clouddebugger_v2_generated_Debugger2_ListBreakpoints_async]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_ListBreakpoints_async]
# [END clouddebugger_v2_generated_Debugger2_ListBreakpoints_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_ListBreakpoints_sync]
# [START clouddebugger_v2_generated_Debugger2_ListBreakpoints_sync]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_ListBreakpoints_sync]
# [END clouddebugger_v2_generated_Debugger2_ListBreakpoints_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_ListDebuggees_async]
# [START clouddebugger_v2_generated_Debugger2_ListDebuggees_async]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_ListDebuggees_async]
# [END clouddebugger_v2_generated_Debugger2_ListDebuggees_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_ListDebuggees_sync]
# [START clouddebugger_v2_generated_Debugger2_ListDebuggees_sync]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_ListDebuggees_sync]
# [END clouddebugger_v2_generated_Debugger2_ListDebuggees_sync]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_SetBreakpoint_async]
# [START clouddebugger_v2_generated_Debugger2_SetBreakpoint_async]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_SetBreakpoint_async]
# [END clouddebugger_v2_generated_Debugger2_SetBreakpoint_async]
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# python3 -m pip install google-cloud-debugger-client


# [START clouddebugger_generated_debugger_v2_Debugger2_SetBreakpoint_sync]
# [START clouddebugger_v2_generated_Debugger2_SetBreakpoint_sync]
from google.cloud import debugger_v2


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

# [END clouddebugger_generated_debugger_v2_Debugger2_SetBreakpoint_sync]
# [END clouddebugger_v2_generated_Debugger2_SetBreakpoint_sync]
Loading