Show / Hide Table of Contents

Class AttachmentDetails

Description of an attachments for this instance

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

Properties

IsImplicit

Declaration
[Required(ErrorMessage = "IsImplicit is required.")]
[JsonProperty(PropertyName = "isImplicit")]
public bool? IsImplicit { get; set; }
Property Value
Type Description
bool?
  • If role == PARENT, the attached instance was created by this service instance
  • If role == CHILD, this instance was created from attached instance on behalf of a user
Remarks

Required

TargetId

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

The OCID of the target instance (which could be any other OCI PaaS/SaaS resource), to which this instance is attached.

Remarks

Required

TargetInstanceUrl

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

The dataplane instance URL of the attached instance

Remarks

Required

TargetRole

Declaration
[Required(ErrorMessage = "TargetRole is required.")]
[JsonProperty(PropertyName = "targetRole")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AttachmentDetails.TargetRoleEnum? TargetRole { get; set; }
Property Value
Type Description
AttachmentDetails.TargetRoleEnum?

The role of the target attachment.

  • PARENT - The target instance is the parent of this attachment.
  • CHILD - The target instance is the child of this attachment.
Remarks

Required

TargetServiceType

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

The type of the target instance, such as "FUSION".

Remarks

Required

In this article
Back to top