Show / Hide Table of Contents

Class AssociatedComponent

The details of the associated component.

Inheritance
object
AssociatedComponent
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class AssociatedComponent

Properties

AssociationType

Declaration
[Required(ErrorMessage = "AssociationType is required.")]
[JsonProperty(PropertyName = "associationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AssociatedComponent.AssociationTypeEnum? AssociationType { get; set; }
Property Value
Type Description
AssociatedComponent.AssociationTypeEnum?

The association type.

Remarks

Required

ComponentId

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

The identifier of the associated component.

Remarks

Required

ComponentType

Declaration
[JsonProperty(PropertyName = "componentType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExternalDbSystemComponentType? ComponentType { get; set; }
Property Value
Type Description
ExternalDbSystemComponentType?

The type of associated component.

In this article
Back to top