/** * Analytics API * Analytics API. * OpenAPI spec version: 20190331 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Analytics Instance Private Access Channel model. * */ export interface PrivateAccessChannel { /** * Private Access Channel unique identifier key. * */ "key": string; /** * Display Name of the Private Access Channel. * */ "displayName": string; /** * OCID of the customer VCN peered with private access channel. * */ "vcnId": string; /** * OCID of the customer subnet connected to private access channel. * */ "subnetId": string; /** * IP Address of the Private Access channel. * */ "ipAddress": 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. * */ "egressSourceIpAddresses": Array; /** * 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. * */ "privateSourceDnsZones"?: Array; /** * List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance. * */ "privateSourceScanHosts"?: Array; /** * Network Security Group OCIDs for an Analytics instance. * */ "networkSecurityGroupIds"?: Array; } export declare namespace PrivateAccessChannel { function getJsonObj(obj: PrivateAccessChannel): object; function getDeserializedJsonObj(obj: PrivateAccessChannel): object; }