Show / Hide Table of Contents

Class ResourceAnalyticsInstanceOacNetworkDetails

Details required when provisioning OAC on a private network.
Example: {"subnetId":"ocid...", ...}

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

Properties

NsgIds

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

List of Network Security Group OCID's for the private network details.
Example: ["ocid...", "ocid..."]

SubnetId

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

The OCID of the subnet for the private network details.

Remarks

Required

In this article
Back to top