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

OCID of the customer subnet connected to 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 private access channel.

In this article
Back to top