Show / Hide Table of Contents

Class ResourceAnalyticsInstanceEnableOacDetails

The configuration details for the enable OAC operation.
Example: {"attachmentType":"MANAGED","attachmentDetails":{...}}

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

Properties

AttachmentDetails

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

Required

AttachmentType

Declaration
[Required(ErrorMessage = "AttachmentType is required.")]
[JsonProperty(PropertyName = "attachmentType")]
[JsonConverter(typeof(StringEnumConverter))]
public ResourceAnalyticsInstanceEnableOacDetails.AttachmentTypeEnum? AttachmentType { get; set; }
Property Value
Type Description
ResourceAnalyticsInstanceEnableOacDetails.AttachmentTypeEnum?

The type of attachment the OAC instance is using.

Remarks

Required

In this article
Back to top