Show / Hide Table of Contents

Class PrivateAccessChannel

Analytics Instance Private Access Channel model.

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

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

EgressSourceIpAddresses

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

The list of IP addresses from the customer subnet connected to private access channel, used as a source Ip by Private Access Channel for network traffic from the AnalyticsInstance to Private Sources.

Remarks

Required

IpAddress

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

IP Address of the Private Access channel.

Remarks

Required

Key

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

Private Access Channel unique identifier key.

Remarks

Required

NetworkSecurityGroupIds

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

Network Security Group OCIDs for an Analytics instance.

PrivateSourceDnsZones

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

List of Private Source DNS zones registered with Private Access Channel, where datasource hostnames from these dns zones / domains will be resolved in the peered VCN for access from Analytics Instance. Min of 1 is required and Max of 30 Private Source DNS zones can be registered.

PrivateSourceScanHosts

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

List of Private Source DB SCAN hosts registered with Private Access Channel for access from 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 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 private access channel.

Remarks

Required

In this article
Back to top