Show / Hide Table of Contents

Class TopologyEntityRelationship

Defines the relationship between Virtual Network topology entities.

Inheritance
object
TopologyEntityRelationship
TopologyAssociatedWithEntityRelationship
TopologyContainsEntityRelationship
TopologyRoutesToEntityRelationship
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
[JsonConverter(typeof(TopologyEntityRelationshipModelConverter))]
public class TopologyEntityRelationship

Properties

Id1

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

The OCID of the first entity in the relationship.

Remarks

Required

Id2

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

The OCID of the second entity in the relationship.

Remarks

Required

In this article
Back to top