Show / Hide Table of Contents

Class ResourceAnalyticsInstanceOacAttachmentDetails

Additional details needed when attaching the OAC instance.
Example: {"idcsDomainId":"ocid...","networkDetails":{...}, ...}

Inheritance
object
ResourceAnalyticsInstanceOacAttachmentDetails
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 ResourceAnalyticsInstanceOacAttachmentDetails

Properties

IdcsDomainId

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

IDCS domain OCID identifying a stripe and service administrator user.

Remarks

Required

LicenseModel

Declaration
[JsonProperty(PropertyName = "licenseModel")]
[JsonConverter(typeof(StringEnumConverter))]
public ResourceAnalyticsInstanceOacAttachmentDetails.LicenseModelEnum? LicenseModel { get; set; }
Property Value
Type Description
ResourceAnalyticsInstanceOacAttachmentDetails.LicenseModelEnum?

The Oracle license model that applies to the OAC instance.

NetworkDetails

Declaration
[JsonProperty(PropertyName = "networkDetails")]
public ResourceAnalyticsInstanceOacNetworkDetails NetworkDetails { get; set; }
Property Value
Type Description
ResourceAnalyticsInstanceOacNetworkDetails

NsgIds

Declaration
[JsonProperty(PropertyName = "nsgIds")]
public List<string> NsgIds { get; set; }
Property Value
Type Description
List<string>

Deprecated. Use networkDetails.nsgIds instead.

SubnetId

Declaration
[JsonProperty(PropertyName = "subnetId")]
public string SubnetId { get; set; }
Property Value
Type Description
string

Deprecated. Use networkDetails.subnetId instead.

In this article
Back to top