Oracle Cloud Infrastructure v0.20.0, May 31 23
Oracle Cloud Infrastructure v0.20.0, May 31 23
oci.Analytics.AnalyticsInstancePrivateAccessChannel
Explore with Pulumi AI
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
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 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
})
}
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());
}
}
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=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
description=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
)],
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=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
scan_port=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
description=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
)])
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,
}],
});
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:
- Analytics
Instance stringId The OCID of the AnalyticsInstance.
- Display
Name string (Updatable) Display Name of the Private Access Channel.
- Private
Source List<AnalyticsDns Zones Instance Private Access Channel Private Source Dns Zone Args> (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 string (Updatable) OCID of the customer subnet connected to private access channel.
- Vcn
Id 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
- Network
Security List<string>Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- Private
Source List<AnalyticsScan Hosts Instance Private Access Channel Private Source Scan Host Args> (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- Analytics
Instance stringId The OCID of the AnalyticsInstance.
- Display
Name string (Updatable) Display Name of the Private Access Channel.
- Private
Source []AnalyticsDns Zones Instance Private Access Channel Private Source Dns Zone Args (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 string (Updatable) OCID of the customer subnet connected to private access channel.
- Vcn
Id 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
- Network
Security []stringGroup Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- Private
Source []AnalyticsScan Hosts Instance Private Access Channel Private Source Scan Host Args (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- analytics
Instance StringId The OCID of the AnalyticsInstance.
- display
Name String (Updatable) Display Name of the Private Access Channel.
- private
Source List<InstanceDns Zones Private Access Channel Private Source Dns Zone Args> (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 String (Updatable) OCID of the customer subnet connected to private access channel.
- vcn
Id 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
- network
Security List<String>Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private
Source List<InstanceScan Hosts Private Access Channel Private Source Scan Host Args> (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- analytics
Instance stringId The OCID of the AnalyticsInstance.
- display
Name string (Updatable) Display Name of the Private Access Channel.
- private
Source AnalyticsDns Zones Instance Private Access Channel Private Source Dns Zone Args[] (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 string (Updatable) OCID of the customer subnet connected to private access channel.
- vcn
Id 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
- network
Security string[]Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private
Source AnalyticsScan Hosts Instance Private Access Channel Private Source Scan Host Args[] (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- analytics_
instance_ strid The OCID of the AnalyticsInstance.
- display_
name str (Updatable) Display Name of the Private Access Channel.
- private_
source_ Analyticsdns_ zones Instance Private Access Channel Private Source Dns Zone Args] (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_ Sequence[str]group_ ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private_
source_ Analyticsscan_ hosts Instance Private Access Channel Private Source Scan Host Args] (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- analytics
Instance StringId The OCID of the AnalyticsInstance.
- display
Name String (Updatable) Display Name of the Private Access Channel.
- private
Source List<Property Map>Dns Zones (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 String (Updatable) OCID of the customer subnet connected to private access channel.
- vcn
Id 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
- network
Security List<String>Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private
Source List<Property Map>Scan Hosts (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:
- Egress
Source List<string>Ip Addresses 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.
- Ip
Address string IP Address of the Private Access channel.
- Key string
Private Access Channel unique identifier key.
- Egress
Source []stringIp Addresses 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.
- Ip
Address string IP Address of the Private Access channel.
- Key string
Private Access Channel unique identifier key.
- egress
Source List<String>Ip Addresses 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.
- ip
Address String IP Address of the Private Access channel.
- key String
Private Access Channel unique identifier key.
- egress
Source string[]Ip Addresses 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.
- ip
Address string IP Address of the Private Access channel.
- key string
Private Access Channel unique identifier key.
- egress_
source_ Sequence[str]ip_ addresses 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.
- egress
Source List<String>Ip Addresses 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.
- ip
Address 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.
- Analytics
Instance stringId The OCID of the AnalyticsInstance.
- Display
Name string (Updatable) Display Name of the Private Access Channel.
- Egress
Source List<string>Ip Addresses 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 string IP Address of the Private Access channel.
- Key string
Private Access Channel unique identifier key.
- Network
Security List<string>Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- Private
Source List<AnalyticsDns Zones Instance Private Access Channel Private Source Dns Zone Args> (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 List<AnalyticsScan Hosts Instance Private Access Channel Private Source Scan Host Args> (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- Subnet
Id string (Updatable) OCID of the customer subnet connected to private access channel.
- Vcn
Id 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 stringId The OCID of the AnalyticsInstance.
- Display
Name string (Updatable) Display Name of the Private Access Channel.
- Egress
Source []stringIp Addresses 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 string IP Address of the Private Access channel.
- Key string
Private Access Channel unique identifier key.
- Network
Security []stringGroup Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- Private
Source []AnalyticsDns Zones Instance Private Access Channel Private Source Dns Zone Args (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 []AnalyticsScan Hosts Instance Private Access Channel Private Source Scan Host Args (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- Subnet
Id string (Updatable) OCID of the customer subnet connected to private access channel.
- Vcn
Id 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 StringId The OCID of the AnalyticsInstance.
- display
Name String (Updatable) Display Name of the Private Access Channel.
- egress
Source List<String>Ip Addresses 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 String IP Address of the Private Access channel.
- key String
Private Access Channel unique identifier key.
- network
Security List<String>Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private
Source List<InstanceDns Zones Private Access Channel Private Source Dns Zone Args> (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 List<InstanceScan Hosts Private Access Channel Private Source Scan Host Args> (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- subnet
Id String (Updatable) OCID of the customer subnet connected to private access channel.
- vcn
Id 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 stringId The OCID of the AnalyticsInstance.
- display
Name string (Updatable) Display Name of the Private Access Channel.
- egress
Source string[]Ip Addresses 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 string IP Address of the Private Access channel.
- key string
Private Access Channel unique identifier key.
- network
Security string[]Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private
Source AnalyticsDns Zones Instance Private Access Channel Private Source Dns Zone Args[] (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 AnalyticsScan Hosts Instance Private Access Channel Private Source Scan Host Args[] (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- subnet
Id string (Updatable) OCID of the customer subnet connected to private access channel.
- vcn
Id 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_ strid The OCID of the AnalyticsInstance.
- display_
name str (Updatable) Display Name of the Private Access Channel.
- egress_
source_ Sequence[str]ip_ addresses 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_ Sequence[str]group_ ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private_
source_ Analyticsdns_ zones Instance Private Access Channel Private Source Dns Zone Args] (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_ Analyticsscan_ hosts Instance Private Access Channel Private Source Scan Host Args] (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
- analytics
Instance StringId The OCID of the AnalyticsInstance.
- display
Name String (Updatable) Display Name of the Private Access Channel.
- egress
Source List<String>Ip Addresses 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 String IP Address of the Private Access channel.
- key String
Private Access Channel unique identifier key.
- network
Security List<String>Group Ids (Updatable) Network Security Group OCIDs for an Analytics instance.
- private
Source List<Property Map>Dns Zones (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 List<Property Map>Scan Hosts (Updatable) List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance.
- subnet
Id String (Updatable) OCID of the customer subnet connected to private access channel.
- vcn
Id 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
- Dns
Zone 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 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 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 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.
- dns
Zone 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
- Scan
Hostname string (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 string
(Updatable) Description of private source scan host zone.
- Scan
Hostname string (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 string
(Updatable) Description of private source scan host zone.
- scan
Hostname String (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
- scan
Port 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.
- scan
Hostname string (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
- scan
Port 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.
- scan
Hostname String (Updatable) Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.
- scan
Port 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.