1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Analytics
  5. AnalyticsInstancePrivateAccessChannel
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

oci.Analytics.AnalyticsInstancePrivateAccessChannel

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

    This resource provides the Analytics Instance Private Access Channel resource in Oracle Cloud Infrastructure Analytics service.

    Create a Private access Channel for the Analytics instance. The operation is long-running and creates a new WorkRequest.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAnalyticsInstancePrivateAccessChannel = new oci.analytics.AnalyticsInstancePrivateAccessChannel("testAnalyticsInstancePrivateAccessChannel", {
        analyticsInstanceId: oci_analytics_analytics_instance.test_analytics_instance.id,
        displayName: _var.analytics_instance_private_access_channel_display_name,
        privateSourceDnsZones: [{
            dnsZone: _var.analytics_instance_private_access_channel_private_source_dns_zones_dns_zone,
            description: _var.analytics_instance_private_access_channel_private_source_dns_zones_description,
        }],
        subnetId: oci_core_subnet.test_subnet.id,
        vcnId: oci_core_vcn.test_vcn.id,
        networkSecurityGroupIds: _var.analytics_instance_private_access_channel_network_security_group_ids,
        privateSourceScanHosts: [{
            scanHostname: _var.analytics_instance_private_access_channel_private_source_scan_hosts_scan_hostname,
            scanPort: _var.analytics_instance_private_access_channel_private_source_scan_hosts_scan_port,
            description: _var.analytics_instance_private_access_channel_private_source_scan_hosts_description,
        }],
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_analytics_instance_private_access_channel = oci.analytics.AnalyticsInstancePrivateAccessChannel("testAnalyticsInstancePrivateAccessChannel",
        analytics_instance_id=oci_analytics_analytics_instance["test_analytics_instance"]["id"],
        display_name=var["analytics_instance_private_access_channel_display_name"],
        private_source_dns_zones=[oci.analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs(
            dns_zone=var["analytics_instance_private_access_channel_private_source_dns_zones_dns_zone"],
            description=var["analytics_instance_private_access_channel_private_source_dns_zones_description"],
        )],
        subnet_id=oci_core_subnet["test_subnet"]["id"],
        vcn_id=oci_core_vcn["test_vcn"]["id"],
        network_security_group_ids=var["analytics_instance_private_access_channel_network_security_group_ids"],
        private_source_scan_hosts=[oci.analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs(
            scan_hostname=var["analytics_instance_private_access_channel_private_source_scan_hosts_scan_hostname"],
            scan_port=var["analytics_instance_private_access_channel_private_source_scan_hosts_scan_port"],
            description=var["analytics_instance_private_access_channel_private_source_scan_hosts_description"],
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Analytics"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Analytics.NewAnalyticsInstancePrivateAccessChannel(ctx, "testAnalyticsInstancePrivateAccessChannel", &Analytics.AnalyticsInstancePrivateAccessChannelArgs{
    			AnalyticsInstanceId: pulumi.Any(oci_analytics_analytics_instance.Test_analytics_instance.Id),
    			DisplayName:         pulumi.Any(_var.Analytics_instance_private_access_channel_display_name),
    			PrivateSourceDnsZones: analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArray{
    				&analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs{
    					DnsZone:     pulumi.Any(_var.Analytics_instance_private_access_channel_private_source_dns_zones_dns_zone),
    					Description: pulumi.Any(_var.Analytics_instance_private_access_channel_private_source_dns_zones_description),
    				},
    			},
    			SubnetId:                pulumi.Any(oci_core_subnet.Test_subnet.Id),
    			VcnId:                   pulumi.Any(oci_core_vcn.Test_vcn.Id),
    			NetworkSecurityGroupIds: pulumi.Any(_var.Analytics_instance_private_access_channel_network_security_group_ids),
    			PrivateSourceScanHosts: analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArray{
    				&analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs{
    					ScanHostname: pulumi.Any(_var.Analytics_instance_private_access_channel_private_source_scan_hosts_scan_hostname),
    					ScanPort:     pulumi.Any(_var.Analytics_instance_private_access_channel_private_source_scan_hosts_scan_port),
    					Description:  pulumi.Any(_var.Analytics_instance_private_access_channel_private_source_scan_hosts_description),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAnalyticsInstancePrivateAccessChannel = new Oci.Analytics.AnalyticsInstancePrivateAccessChannel("testAnalyticsInstancePrivateAccessChannel", new()
        {
            AnalyticsInstanceId = oci_analytics_analytics_instance.Test_analytics_instance.Id,
            DisplayName = @var.Analytics_instance_private_access_channel_display_name,
            PrivateSourceDnsZones = new[]
            {
                new Oci.Analytics.Inputs.AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs
                {
                    DnsZone = @var.Analytics_instance_private_access_channel_private_source_dns_zones_dns_zone,
                    Description = @var.Analytics_instance_private_access_channel_private_source_dns_zones_description,
                },
            },
            SubnetId = oci_core_subnet.Test_subnet.Id,
            VcnId = oci_core_vcn.Test_vcn.Id,
            NetworkSecurityGroupIds = @var.Analytics_instance_private_access_channel_network_security_group_ids,
            PrivateSourceScanHosts = new[]
            {
                new Oci.Analytics.Inputs.AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs
                {
                    ScanHostname = @var.Analytics_instance_private_access_channel_private_source_scan_hosts_scan_hostname,
                    ScanPort = @var.Analytics_instance_private_access_channel_private_source_scan_hosts_scan_port,
                    Description = @var.Analytics_instance_private_access_channel_private_source_scan_hosts_description,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Analytics.AnalyticsInstancePrivateAccessChannel;
    import com.pulumi.oci.Analytics.AnalyticsInstancePrivateAccessChannelArgs;
    import com.pulumi.oci.Analytics.inputs.AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs;
    import com.pulumi.oci.Analytics.inputs.AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testAnalyticsInstancePrivateAccessChannel = new AnalyticsInstancePrivateAccessChannel("testAnalyticsInstancePrivateAccessChannel", AnalyticsInstancePrivateAccessChannelArgs.builder()        
                .analyticsInstanceId(oci_analytics_analytics_instance.test_analytics_instance().id())
                .displayName(var_.analytics_instance_private_access_channel_display_name())
                .privateSourceDnsZones(AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs.builder()
                    .dnsZone(var_.analytics_instance_private_access_channel_private_source_dns_zones_dns_zone())
                    .description(var_.analytics_instance_private_access_channel_private_source_dns_zones_description())
                    .build())
                .subnetId(oci_core_subnet.test_subnet().id())
                .vcnId(oci_core_vcn.test_vcn().id())
                .networkSecurityGroupIds(var_.analytics_instance_private_access_channel_network_security_group_ids())
                .privateSourceScanHosts(AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs.builder()
                    .scanHostname(var_.analytics_instance_private_access_channel_private_source_scan_hosts_scan_hostname())
                    .scanPort(var_.analytics_instance_private_access_channel_private_source_scan_hosts_scan_port())
                    .description(var_.analytics_instance_private_access_channel_private_source_scan_hosts_description())
                    .build())
                .build());
    
        }
    }
    
    resources:
      testAnalyticsInstancePrivateAccessChannel:
        type: oci:Analytics:AnalyticsInstancePrivateAccessChannel
        properties:
          #Required
          analyticsInstanceId: ${oci_analytics_analytics_instance.test_analytics_instance.id}
          displayName: ${var.analytics_instance_private_access_channel_display_name}
          privateSourceDnsZones:
            - dnsZone: ${var.analytics_instance_private_access_channel_private_source_dns_zones_dns_zone}
              description: ${var.analytics_instance_private_access_channel_private_source_dns_zones_description}
          subnetId: ${oci_core_subnet.test_subnet.id}
          vcnId: ${oci_core_vcn.test_vcn.id}
          #Optional
          networkSecurityGroupIds: ${var.analytics_instance_private_access_channel_network_security_group_ids}
          privateSourceScanHosts:
            - scanHostname: ${var.analytics_instance_private_access_channel_private_source_scan_hosts_scan_hostname}
              scanPort: ${var.analytics_instance_private_access_channel_private_source_scan_hosts_scan_port}
              description: ${var.analytics_instance_private_access_channel_private_source_scan_hosts_description}
    

    Create AnalyticsInstancePrivateAccessChannel Resource

    new AnalyticsInstancePrivateAccessChannel(name: string, args: AnalyticsInstancePrivateAccessChannelArgs, opts?: CustomResourceOptions);
    @overload
    def AnalyticsInstancePrivateAccessChannel(resource_name: str,
                                              opts: Optional[ResourceOptions] = None,
                                              analytics_instance_id: Optional[str] = None,
                                              display_name: Optional[str] = None,
                                              network_security_group_ids: Optional[Sequence[str]] = None,
                                              private_source_dns_zones: Optional[Sequence[_analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs]] = None,
                                              private_source_scan_hosts: Optional[Sequence[_analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs]] = None,
                                              subnet_id: Optional[str] = None,
                                              vcn_id: Optional[str] = None)
    @overload
    def AnalyticsInstancePrivateAccessChannel(resource_name: str,
                                              args: AnalyticsInstancePrivateAccessChannelArgs,
                                              opts: Optional[ResourceOptions] = None)
    func NewAnalyticsInstancePrivateAccessChannel(ctx *Context, name string, args AnalyticsInstancePrivateAccessChannelArgs, opts ...ResourceOption) (*AnalyticsInstancePrivateAccessChannel, error)
    public AnalyticsInstancePrivateAccessChannel(string name, AnalyticsInstancePrivateAccessChannelArgs args, CustomResourceOptions? opts = null)
    public AnalyticsInstancePrivateAccessChannel(String name, AnalyticsInstancePrivateAccessChannelArgs args)
    public AnalyticsInstancePrivateAccessChannel(String name, AnalyticsInstancePrivateAccessChannelArgs args, CustomResourceOptions options)
    
    type: oci:Analytics:AnalyticsInstancePrivateAccessChannel
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AnalyticsInstancePrivateAccessChannelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AnalyticsInstancePrivateAccessChannelArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AnalyticsInstancePrivateAccessChannelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AnalyticsInstancePrivateAccessChannelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AnalyticsInstancePrivateAccessChannelArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AnalyticsInstancePrivateAccessChannel Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AnalyticsInstancePrivateAccessChannel resource accepts the following input properties:

    AnalyticsInstanceId string
    The OCID of the AnalyticsInstance.
    DisplayName string
    (Updatable) Display Name of the Private Access Channel.
    PrivateSourceDnsZones List<AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZone>
    (Updatable) 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.
    SubnetId string
    (Updatable) OCID of the customer subnet connected to private access channel.
    VcnId string

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    NetworkSecurityGroupIds List<string>
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    PrivateSourceScanHosts List<AnalyticsInstancePrivateAccessChannelPrivateSourceScanHost>
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    AnalyticsInstanceId string
    The OCID of the AnalyticsInstance.
    DisplayName string
    (Updatable) Display Name of the Private Access Channel.
    PrivateSourceDnsZones []AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs
    (Updatable) 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.
    SubnetId string
    (Updatable) OCID of the customer subnet connected to private access channel.
    VcnId string

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    NetworkSecurityGroupIds []string
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    PrivateSourceScanHosts []AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    analyticsInstanceId String
    The OCID of the AnalyticsInstance.
    displayName String
    (Updatable) Display Name of the Private Access Channel.
    privateSourceDnsZones List<InstancePrivateAccessChannelPrivateSourceDnsZone>
    (Updatable) 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.
    subnetId String
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcnId String

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    networkSecurityGroupIds List<String>
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    privateSourceScanHosts List<InstancePrivateAccessChannelPrivateSourceScanHost>
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    analyticsInstanceId string
    The OCID of the AnalyticsInstance.
    displayName string
    (Updatable) Display Name of the Private Access Channel.
    privateSourceDnsZones AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZone[]
    (Updatable) 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.
    subnetId string
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcnId string

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    networkSecurityGroupIds string[]
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    privateSourceScanHosts AnalyticsInstancePrivateAccessChannelPrivateSourceScanHost[]
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    analytics_instance_id str
    The OCID of the AnalyticsInstance.
    display_name str
    (Updatable) Display Name of the Private Access Channel.
    private_source_dns_zones AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs]
    (Updatable) 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.
    subnet_id str
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcn_id str

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    network_security_group_ids Sequence[str]
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    private_source_scan_hosts AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs]
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    analyticsInstanceId String
    The OCID of the AnalyticsInstance.
    displayName String
    (Updatable) Display Name of the Private Access Channel.
    privateSourceDnsZones List<Property Map>
    (Updatable) 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.
    subnetId String
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcnId String

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    networkSecurityGroupIds List<String>
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    privateSourceScanHosts List<Property Map>
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AnalyticsInstancePrivateAccessChannel resource produces the following output properties:

    EgressSourceIpAddresses 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.
    Id string
    The provider-assigned unique ID for this managed resource.
    IpAddress string
    IP Address of the Private Access channel.
    Key string
    Private Access Channel unique identifier key.
    EgressSourceIpAddresses []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.
    Id string
    The provider-assigned unique ID for this managed resource.
    IpAddress string
    IP Address of the Private Access channel.
    Key string
    Private Access Channel unique identifier key.
    egressSourceIpAddresses 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.
    id String
    The provider-assigned unique ID for this managed resource.
    ipAddress String
    IP Address of the Private Access channel.
    key String
    Private Access Channel unique identifier key.
    egressSourceIpAddresses 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.
    id string
    The provider-assigned unique ID for this managed resource.
    ipAddress string
    IP Address of the Private Access channel.
    key string
    Private Access Channel unique identifier key.
    egress_source_ip_addresses Sequence[str]
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    ip_address str
    IP Address of the Private Access channel.
    key str
    Private Access Channel unique identifier key.
    egressSourceIpAddresses 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.
    id String
    The provider-assigned unique ID for this managed resource.
    ipAddress String
    IP Address of the Private Access channel.
    key String
    Private Access Channel unique identifier key.

    Look up Existing AnalyticsInstancePrivateAccessChannel Resource

    Get an existing AnalyticsInstancePrivateAccessChannel resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AnalyticsInstancePrivateAccessChannelState, opts?: CustomResourceOptions): AnalyticsInstancePrivateAccessChannel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            analytics_instance_id: Optional[str] = None,
            display_name: Optional[str] = None,
            egress_source_ip_addresses: Optional[Sequence[str]] = None,
            ip_address: Optional[str] = None,
            key: Optional[str] = None,
            network_security_group_ids: Optional[Sequence[str]] = None,
            private_source_dns_zones: Optional[Sequence[_analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs]] = None,
            private_source_scan_hosts: Optional[Sequence[_analytics.AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs]] = None,
            subnet_id: Optional[str] = None,
            vcn_id: Optional[str] = None) -> AnalyticsInstancePrivateAccessChannel
    func GetAnalyticsInstancePrivateAccessChannel(ctx *Context, name string, id IDInput, state *AnalyticsInstancePrivateAccessChannelState, opts ...ResourceOption) (*AnalyticsInstancePrivateAccessChannel, error)
    public static AnalyticsInstancePrivateAccessChannel Get(string name, Input<string> id, AnalyticsInstancePrivateAccessChannelState? state, CustomResourceOptions? opts = null)
    public static AnalyticsInstancePrivateAccessChannel get(String name, Output<String> id, AnalyticsInstancePrivateAccessChannelState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AnalyticsInstanceId string
    The OCID of the AnalyticsInstance.
    DisplayName string
    (Updatable) Display Name of the Private Access Channel.
    EgressSourceIpAddresses 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.
    IpAddress string
    IP Address of the Private Access channel.
    Key string
    Private Access Channel unique identifier key.
    NetworkSecurityGroupIds List<string>
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    PrivateSourceDnsZones List<AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZone>
    (Updatable) 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 List<AnalyticsInstancePrivateAccessChannelPrivateSourceScanHost>
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    SubnetId string
    (Updatable) OCID of the customer subnet connected to private access channel.
    VcnId string

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AnalyticsInstanceId string
    The OCID of the AnalyticsInstance.
    DisplayName string
    (Updatable) Display Name of the Private Access Channel.
    EgressSourceIpAddresses []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.
    IpAddress string
    IP Address of the Private Access channel.
    Key string
    Private Access Channel unique identifier key.
    NetworkSecurityGroupIds []string
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    PrivateSourceDnsZones []AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs
    (Updatable) 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 []AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    SubnetId string
    (Updatable) OCID of the customer subnet connected to private access channel.
    VcnId string

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    analyticsInstanceId String
    The OCID of the AnalyticsInstance.
    displayName String
    (Updatable) Display Name of the Private Access Channel.
    egressSourceIpAddresses 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.
    ipAddress String
    IP Address of the Private Access channel.
    key String
    Private Access Channel unique identifier key.
    networkSecurityGroupIds List<String>
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    privateSourceDnsZones List<InstancePrivateAccessChannelPrivateSourceDnsZone>
    (Updatable) 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 List<InstancePrivateAccessChannelPrivateSourceScanHost>
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    subnetId String
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcnId String

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    analyticsInstanceId string
    The OCID of the AnalyticsInstance.
    displayName string
    (Updatable) Display Name of the Private Access Channel.
    egressSourceIpAddresses 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.
    ipAddress string
    IP Address of the Private Access channel.
    key string
    Private Access Channel unique identifier key.
    networkSecurityGroupIds string[]
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    privateSourceDnsZones AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZone[]
    (Updatable) 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 AnalyticsInstancePrivateAccessChannelPrivateSourceScanHost[]
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    subnetId string
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcnId string

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    analytics_instance_id str
    The OCID of the AnalyticsInstance.
    display_name str
    (Updatable) Display Name of the Private Access Channel.
    egress_source_ip_addresses Sequence[str]
    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.
    ip_address str
    IP Address of the Private Access channel.
    key str
    Private Access Channel unique identifier key.
    network_security_group_ids Sequence[str]
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    private_source_dns_zones AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs]
    (Updatable) 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.
    private_source_scan_hosts AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs]
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    subnet_id str
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcn_id str

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    analyticsInstanceId String
    The OCID of the AnalyticsInstance.
    displayName String
    (Updatable) Display Name of the Private Access Channel.
    egressSourceIpAddresses 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.
    ipAddress String
    IP Address of the Private Access channel.
    key String
    Private Access Channel unique identifier key.
    networkSecurityGroupIds List<String>
    (Updatable) Network Security Group OCIDs for an Analytics instance.
    privateSourceDnsZones List<Property Map>
    (Updatable) 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 List<Property Map>
    (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
    subnetId String
    (Updatable) OCID of the customer subnet connected to private access channel.
    vcnId String

    (Updatable) OCID of the customer VCN peered with private access channel.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Supporting Types

    AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZone, AnalyticsInstancePrivateAccessChannelPrivateSourceDnsZoneArgs

    DnsZone string
    (Updatable) Private Source DNS Zone. Ex: example-vcn.oraclevcn.com, corp.example.com.
    Description string
    (Updatable) Description of private source scan host zone.
    DnsZone string
    (Updatable) Private Source DNS Zone. Ex: example-vcn.oraclevcn.com, corp.example.com.
    Description string
    (Updatable) Description of private source scan host zone.
    dnsZone String
    (Updatable) Private Source DNS Zone. Ex: example-vcn.oraclevcn.com, corp.example.com.
    description String
    (Updatable) Description of private source scan host zone.
    dnsZone string
    (Updatable) Private Source DNS Zone. Ex: example-vcn.oraclevcn.com, corp.example.com.
    description string
    (Updatable) Description of private source scan host zone.
    dns_zone str
    (Updatable) Private Source DNS Zone. Ex: example-vcn.oraclevcn.com, corp.example.com.
    description str
    (Updatable) Description of private source scan host zone.
    dnsZone String
    (Updatable) Private Source DNS Zone. Ex: example-vcn.oraclevcn.com, corp.example.com.
    description String
    (Updatable) Description of private source scan host zone.

    AnalyticsInstancePrivateAccessChannelPrivateSourceScanHost, AnalyticsInstancePrivateAccessChannelPrivateSourceScanHostArgs

    ScanHostname string
    (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
    ScanPort int
    (Updatable) Private Source Scan host port. This is the source port where SCAN protocol will get connected (e.g. 1521).
    Description string
    (Updatable) Description of private source scan host zone.
    ScanHostname string
    (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
    ScanPort int
    (Updatable) Private Source Scan host port. This is the source port where SCAN protocol will get connected (e.g. 1521).
    Description string
    (Updatable) Description of private source scan host zone.
    scanHostname String
    (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
    scanPort Integer
    (Updatable) Private Source Scan host port. This is the source port where SCAN protocol will get connected (e.g. 1521).
    description String
    (Updatable) Description of private source scan host zone.
    scanHostname string
    (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
    scanPort number
    (Updatable) Private Source Scan host port. This is the source port where SCAN protocol will get connected (e.g. 1521).
    description string
    (Updatable) Description of private source scan host zone.
    scan_hostname str
    (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
    scan_port int
    (Updatable) Private Source Scan host port. This is the source port where SCAN protocol will get connected (e.g. 1521).
    description str
    (Updatable) Description of private source scan host zone.
    scanHostname String
    (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
    scanPort Number
    (Updatable) Private Source Scan host port. This is the source port where SCAN protocol will get connected (e.g. 1521).
    description String
    (Updatable) Description of private source scan host zone.

    Import

    AnalyticsInstancePrivateAccessChannels can be imported using the id, e.g.

    $ pulumi import oci:Analytics/analyticsInstancePrivateAccessChannel:AnalyticsInstancePrivateAccessChannel test_analytics_instance_private_access_channel "analyticsInstances/{analyticsInstanceId}/privateAccessChannels/{privateAccessChannelKey}"
    

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi