Class MaintenanceClient (2.45.0-rc)

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. projects/123/locations/*

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 begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.maintenance.api.v1.MaintenanceSummary, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

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 request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.maintenance.api.v1.SummarizeMaintenancesRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

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 begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.maintenance.api.v1.MaintenanceSummary, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

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 begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.maintenance.api.v1.ResourceMaintenance, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

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 request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.maintenance.api.v1.ListResourceMaintenancesRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

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 begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.maintenance.api.v1.ResourceMaintenance, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

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 StatusOr contains the error details.

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 request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.maintenance.api.v1.GetResourceMaintenanceRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

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 StatusOr contains the error details.

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 request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.location.ListLocationsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

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 begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.location.Location, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

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 request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.location.GetLocationRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

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 StatusOr contains the error details.