The UptimeCheckService API is used to manage (list, create, delete, 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, selecting the appropriate project, clicking on "Monitoring" on the left-hand side to navigate to Cloud Monitoring, and then clicking on "Uptime".
Equality
Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection>
objects compare equal. Objects that compare equal share the same underlying resources.
Performance
Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.
Thread Safety
Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.
Constructors
UptimeCheckServiceClient(UptimeCheckServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
UptimeCheckServiceClient const &
|
UptimeCheckServiceClient(UptimeCheckServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
UptimeCheckServiceClient &&
|
UptimeCheckServiceClient(std::shared_ptr< UptimeCheckServiceConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< UptimeCheckServiceConnection >
|
opts |
Options
|
Operators
operator=(UptimeCheckServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
UptimeCheckServiceClient const &
|
Returns | |
---|---|
Type | Description |
UptimeCheckServiceClient & |
operator=(UptimeCheckServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
UptimeCheckServiceClient &&
|
Returns | |
---|---|
Type | Description |
UptimeCheckServiceClient & |
Functions
ListUptimeCheckConfigs(std::string const &, Options)
Lists the existing valid Uptime check configurations for the project (leaving out any invalid configurations).
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The project whose Uptime check configurations are listed. The format is: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::monitoring::v3::UptimeCheckConfig > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListUptimeCheckConfigs(google::monitoring::v3::ListUptimeCheckConfigsRequest, Options)
Lists the existing valid Uptime check configurations for the project (leaving out any invalid configurations).
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::ListUptimeCheckConfigsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::monitoring::v3::UptimeCheckConfig > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetUptimeCheckConfig(std::string const &, Options)
Gets a single Uptime check configuration.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The Uptime check configuration to retrieve. The format is: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::UptimeCheckConfig > |
the result of the RPC. The response message type (google.monitoring.v3.UptimeCheckConfig) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetUptimeCheckConfig(google::monitoring::v3::GetUptimeCheckConfigRequest const &, Options)
Gets a single Uptime check configuration.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::GetUptimeCheckConfigRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::UptimeCheckConfig > |
the result of the RPC. The response message type (google.monitoring.v3.UptimeCheckConfig) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateUptimeCheckConfig(std::string const &, google::monitoring::v3::UptimeCheckConfig const &, Options)
Creates a new Uptime check configuration.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The project in which to create the Uptime check. The format is: |
uptime_check_config |
google::monitoring::v3::UptimeCheckConfig const &
Required. The new Uptime check configuration. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::UptimeCheckConfig > |
the result of the RPC. The response message type (google.monitoring.v3.UptimeCheckConfig) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateUptimeCheckConfig(google::monitoring::v3::CreateUptimeCheckConfigRequest const &, Options)
Creates a new Uptime check configuration.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::CreateUptimeCheckConfigRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::UptimeCheckConfig > |
the result of the RPC. The response message type (google.monitoring.v3.UptimeCheckConfig) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateUptimeCheckConfig(google::monitoring::v3::UptimeCheckConfig const &, Options)
Updates an Uptime check configuration.
You can either replace the entire configuration with a new one or replace only certain fields in the current configuration by specifying the fields to be updated via updateMask
. Returns the updated configuration.
Parameters | |
---|---|
Name | Description |
uptime_check_config |
google::monitoring::v3::UptimeCheckConfig const &
Required. If an |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::UptimeCheckConfig > |
the result of the RPC. The response message type (google.monitoring.v3.UptimeCheckConfig) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateUptimeCheckConfig(google::monitoring::v3::UpdateUptimeCheckConfigRequest const &, Options)
Updates an Uptime check configuration.
You can either replace the entire configuration with a new one or replace only certain fields in the current configuration by specifying the fields to be updated via updateMask
. Returns the updated configuration.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::UpdateUptimeCheckConfigRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::UptimeCheckConfig > |
the result of the RPC. The response message type (google.monitoring.v3.UptimeCheckConfig) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteUptimeCheckConfig(std::string const &, Options)
Deletes an Uptime check configuration.
Note that this method will fail if the Uptime check configuration is referenced by an alert policy or other dependent configs that would be rendered invalid by the deletion.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The Uptime check configuration to delete. The format is: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteUptimeCheckConfig(google::monitoring::v3::DeleteUptimeCheckConfigRequest const &, Options)
Deletes an Uptime check configuration.
Note that this method will fail if the Uptime check configuration is referenced by an alert policy or other dependent configs that would be rendered invalid by the deletion.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::DeleteUptimeCheckConfigRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
ListUptimeCheckIps(google::monitoring::v3::ListUptimeCheckIpsRequest, Options)
Returns the list of IP addresses that checkers run from.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::ListUptimeCheckIpsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::monitoring::v3::UptimeCheckIp > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |