8000 docs: Fix formatting of request arg in docstring by gcf-owl-bot[bot] · Pull Request #174 · googleapis/python-essential-contacts · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jul 6, 2023. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ async def sample_create_contact():

Args:
request (Optional[Union[google.cloud.essential_contacts_v1.types.CreateContactRequest, dict]]):
The request object. Request message for the
CreateContact method.
The request object. Request message for the CreateContact
method.
parent (:class:`str`):
Required. The resource to save this contact for. Format:
organizations/{organization_id}, folders/{folder_id} or
Expand Down Expand Up @@ -378,8 +378,8 @@ async def sample_update_contact():

Args:
request (Optional[Union[google.cloud.essential_contacts_v1.types.UpdateContactRequest, dict]]):
The request object. Request message for the
UpdateContact method.
The request object. Request message for the UpdateContact
method.
contact (:class:`google.cloud.essential_contacts_v1.types.Contact`):
Required. The contact resource to
replace the existing saved contact.
Expand Down Expand Up @@ -729,8 +729,8 @@ async def sample_delete_contact():

Args:
request (Optional[Union[google.cloud.essential_contacts_v1.types.DeleteContactRequest, dict]]):
The request object. Request message for the
DeleteContact method.
The request object. Request message for the DeleteContact
method.
name (:class:`str`):
Required. The name of the contact to delete. Format:
organizations/{organization_id}/contacts/{contact_id},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,8 @@ def sample_create_contact():

Args:
request (Union[google.cloud.essential_contacts_v1.types.CreateContactRequest, dict]):
The request object. Request message for the
CreateContact method.
The request object. Request message for the CreateContact
method.
parent (str):
Required. The resource to save this contact for. Format:
organizations/{organization_id}, folders/{folder_id} or
Expand Down Expand Up @@ -597,8 +597,8 @@ def sample_update_contact():

Args:
request (Union[google.cloud.essential_contacts_v1.types.UpdateContactRequest, dict]):
The request object. Request message for the
UpdateContact method.
The request object. Request message for the UpdateContact
method.
contact (google.cloud.essential_contacts_v1.types.Contact):
Required. The contact resource to
replace the existing saved contact.
Expand Down Expand Up @@ -930,8 +930,8 @@ def sample_delete_contact():

Args:
request (Union[google.cloud.essential_contacts_v1.types.DeleteContactRequest, dict]):
The request object. Request message for the
DeleteContact method.
The request object. Request message for the DeleteContact
method.
name (str):
Required. The name of the contact to delete. Format:
organizations/{organization_id}/contacts/{contact_id},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,6 @@ def __call__(
request (~.service.ComputeContactsRequest):
The request object. Request message for the
ComputeContacts method.

retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
Expand Down Expand Up @@ -467,7 +466,6 @@ def __call__(
request (~.service.CreateContactRequest):
The request object. Request message for the CreateContact
method.

retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
Expand Down Expand Up @@ -576,7 +574,6 @@ def __call__(
request (~.service.DeleteContactRequest):
The request object. Request message for the DeleteContact
method.

retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
Expand Down Expand Up @@ -660,7 +657,6 @@ def __call__(
request (~.service.GetContactRequest):
The request object. Request message for the GetContact
method.

retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
Expand Down Expand Up @@ -758,7 +754,6 @@ def __call__(
request (~.service.ListContactsRequest):
The request object. Request message for the ListContacts
method.

retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
Expand Down Expand Up @@ -856,7 +851,6 @@ def __call__(
request (~.service.SendTestMessageRequest):
The request object. Request message for the
SendTestMessage method.

retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
Expand Down Expand Up @@ -953,7 +947,6 @@ def __call__(
request (~.service.UpdateContactRequest):
The request object. Request message for the UpdateContact
method.

retry (google.api_core.retry.Retry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
Expand Down
0