Show / Hide Table of Contents

Class UpdatePrivateAccessChannelDetails

Input payload to update a private access channel.

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

Properties

DisplayName

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

Display name of the private access channel.

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
[JsonProperty(PropertyName = "subnetId")]
public string SubnetId { get; set; }
Property Value
Type Description
string

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

VcnId

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

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

In this article
Back to top