Show / Hide Table of Contents

Class AdhocGetPathAnalysisDetails

Defines the configuration for getting an ad-hoc path analysis.

Inheritance
object
GetPathAnalysisDetails
AdhocGetPathAnalysisDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VnmonitoringService.Models
Assembly: OCI.DotNetSDK.Vnmonitoring.dll
Syntax
public class AdhocGetPathAnalysisDetails : GetPathAnalysisDetails

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID for the compartment.

Remarks

Required

DestinationEndpoint

Declaration
[Required(ErrorMessage = "DestinationEndpoint is required.")]
[JsonProperty(PropertyName = "destinationEndpoint")]
public Endpoint DestinationEndpoint { get; set; }
Property Value
Type Description
Endpoint
Remarks

Required

Protocol

Declaration
[Required(ErrorMessage = "Protocol is required.")]
[JsonProperty(PropertyName = "protocol")]
public int? Protocol { get; set; }
Property Value
Type Description
int?

The IP protocol to used for the path analysis.

Remarks

Required

ProtocolParameters

Declaration
[JsonProperty(PropertyName = "protocolParameters")]
public ProtocolParameters ProtocolParameters { get; set; }
Property Value
Type Description
ProtocolParameters

QueryOptions

Declaration
[JsonProperty(PropertyName = "queryOptions")]
public QueryOptions QueryOptions { get; set; }
Property Value
Type Description
QueryOptions

SourceEndpoint

Declaration
[Required(ErrorMessage = "SourceEndpoint is required.")]
[JsonProperty(PropertyName = "sourceEndpoint")]
public Endpoint SourceEndpoint { get; set; }
Property Value
Type Description
Endpoint
Remarks

Required

In this article
Back to top