Class ReachabilityServiceClient (2.23.0-rc)

The Reachability service in the Google Cloud Network Management API provides services that analyze the reachability within a single Google Virtual Private Cloud (VPC) network, between peered VPC networks, between VPC and on-premises networks, or between VPC networks and internet hosts.

A reachability analysis is based on Google Cloud network configurations.

You can use the analysis results to verify these configurations and to troubleshoot connectivity issues.

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

ReachabilityServiceClient(ReachabilityServiceClient const &)

Copy and move support

Parameter
NameDescription
ReachabilityServiceClient const &

ReachabilityServiceClient(ReachabilityServiceClient &&)

Copy and move support

Parameter
NameDescription
ReachabilityServiceClient &&

ReachabilityServiceClient(std::shared_ptr< ReachabilityServiceConnection >, Options)

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

Operators

operator=(ReachabilityServiceClient const &)

Copy and move support

Parameter
NameDescription
ReachabilityServiceClient const &
Returns
TypeDescription
ReachabilityServiceClient &

operator=(ReachabilityServiceClient &&)

Copy and move support

Parameter
NameDescription
ReachabilityServiceClient &&
Returns
TypeDescription
ReachabilityServiceClient &

Functions

ListConnectivityTests(std::string const &, Options)

Lists all Connectivity Tests owned by a project.

Parameters
NameDescription
parent std::string const &

Required. The parent resource of the Connectivity Tests: projects/{project_id}/locations/global

opts Options

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

Returns
TypeDescription
StreamRange< google::cloud::networkmanagement::v1::ConnectivityTest >

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

ListConnectivityTests(google::cloud::networkmanagement::v1::ListConnectivityTestsRequest, Options)

Lists all Connectivity Tests owned by a project.

Parameters
NameDescription
request google::cloud::networkmanagement::v1::ListConnectivityTestsRequest

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.networkmanagement.v1.ListConnectivityTestsRequest. 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::networkmanagement::v1::ConnectivityTest >

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

GetConnectivityTest(std::string const &, Options)

Gets the details of a specific Connectivity Test.

Parameters
NameDescription
name std::string const &

Required. ConnectivityTest resource name using the form: projects/{project_id}/locations/global/connectivityTests/{test_id}

opts Options

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

Returns
TypeDescription
StatusOr< google::cloud::networkmanagement::v1::ConnectivityTest >

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

GetConnectivityTest(google::cloud::networkmanagement::v1::GetConnectivityTestRequest const &, Options)

Gets the details of a specific Connectivity Test.

Parameters
NameDescription
request google::cloud::networkmanagement::v1::GetConnectivityTestRequest 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.networkmanagement.v1.GetConnectivityTestRequest. 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::networkmanagement::v1::ConnectivityTest >

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

CreateConnectivityTest(std::string const &, std::string const &, google::cloud::networkmanagement::v1::ConnectivityTest const &, Options)

Creates a new Connectivity Test.

After you create a test, the reachability analysis is performed as part of the long running operation, which completes when the analysis completes.

If the endpoint specifications in ConnectivityTest are invalid (for example, containing non-existent resources in the network, or you don't have read permissions to the network configurations of listed projects), then the reachability result returns a value of UNKNOWN.

If the endpoint specifications in ConnectivityTest are incomplete, the reachability result returns a value of AMBIGUOUS. For more information, see the Connectivity Test documentation.

Parameters
NameDescription
parent std::string const &

Required. The parent resource of the Connectivity Test to create: projects/{project_id}/locations/global

test_id std::string const &

Required. The logical name of the Connectivity Test in your project with the following restrictions:

  • Must contain only lowercase letters, numbers, and hyphens.
  • Must start with a letter.
  • Must be between 1-40 characters.
  • Must end with a number or a letter.
  • Must be unique within the customer project
resource google::cloud::networkmanagement::v1::ConnectivityTest const &

Required. A ConnectivityTest resource

opts Options

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

Returns
TypeDescription
future< StatusOr< google::cloud::networkmanagement::v1::ConnectivityTest > >

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.networkmanagement.v1.ConnectivityTest proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

CreateConnectivityTest(google::cloud::networkmanagement::v1::CreateConnectivityTestRequest const &, Options)

Creates a new Connectivity Test.

After you create a test, the reachability analysis is performed as part of the long running operation, which completes when the analysis completes.

If the endpoint specifications in ConnectivityTest are invalid (for example, containing non-existent resources in the network, or you don't have read permissions to the network configurations of listed projects), then the reachability result returns a value of UNKNOWN.

If the endpoint specifications in ConnectivityTest are incomplete, the reachability result returns a value of AMBIGUOUS. For more information, see the Connectivity Test documentation.

Parameters
NameDescription
request google::cloud::networkmanagement::v1::CreateConnectivityTestRequest 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.networkmanagement.v1.CreateConnectivityTestRequest. 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::networkmanagement::v1::ConnectivityTest > >

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.networkmanagement.v1.ConnectivityTest proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateConnectivityTest(google::protobuf::FieldMask const &, google::cloud::networkmanagement::v1::ConnectivityTest const &, Options)

Updates the configuration of an existing ConnectivityTest.

After you update a test, the reachability analysis is performed as part of the long running operation, which completes when the analysis completes. The Reachability state in the test resource is updated with the new result.

If the endpoint specifications in ConnectivityTest are invalid (for example, they contain non-existent resources in the network, or the user does not have read permissions to the network configurations of listed projects), then the reachability result returns a value of UNKNOWN.

If the endpoint specifications in ConnectivityTest are incomplete, the reachability result returns a value of AMBIGUOUS. See the documentation in ConnectivityTest for for more details.

Parameters
NameDescription
update_mask google::protobuf::FieldMask const &

Required. Mask of fields to update. At least one path must be supplied in this field.

resource google::cloud::networkmanagement::v1::ConnectivityTest const &

Required. Only fields specified in update_mask are updated.

opts Options

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

Returns
TypeDescription
future< StatusOr< google::cloud::networkmanagement::v1::ConnectivityTest > >

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.networkmanagement.v1.ConnectivityTest proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

UpdateConnectivityTest(google::cloud::networkmanagement::v1::UpdateConnectivityTestRequest const &, Options)

Updates the configuration of an existing ConnectivityTest.

After you update a test, the reachability analysis is performed as part of the long running operation, which completes when the analysis completes. The Reachability state in the test resource is updated with the new result.

If the endpoint specifications in ConnectivityTest are invalid (for example, they contain non-existent resources in the network, or the user does not have read permissions to the network configurations of listed projects), then the reachability result returns a value of UNKNOWN.

If the endpoint specifications in ConnectivityTest are incomplete, the reachability result returns a value of AMBIGUOUS. See the documentation in ConnectivityTest for for more details.

Parameters
NameDescription
request google::cloud::networkmanagement::v1::UpdateConnectivityTestRequest 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.networkmanagement.v1.UpdateConnectivityTestRequest. 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::networkmanagement::v1::ConnectivityTest > >

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.networkmanagement.v1.ConnectivityTest proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

RerunConnectivityTest(google::cloud::networkmanagement::v1::RerunConnectivityTestRequest const &, Options)

Rerun an existing ConnectivityTest.

After the user triggers the rerun, the reachability analysis is performed as part of the long running operation, which completes when the analysis completes.

Even though the test configuration remains the same, the reachability result may change due to underlying network configuration changes.

If the endpoint specifications in ConnectivityTest become invalid (for example, specified resources are deleted in the network, or you lost read permissions to the network configurations of listed projects), then the reachability result returns a value of UNKNOWN.

Parameters
NameDescription
request google::cloud::networkmanagement::v1::RerunConnectivityTestRequest 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.networkmanagement.v1.RerunConnectivityTestRequest. 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::networkmanagement::v1::ConnectivityTest > >

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.networkmanagement.v1.ConnectivityTest proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteConnectivityTest(std::string const &, Options)

Deletes a specific ConnectivityTest.

Parameters
NameDescription
name std::string const &

Required. Connectivity Test resource name using the form: projects/{project_id}/locations/global/connectivityTests/{test_id}

opts Options

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

Returns
TypeDescription
future< StatusOr< google::cloud::networkmanagement::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.networkmanagement.v1.OperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.

DeleteConnectivityTest(google::cloud::networkmanagement::v1::DeleteConnectivityTestRequest const &, Options)

Deletes a specific ConnectivityTest.

Parameters
NameDescription
request google::cloud::networkmanagement::v1::DeleteConnectivityTestRequest 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.networkmanagement.v1.DeleteConnectivityTestRequest. 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::networkmanagement::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.networkmanagement.v1.OperationMetadata proto message. The C++ class representing this message is created by Protobuf, using the Protobuf mapping rules.