Class PrivateAccessChannel
Analytics instance private access channel model.
Inherited Members
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> | List of IP addresses from the customer subnet connected to the private access channel, used as a source IP by the private access channel for network traffic from the Analytics instance to the 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 the 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 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. |
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