class Google::Apis::NetworkmanagementV1beta1::ProbingDetails

Results of active probing from the last run of the test.

Attributes

abort_cause[RW]

The reason probing was aborted. Corresponds to the JSON property `abortCause` @return [String]

endpoint_info[RW]

For display only. The specification of the endpoints for the test. EndpointInfo is derived from source and destination Endpoint and validated by the backend data plane model. Corresponds to the JSON property `endpointInfo` @return [Google::Apis::NetworkmanagementV1beta1::EndpointInfo]

error[RW]

The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [ gRPC](github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https: //cloud.google.com/apis/design/errors). Corresponds to the JSON property `error` @return [Google::Apis::NetworkmanagementV1beta1::Status]

probing_latency[RW]

Describes measured latency distribution. Corresponds to the JSON property `probingLatency` @return [Google::Apis::NetworkmanagementV1beta1::LatencyDistribution]

result[RW]

The overall result of active probing. Corresponds to the JSON property `result` @return [String]

sent_probe_count[RW]

Number of probes sent. Corresponds to the JSON property `sentProbeCount` @return [Fixnum]

successful_probe_count[RW]

Number of probes that reached the destination. Corresponds to the JSON property `successfulProbeCount` @return [Fixnum]

verify_time[RW]

The time that reachability was assessed through active probing. Corresponds to the JSON property `verifyTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 1402
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 1407
def update!(**args)
  @abort_cause = args[:abort_cause] if args.key?(:abort_cause)
  @endpoint_info = args[:endpoint_info] if args.key?(:endpoint_info)
  @error = args[:error] if args.key?(:error)
  @probing_latency = args[:probing_latency] if args.key?(:probing_latency)
  @result = args[:result] if args.key?(:result)
  @sent_probe_count = args[:sent_probe_count] if args.key?(:sent_probe_count)
  @successful_probe_count = args[:successful_probe_count] if args.key?(:successful_probe_count)
  @verify_time = args[:verify_time] if args.key?(:verify_time)
end