Show / Hide Table of Contents

Class CreatePrivateAccessChannelDetails

Input payload to create a private access channel.

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

Properties

DisplayName

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

Display name of the private access channel.

Remarks

Required

NetworkSecurityGroupIds

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

Network Security Group OCIDs for the Analytics instance.

PrivateSourceDnsZones

Declaration
[Required(ErrorMessage = "PrivateSourceDnsZones is required.")]
[JsonProperty(PropertyName = "privateSourceDnsZones")]
public List<PrivateSourceDnsZone> PrivateSourceDnsZones { get; set; }
Property Value
Type Description
List<PrivateSourceDnsZone>

List of private source DNS zones registered with the private access channel. The datasource hostnames from these DNS zones / domains will be resolved in the peered VCN for access from the Analytics instance. Minimum 1 private source is required. Maximum 30 private source DNS zones can be registered.

Remarks

Required

PrivateSourceScanHosts

Declaration
[JsonProperty(PropertyName = "privateSourceScanHosts")]
public List<PrivateSourceScanHost> PrivateSourceScanHosts { get; set; }
Property Value
Type Description
List<PrivateSourceScanHost>

List of private source database SCAN hosts registered with the private access channel for access from the Analytics instance.

SubnetId

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

OCID of the customer subnet connected to the private access channel.

Remarks

Required

VcnId

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

OCID of the customer VCN peered with the private access channel.

Remarks

Required

In this article
Back to top