Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

feat: Add ICMP pings #537

Merged
merged 2 commits into from
May 4, 2023
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 @@ -54,13 +54,13 @@

class UptimeCheckServiceAsyncClient:
"""The UptimeCheckService API is used to manage (list, create, delete,
edit) Uptime check configurations in the Stackdriver Monitoring
product. An Uptime check is a piece of configuration that determines
which resources and services to monitor for availability. These
edit) Uptime check configurations in the Cloud Monitoring product.
An Uptime check is a piece of configuration that determines which
resources and services to monitor for availability. These
configurations can also be configured interactively by navigating to
the [Cloud Console] (http://console.cloud.google.com), selecting the
appropriate project, clicking on "Monitoring" on the left-hand side
to navigate to Stackdriver, and then clicking on "Uptime".
the [Cloud console] (https://console.cloud.google.com), selecting
the appropriate project, clicking on "Monitoring" on the left-hand
side to navigate to Cloud Monitoring, and then clicking on "Uptime".
"""

_client: UptimeCheckServiceClient
Expand Down Expand Up @@ -650,7 +650,7 @@ async def sample_update_uptime_check_config():
in the ``updateMask``. If an ``updateMask`` has not been
given, this Uptime check configuration replaces the
current configuration. If a field is mentioned in
``updateMask`` but the corresonding field is omitted in
``updateMask`` but the corresponding field is omitted in
this partial Uptime check configuration, it has the
effect of deleting/clearing the field from the
configuration on the server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ def get_transport_class(

class UptimeCheckServiceClient(metaclass=UptimeCheckServiceClientMeta):
"""The UptimeCheckService API is used to manage (list, create, delete,
edit) Uptime check configurations in the Stackdriver Monitoring
product. An Uptime check is a piece of configuration that determines
which resources and services to monitor for availability. These
edit) Uptime check configurations in the Cloud Monitoring product.
An Uptime check is a piece of configuration that determines which
resources and services to monitor for availability. These
configurations can also be configured interactively by navigating to
the [Cloud Console] (http://console.cloud.google.com), selecting the
appropriate project, clicking on "Monitoring" on the left-hand side
to navigate to Stackdriver, and then clicking on "Uptime".
the [Cloud console] (https://console.cloud.google.com), selecting
the appropriate project, clicking on "Monitoring" on the left-hand
side to navigate to Cloud Monitoring, and then clicking on "Uptime".
"""

@staticmethod
Expand Down Expand Up @@ -856,7 +856,7 @@ def sample_update_uptime_check_config():
in the ``updateMask``. If an ``updateMask`` has not been
given, this Uptime check configuration replaces the
current configuration. If a field is mentioned in
``updateMask`` but the corresonding field is omitted in
``updateMask`` but the corresponding field is omitted in
this partial Uptime check configuration, it has the
effect of deleting/clearing the field from the
configuration on the server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ class UptimeCheckServiceGrpcTransport(UptimeCheckServiceTransport):
"""gRPC backend transport for UptimeCheckService.

The UptimeCheckService API is used to manage (list, create, delete,
edit) Uptime check configurations in the Stackdriver Monitoring
product. An Uptime check is a piece of configuration that determines
which resources and services to monitor for availability. These
edit) Uptime check configurations in the Cloud Monitoring product.
An Uptime check is a piece of configuration that determines which
resources and services to monitor for availability. These
configurations can also be configured interactively by navigating to
the [Cloud Console] (http://console.cloud.google.com), selecting the
appropriate project, clicking on "Monitoring" on the left-hand side
to navigate to Stackdriver, and then clicking on "Uptime".
the [Cloud console] (https://console.cloud.google.com), selecting
the appropriate project, clicking on "Monitoring" on the left-hand
side to navigate to Cloud Monitoring, and then clicking on "Uptime".

This class defines the same methods as the primary client, so the
primary client can load the underlying transport implementation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ class UptimeCheckServiceGrpcAsyncIOTransport(UptimeCheckServiceTransport):
"""gRPC AsyncIO backend transport for UptimeCheckService.

The UptimeCheckService API is used to manage (list, create, delete,
edit) Uptime check configurations in the Stackdriver Monitoring
product. An Uptime check is a piece of configuration that determines
which resources and services to monitor for availability. These
edit) Uptime check configurations in the Cloud Monitoring product.
An Uptime check is a piece of configuration that determines which
resources and services to monitor for availability. These
configurations can also be configured interactively by navigating to
the [Cloud Console] (http://console.cloud.google.com), selecting the
appropriate project, clicking on "Monitoring" on the left-hand side
to navigate to Stackdriver, and then clicking on "Uptime".
the [Cloud console] (https://console.cloud.google.com), selecting
the appropriate project, clicking on "Monitoring" on the left-hand
side to navigate to Cloud Monitoring, and then clicking on "Uptime".

This class defines the same methods as the primary client, so the
primary client can load the underlying transport implementation
Expand Down
Loading