Class HubServiceClient (2.23.0-rc)

Network Connectivity Center is a hub-and-spoke abstraction for network connectivity management in Google Cloud.

It reduces operational complexity through a simple, centralized connectivity management model.

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

HubServiceClient(HubServiceClient const &)

Copy and move support

Parameter
NameDescription
HubServiceClient const &

HubServiceClient(HubServiceClient &&)

Copy and move support

Parameter
NameDescription
HubServiceClient &&

HubServiceClient(std::shared_ptr< HubServiceConnection >, Options)

Parameters
NameDescription
connection std::shared_ptr< HubServiceConnection >
opts Options

Operators

operator=(HubServiceClient const &)

Copy and move support

Parameter
NameDescription
HubServiceClient const &
Returns
TypeDescription
HubServiceClient &

operator=(HubServiceClient &&)

Copy and move support

Parameter
NameDescription
HubServiceClient &&
Returns
TypeDescription
HubServiceClient &

Functions

ListHubs(std::string const &, Options)

Lists the Network Connectivity Center hubs associated with a given project.

Parameters
NameDescription
parent std::string const &

Required. The parent resource's name.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Hub >

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.networkconnectivity.v1.Hub, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListHubs(google::cloud::networkconnectivity::v1::ListHubsRequest, Options)

Lists the Network Connectivity Center hubs associated with a given project.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::ListHubsRequest

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.networkconnectivity.v1.ListHubsRequest. 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
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Hub >

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.networkconnectivity.v1.Hub, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

GetHub(std::string const &, Options)

Gets details about a Network Connectivity Center hub.

Parameters
NameDescription
name std::string const &

Required. The name of the hub resource to get.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Hub >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Hub) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetHub(google::cloud::networkconnectivity::v1::GetHubRequest const &, Options)

Gets details about a Network Connectivity Center hub.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::GetHubRequest 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.networkconnectivity.v1.GetHubRequest. 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
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Hub >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Hub) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

CreateHub(std::string const &, google::cloud::networkconnectivity::v1::Hub const &, std::string const &, Options)

Creates a new Network Connectivity Center hub in the specified project.

Parameters
NameDescription
parent std::string const &

Required. The parent resource.

hub google::cloud::networkconnectivity::v1::Hub const &

Required. The initial values for a new hub.

hub_id std::string const &

Required. A unique identifier for the hub.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Hub > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Hub proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

CreateHub(google::cloud::networkconnectivity::v1::CreateHubRequest const &, Options)

Creates a new Network Connectivity Center hub in the specified project.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::CreateHubRequest 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.networkconnectivity.v1.CreateHubRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Hub > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Hub proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateHub(google::cloud::networkconnectivity::v1::Hub const &, google::protobuf::FieldMask const &, Options)

Updates the description and/or labels of a Network Connectivity Center hub.

Parameters
NameDescription
hub google::cloud::networkconnectivity::v1::Hub const &

Required. The state that the hub should be in after the update.

update_mask google::protobuf::FieldMask const &

Optional. In the case of an update to an existing hub, field mask is used to specify the fields to be overwritten. The fields specified in the update_mask are relative to the resource, not the full request. A field is overwritten if it is in the mask. If the user does not provide a mask, then all fields are overwritten.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Hub > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Hub proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateHub(google::cloud::networkconnectivity::v1::UpdateHubRequest const &, Options)

Updates the description and/or labels of a Network Connectivity Center hub.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::UpdateHubRequest 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.networkconnectivity.v1.UpdateHubRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Hub > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Hub proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteHub(std::string const &, Options)

Deletes a Network Connectivity Center hub.

Parameters
NameDescription
name std::string const &

Required. The name of the hub to delete.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::OperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.OperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteHub(google::cloud::networkconnectivity::v1::DeleteHubRequest const &, Options)

Deletes a Network Connectivity Center hub.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::DeleteHubRequest 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.networkconnectivity.v1.DeleteHubRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::OperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.OperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

ListHubSpokes(std::string const &, Options)

Lists the Network Connectivity Center spokes associated with a specified hub and location.

The list includes both spokes that are attached to the hub and spokes that have been proposed but not yet accepted.

Parameters
NameDescription
name std::string const &

Required. The name of the hub.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Spoke >

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.networkconnectivity.v1.Spoke, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListHubSpokes(google::cloud::networkconnectivity::v1::ListHubSpokesRequest, Options)

