Unified Maintenance service.
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
MaintenanceClient(MaintenanceClient const &)
Copy and move support
| Parameter | |
|---|---|
| Name | Description |
|
MaintenanceClient const &
|
MaintenanceClient(MaintenanceClient &&)
Copy and move support
| Parameter | |
|---|---|
| Name | Description |
|
MaintenanceClient &&
|
MaintenanceClient(std::shared_ptr< MaintenanceConnection >, Options)
| Parameters | |
|---|---|
| Name | Description |
connection |
std::shared_ptr< MaintenanceConnection >
|
opts |
Options
|
Operators
operator=(MaintenanceClient const &)
Copy and move support
| Parameter | |
|---|---|
| Name | Description |
|
MaintenanceClient const &
|
| Returns | |
|---|---|
| Type | Description |
MaintenanceClient & |
|
operator=(MaintenanceClient &&)
Copy and move support
| Parameter | |
|---|---|
| Name | Description |
|
MaintenanceClient &&
|
| Returns | |
|---|---|
| Type | Description |
MaintenanceClient & |
|
Functions
SummarizeMaintenances(std::string const &, Options)
Retrieves the statistics of a specific maintenance.
| Parameters | |
|---|---|
| Name | Description |
parent |
std::string const &
Required. The parent of the resource maintenance. eg. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
| Returns | |
|---|---|
| Type | Description |
StreamRange< google::cloud::maintenance::api::v1::MaintenanceSummary > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
SummarizeMaintenances(google::cloud::maintenance::api::v1::SummarizeMaintenancesRequest, Options)
Retrieves the statistics of a specific maintenance.
| Parameters | |
|---|---|
| Name | Description |
request |
google::cloud::maintenance::api::v1::SummarizeMaintenancesRequest
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::cloud::maintenance::api::v1::MaintenanceSummary > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListResourceMaintenances(std::string const &, Options)
Retrieve a collection of resource maintenances.
| Parameters | |
|---|---|
| Name | Description |
parent |
std::string const &
Required. The parent of the resource maintenance. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
| Returns | |
|---|---|
| Type | Description |
StreamRange< google::cloud::maintenance::api::v1::ResourceMaintenance > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListResourceMaintenances(google::cloud::maintenance::api::v1::ListResourceMaintenancesRequest, Options)
Retrieve a collection of resource maintenances.
| Parameters | |
|---|---|
| Name | Description |
request |
google::cloud::maintenance::api::v1::ListResourceMaintenancesRequest
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::cloud::maintenance::api::v1::ResourceMaintenance > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetResourceMaintenance(std::string const &, Options)
Retrieve a single resource maintenance.
| Parameters | |
|---|---|
| Name | Description |
name |
std::string const &
Required. The resource name of the resource within a service. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
| Returns | |
|---|---|
| Type | Description |
StatusOr< google::cloud::maintenance::api::v1::ResourceMaintenance > |
the result of the RPC. The response message type (google.cloud.maintenance.api.v1.ResourceMaintenance) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetResourceMaintenance(google::cloud::maintenance::api::v1::GetResourceMaintenanceRequest const &, Options)
Retrieve a single resource maintenance.
| Parameters | |
|---|---|
| Name | Description |
request |
google::cloud::maintenance::api::v1::GetResourceMaintenanceRequest 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::cloud::maintenance::api::v1::ResourceMaintenance > |
the result of the RPC. The response message type (google.cloud.maintenance.api.v1.ResourceMaintenance) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListLocations(google::cloud::location::ListLocationsRequest, Options)
Lists information about the supported locations for this service.
| Parameters | |
|---|---|
| Name | Description |
request |
google::cloud::location::ListLocationsRequest
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::cloud::location::Location > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetLocation(google::cloud::location::GetLocationRequest const &, Options)
Gets information about a location.
| Parameters | |
|---|---|
| Name | Description |
request |
google::cloud::location::GetLocationRequest 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::cloud::location::Location > |
the result of the RPC. The response message type (google.cloud.location.Location) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |