Class ReachabilityDetails (1.8.1)

ReachabilityDetails(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Results of the configuration analysis from the last run of the test.

Attributes

NameDescription
result google.cloud.network_management_v1.types.ReachabilityDetails.Result
The overall result of the test's configuration analysis.
verify_time google.protobuf.timestamp_pb2.Timestamp
The time of the configuration analysis.
error google.rpc.status_pb2.Status
The details of a failure or a cancellation of reachability analysis.
traces MutableSequence[google.cloud.network_management_v1.types.Trace]
Result may contain a list of traces if a test has multiple possible paths in the network, such as when destination endpoint is a load balancer with multiple backends.

Classes

Result

Result(value)

The overall result of the test's configuration analysis.

Values: RESULT_UNSPECIFIED (0): No result was specified. REACHABLE (1): Possible scenarios are:

    -  The configuration analysis determined that a packet
       originating from the source is expected to reach the
       destination.
    -  The analysis didn't complete because the user lacks
       permission for some of the resources in the trace.
       However, at the time the user's permission became
       insufficient, the trace had been successful so far.
UNREACHABLE (2):
    A packet originating from the source is
    expected to be dropped before reaching the
    destination.
AMBIGUOUS (4):
    The source and destination endpoints do not
    uniquely identify the test location in the
    network, and the reachability result contains
    multiple traces. For some traces, a packet could
    be delivered, and for others, it would not be.
UNDETERMINED (5):
    The configuration analysis did not complete. Possible
    reasons are:

    -  A permissions error occurred--for example, the user might
       not have read permission for all of the resources named
       in the test.
    -  An internal error occurred.
    -  The analyzer received an invalid or unsupported argument
       or was unable to identify a known endpoint.