Lists the Network Connectivity Center spokes associated with a specified hub and location.

The list includes both spokes that are attached to the hub and spokes that have been proposed but not yet accepted.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::ListHubSpokesRequest

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.networkconnectivity.v1.ListHubSpokesRequest. 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
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Spoke >

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.networkconnectivity.v1.Spoke, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListSpokes(std::string const &, Options)

Lists the Network Connectivity Center spokes in a specified project and location.

Parameters
NameDescription
parent std::string const &

Required. The parent resource.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Spoke >

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.networkconnectivity.v1.Spoke, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListSpokes(google::cloud::networkconnectivity::v1::ListSpokesRequest, Options)

Lists the Network Connectivity Center spokes in a specified project and location.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::ListSpokesRequest

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.networkconnectivity.v1.ListSpokesRequest. 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
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Spoke >

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.networkconnectivity.v1.Spoke, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

GetSpoke(std::string const &, Options)

Gets details about a Network Connectivity Center spoke.

Parameters
NameDescription
name std::string const &

Required. The name of the spoke resource.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Spoke >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Spoke) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetSpoke(google::cloud::networkconnectivity::v1::GetSpokeRequest const &, Options)

Gets details about a Network Connectivity Center spoke.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::GetSpokeRequest 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.networkconnectivity.v1.GetSpokeRequest. 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
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Spoke >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Spoke) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

CreateSpoke(std::string const &, google::cloud::networkconnectivity::v1::Spoke const &, std::string const &, Options)

Creates a Network Connectivity Center spoke.

Parameters
NameDescription
parent std::string const &

Required. The parent resource.

spoke google::cloud::networkconnectivity::v1::Spoke const &

Required. The initial values for a new spoke.

spoke_id std::string const &

Required. Unique id for the spoke to create.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Spoke > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Spoke proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

CreateSpoke(google::cloud::networkconnectivity::v1::CreateSpokeRequest const &, Options)

Creates a Network Connectivity Center spoke.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::CreateSpokeRequest 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.networkconnectivity.v1.CreateSpokeRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Spoke > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Spoke proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateSpoke(google::cloud::networkconnectivity::v1::Spoke const &, google::protobuf::FieldMask const &, Options)

Updates the parameters of a Network Connectivity Center spoke.

Parameters
NameDescription
spoke google::cloud::networkconnectivity::v1::Spoke const &

Required. The state that the spoke should be in after the update.

update_mask google::protobuf::FieldMask const &

Optional. In the case of an update to an existing spoke, field mask is used to specify the fields to be overwritten. The fields specified in the update_mask are relative to the resource, not the full request. A field is overwritten if it is in the mask. If the user does not provide a mask, then all fields are overwritten.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Spoke > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Spoke proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateSpoke(google::cloud::networkconnectivity::v1::UpdateSpokeRequest const &, Options)

Updates the parameters of a Network Connectivity Center spoke.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::UpdateSpokeRequest 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.networkconnectivity.v1.UpdateSpokeRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::Spoke > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.Spoke proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

RejectHubSpoke(std::string const &, std::string const &, Options)

Rejects a Network Connectivity Center spoke from being attached to a hub.

If the spoke was previously in the ACTIVE state, it transitions to the INACTIVE state and is no longer able to connect to other spokes that are attached to the hub.

Parameters
NameDescription
name std::string const &

Required. The name of the hub from which to reject the spoke.

spoke_uri std::string const &

Required. The URI of the spoke to reject from the hub.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::RejectHubSpokeResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.RejectHubSpokeResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

RejectHubSpoke(google::cloud::networkconnectivity::v1::RejectHubSpokeRequest const &, Options)

Rejects a Network Connectivity Center spoke from being attached to a hub.

If the spoke was previously in the ACTIVE state, it transitions to the INACTIVE state and is no longer able to connect to other spokes that are attached to the hub.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::RejectHubSpokeRequest 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.networkconnectivity.v1.RejectHubSpokeRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::RejectHubSpokeResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.RejectHubSpokeResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

AcceptHubSpoke(std::string const &, std::string const &, Options)

Accepts a proposal to attach a Network Connectivity Center spoke to a hub.

Parameters
NameDescription
name std::string const &

Required. The name of the hub into which to accept the spoke.

spoke_uri std::string const &

Required. The URI of the spoke to accept into the hub.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::AcceptHubSpokeResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.AcceptHubSpokeResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

AcceptHubSpoke(google::cloud::networkconnectivity::v1::AcceptHubSpokeRequest const &, Options)

Accepts a proposal to attach a Network Connectivity Center spoke to a hub.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::AcceptHubSpokeRequest 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.networkconnectivity.v1.AcceptHubSpokeRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::AcceptHubSpokeResponse > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.AcceptHubSpokeResponse proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteSpoke(std::string const &, Options)

Deletes a Network Connectivity Center spoke.

Parameters
NameDescription
name std::string const &

Required. The name of the spoke to delete.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::OperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.OperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteSpoke(google::cloud::networkconnectivity::v1::DeleteSpokeRequest const &, Options)

Deletes a Network Connectivity Center spoke.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::DeleteSpokeRequest 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.networkconnectivity.v1.DeleteSpokeRequest. 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
TypeDescription
future< StatusOr< google::cloud::networkconnectivity::v1::OperationMetadata > >

A future that becomes satisfied when the LRO (Long Running Operation) completes or the polling policy in effect for this call is exhausted. The future is satisfied with an error if the LRO completes with an error or the polling policy is exhausted. In this case the StatusOr returned by the future contains the error. If the LRO completes successfully the value of the future contains the LRO's result. For this RPC the result is a google.cloud.networkconnectivity.v1.OperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

GetRouteTable(std::string const &, Options)

Gets details about a Network Connectivity Center route table.

Parameters
NameDescription
name std::string const &

Required. The name of the route table resource.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::RouteTable >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.RouteTable) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetRouteTable(google::cloud::networkconnectivity::v1::GetRouteTableRequest const &, Options)

Gets details about a Network Connectivity Center route table.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::GetRouteTableRequest 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.networkconnectivity.v1.GetRouteTableRequest. 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
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::RouteTable >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.RouteTable) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetRoute(std::string const &, Options)

Gets details about the specified route.

Parameters
NameDescription
name std::string const &

Required. The name of the route resource.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Route >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Route) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetRoute(google::cloud::networkconnectivity::v1::GetRouteRequest const &, Options)

Gets details about the specified route.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::GetRouteRequest 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.networkconnectivity.v1.GetRouteRequest. 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
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Route >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Route) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

ListRoutes(std::string const &, Options)

Lists routes in a given project.

Parameters
NameDescription
parent std::string const &

Required. The parent resource's name.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Route >

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.networkconnectivity.v1.Route, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListRoutes(google::cloud::networkconnectivity::v1::ListRoutesRequest, Options)

Lists routes in a given project.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::ListRoutesRequest

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.networkconnectivity.v1.ListRoutesRequest. 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
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Route >

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.networkconnectivity.v1.Route, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListRouteTables(std::string const &, Options)

Lists route tables in a given project.

Parameters
NameDescription
parent std::string const &

Required. The parent resource's name.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::RouteTable >

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.networkconnectivity.v1.RouteTable, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListRouteTables(google::cloud::networkconnectivity::v1::ListRouteTablesRequest, Options)

Lists route tables in a given project.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::ListRouteTablesRequest

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.networkconnectivity.v1.ListRouteTablesRequest. 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
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::RouteTable >

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.networkconnectivity.v1.RouteTable, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

GetGroup(std::string const &, Options)

Gets details about a Network Connectivity Center group.

Parameters
NameDescription
name std::string const &

Required. The name of the route table resource.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Group >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Group) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetGroup(google::cloud::networkconnectivity::v1::GetGroupRequest const &, Options)

Gets details about a Network Connectivity Center group.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::GetGroupRequest 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.networkconnectivity.v1.GetGroupRequest. 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
TypeDescription
StatusOr< google::cloud::networkconnectivity::v1::Group >

the result of the RPC. The response message type (google.cloud.networkconnectivity.v1.Group) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

ListGroups(std::string const &, Options)

Lists groups in a given hub.

Parameters
NameDescription
parent std::string const &

Required. The parent resource's name.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Group >

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.networkconnectivity.v1.Group, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListGroups(google::cloud::networkconnectivity::v1::ListGroupsRequest, Options)

Lists groups in a given hub.

Parameters
NameDescription
request google::cloud::networkconnectivity::v1::ListGroupsRequest

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.networkconnectivity.v1.ListGroupsRequest. 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
TypeDescription
StreamRange< google::cloud::networkconnectivity::v1::Group >

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.networkconnectivity.v1.Group, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.