oci.ResourceManager.PrivateEndpoint
Explore with Pulumi AI
This resource provides the Private Endpoint resource in Oracle Cloud Infrastructure Resource Manager service.
Creates a a private endpoint in the specified compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPrivateEndpoint = new oci.resourcemanager.PrivateEndpoint("test_private_endpoint", {
compartmentId: compartmentId,
displayName: privateEndpointDisplayName,
subnetId: testSubnet.id,
vcnId: testVcn.id,
definedTags: {
"Operations.CostCenter": "42",
},
description: privateEndpointDescription,
dnsZones: privateEndpointDnsZones,
freeformTags: {
Department: "Finance",
},
isUsedWithConfigurationSourceProvider: privateEndpointIsUsedWithConfigurationSourceProvider,
nsgIdLists: privateEndpointNsgIdList,
});
import pulumi
import pulumi_oci as oci
test_private_endpoint = oci.resource_manager.PrivateEndpoint("test_private_endpoint",
compartment_id=compartment_id,
display_name=private_endpoint_display_name,
subnet_id=test_subnet["id"],
vcn_id=test_vcn["id"],
defined_tags={
"Operations.CostCenter": "42",
},
description=private_endpoint_description,
dns_zones=private_endpoint_dns_zones,
freeform_tags={
"Department": "Finance",
},
is_used_with_configuration_source_provider=private_endpoint_is_used_with_configuration_source_provider,
nsg_id_lists=private_endpoint_nsg_id_list)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/ResourceManager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ResourceManager.NewPrivateEndpoint(ctx, "test_private_endpoint", &ResourceManager.PrivateEndpointArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(privateEndpointDisplayName),
SubnetId: pulumi.Any(testSubnet.Id),
VcnId: pulumi.Any(testVcn.Id),
DefinedTags: pulumi.Map{
"Operations.CostCenter": pulumi.Any("42"),
},
Description: pulumi.Any(privateEndpointDescription),
DnsZones: pulumi.Any(privateEndpointDnsZones),
FreeformTags: pulumi.Map{
"Department": pulumi.Any("Finance"),
},
IsUsedWithConfigurationSourceProvider: pulumi.Any(privateEndpointIsUsedWithConfigurationSourceProvider),
NsgIdLists: pulumi.Any(privateEndpointNsgIdList),
})
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 testPrivateEndpoint = new Oci.ResourceManager.PrivateEndpoint("test_private_endpoint", new()
{
CompartmentId = compartmentId,
DisplayName = privateEndpointDisplayName,
SubnetId = testSubnet.Id,
VcnId = testVcn.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = privateEndpointDescription,
DnsZones = privateEndpointDnsZones,
FreeformTags =
{
{ "Department", "Finance" },
},
IsUsedWithConfigurationSourceProvider = privateEndpointIsUsedWithConfigurationSourceProvider,
NsgIdLists = privateEndpointNsgIdList,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ResourceManager.PrivateEndpoint;
import com.pulumi.oci.ResourceManager.PrivateEndpointArgs;
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 testPrivateEndpoint = new PrivateEndpoint("testPrivateEndpoint", PrivateEndpointArgs.builder()
.compartmentId(compartmentId)
.displayName(privateEndpointDisplayName)
.subnetId(testSubnet.id())
.vcnId(testVcn.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(privateEndpointDescription)
.dnsZones(privateEndpointDnsZones)
.freeformTags(Map.of("Department", "Finance"))
.isUsedWithConfigurationSourceProvider(privateEndpointIsUsedWithConfigurationSourceProvider)
.nsgIdLists(privateEndpointNsgIdList)
.build());
}
}
resources:
testPrivateEndpoint:
type: oci:ResourceManager:PrivateEndpoint
name: test_private_endpoint
properties:
compartmentId: ${compartmentId}
displayName: ${privateEndpointDisplayName}
subnetId: ${testSubnet.id}
vcnId: ${testVcn.id}
definedTags:
Operations.CostCenter: '42'
description: ${privateEndpointDescription}
dnsZones: ${privateEndpointDnsZones}
freeformTags:
Department: Finance
isUsedWithConfigurationSourceProvider: ${privateEndpointIsUsedWithConfigurationSourceProvider}
nsgIdLists: ${privateEndpointNsgIdList}
Create PrivateEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PrivateEndpoint(name: string, args: PrivateEndpointArgs, opts?: CustomResourceOptions);
@overload
def PrivateEndpoint(resource_name: str,
args: PrivateEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PrivateEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
subnet_id: Optional[str] = None,
vcn_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
dns_zones: Optional[Sequence[str]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_used_with_configuration_source_provider: Optional[bool] = None,
nsg_id_lists: Optional[Sequence[str]] = None)
func NewPrivateEndpoint(ctx *Context, name string, args PrivateEndpointArgs, opts ...ResourceOption) (*PrivateEndpoint, error)
public PrivateEndpoint(string name, PrivateEndpointArgs args, CustomResourceOptions? opts = null)
public PrivateEndpoint(String name, PrivateEndpointArgs args)
public PrivateEndpoint(String name, PrivateEndpointArgs args, CustomResourceOptions options)
type: oci:ResourceManager:PrivateEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PrivateEndpointArgs
- 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 PrivateEndpointArgs
- 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 PrivateEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint = new Oci.ResourceManager.PrivateEndpoint("exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint", new()
{
CompartmentId = "string",
DisplayName = "string",
SubnetId = "string",
VcnId = "string",
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
DnsZones = new[]
{
"string",
},
FreeformTags =
{
{ "string", "any" },
},
IsUsedWithConfigurationSourceProvider = false,
NsgIdLists = new[]
{
"string",
},
});
example, err := ResourceManager.NewPrivateEndpoint(ctx, "exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint", &ResourceManager.PrivateEndpointArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
SubnetId: pulumi.String("string"),
VcnId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
DnsZones: pulumi.StringArray{
pulumi.String("string"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
IsUsedWithConfigurationSourceProvider: pulumi.Bool(false),
NsgIdLists: pulumi.StringArray{
pulumi.String("string"),
},
})
var exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint = new PrivateEndpoint("exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint", PrivateEndpointArgs.builder()
.compartmentId("string")
.displayName("string")
.subnetId("string")
.vcnId("string")
.definedTags(Map.of("string", "any"))
.description("string")
.dnsZones("string")
.freeformTags(Map.of("string", "any"))
.isUsedWithConfigurationSourceProvider(false)
.nsgIdLists("string")
.build());
exampleprivate_endpoint_resource_resource_from_resource_managerprivate_endpoint = oci.resource_manager.PrivateEndpoint("exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint",
compartment_id="string",
display_name="string",
subnet_id="string",
vcn_id="string",
defined_tags={
"string": "any",
},
description="string",
dns_zones=["string"],
freeform_tags={
"string": "any",
},
is_used_with_configuration_source_provider=False,
nsg_id_lists=["string"])
const exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint = new oci.resourcemanager.PrivateEndpoint("exampleprivateEndpointResourceResourceFromResourceManagerprivateEndpoint", {
compartmentId: "string",
displayName: "string",
subnetId: "string",
vcnId: "string",
definedTags: {
string: "any",
},
description: "string",
dnsZones: ["string"],
freeformTags: {
string: "any",
},
isUsedWithConfigurationSourceProvider: false,
nsgIdLists: ["string"],
});
type: oci:ResourceManager:PrivateEndpoint
properties:
compartmentId: string
definedTags:
string: any
description: string
displayName: string
dnsZones:
- string
freeformTags:
string: any
isUsedWithConfigurationSourceProvider: false
nsgIdLists:
- string
subnetId: string
vcnId: string
PrivateEndpoint 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 PrivateEndpoint resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment containing this private endpoint details.
- Display
Name string - (Updatable) The private endpoint display name. Avoid entering confidential information.
- Subnet
Id string - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- Vcn
Id string (Updatable) The OCID of the VCN for the private endpoint.
** 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
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- Dns
Zones List<string> - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Dictionary<string, object>
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Used boolWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - Nsg
Id List<string>Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- Compartment
Id string - (Updatable) The OCID of the compartment containing this private endpoint details.
- Display
Name string - (Updatable) The private endpoint display name. Avoid entering confidential information.
- Subnet
Id string - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- Vcn
Id string (Updatable) The OCID of the VCN for the private endpoint.
** 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
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- Dns
Zones []string - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- map[string]interface{}
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Used boolWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - Nsg
Id []stringLists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- compartment
Id String - (Updatable) The OCID of the compartment containing this private endpoint details.
- display
Name String - (Updatable) The private endpoint display name. Avoid entering confidential information.
- subnet
Id String - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- vcn
Id String (Updatable) The OCID of the VCN for the private endpoint.
** 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
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- dns
Zones List<String> - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Map<String,Object>
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Used BooleanWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg
Id List<String>Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- compartment
Id string - (Updatable) The OCID of the compartment containing this private endpoint details.
- display
Name string - (Updatable) The private endpoint display name. Avoid entering confidential information.
- subnet
Id string - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- vcn
Id string (Updatable) The OCID of the VCN for the private endpoint.
** 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
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- dns
Zones string[] - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- {[key: string]: any}
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Used booleanWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg
Id string[]Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- compartment_
id str - (Updatable) The OCID of the compartment containing this private endpoint details.
- display_
name str - (Updatable) The private endpoint display name. Avoid entering confidential information.
- subnet_
id str - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- vcn_
id str (Updatable) The OCID of the VCN for the private endpoint.
** 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
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- dns_
zones Sequence[str] - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Mapping[str, Any]
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is_
used_ boolwith_ configuration_ source_ provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg_
id_ Sequence[str]lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- compartment
Id String - (Updatable) The OCID of the compartment containing this private endpoint details.
- display
Name String - (Updatable) The private endpoint display name. Avoid entering confidential information.
- subnet
Id String - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- vcn
Id String (Updatable) The OCID of the VCN for the private endpoint.
** 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
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- dns
Zones List<String> - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Map<Any>
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Used BooleanWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg
Id List<String>Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateEndpoint resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Source
Ips List<string> - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- State string
- The current lifecycle state of the private endpoint.
- Time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- Id string
- The provider-assigned unique ID for this managed resource.
- Source
Ips []string - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- State string
- The current lifecycle state of the private endpoint.
- Time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- source
Ips List<String> - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state String
- The current lifecycle state of the private endpoint.
- time
Created String - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- id string
- The provider-assigned unique ID for this managed resource.
- source
Ips string[] - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state string
- The current lifecycle state of the private endpoint.
- time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- id str
- The provider-assigned unique ID for this managed resource.
- source_
ips Sequence[str] - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state str
- The current lifecycle state of the private endpoint.
- time_
created str - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- source
Ips List<String> - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state String
- The current lifecycle state of the private endpoint.
- time
Created String - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
Look up Existing PrivateEndpoint Resource
Get an existing PrivateEndpoint 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?: PrivateEndpointState, opts?: CustomResourceOptions): PrivateEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
dns_zones: Optional[Sequence[str]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_used_with_configuration_source_provider: Optional[bool] = None,
nsg_id_lists: Optional[Sequence[str]] = None,
source_ips: Optional[Sequence[str]] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
time_created: Optional[str] = None,
vcn_id: Optional[str] = None) -> PrivateEndpoint
func GetPrivateEndpoint(ctx *Context, name string, id IDInput, state *PrivateEndpointState, opts ...ResourceOption) (*PrivateEndpoint, error)
public static PrivateEndpoint Get(string name, Input<string> id, PrivateEndpointState? state, CustomResourceOptions? opts = null)
public static PrivateEndpoint get(String name, Output<String> id, PrivateEndpointState 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.
- Compartment
Id string - (Updatable) The OCID of the compartment containing this private endpoint details.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- Display
Name string - (Updatable) The private endpoint display name. Avoid entering confidential information.
- Dns
Zones List<string> - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Dictionary<string, object>
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Used boolWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - Nsg
Id List<string>Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- Source
Ips List<string> - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- State string
- The current lifecycle state of the private endpoint.
- Subnet
Id string - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- Time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- Vcn
Id string (Updatable) The OCID of the VCN for the private endpoint.
** 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
- Compartment
Id string - (Updatable) The OCID of the compartment containing this private endpoint details.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- Display
Name string - (Updatable) The private endpoint display name. Avoid entering confidential information.
- Dns
Zones []string - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- map[string]interface{}
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Is
Used boolWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - Nsg
Id []stringLists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- Source
Ips []string - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- State string
- The current lifecycle state of the private endpoint.
- Subnet
Id string - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- Time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- Vcn
Id string (Updatable) The OCID of the VCN for the private endpoint.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing this private endpoint details.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- display
Name String - (Updatable) The private endpoint display name. Avoid entering confidential information.
- dns
Zones List<String> - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Map<String,Object>
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Used BooleanWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg
Id List<String>Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- source
Ips List<String> - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state String
- The current lifecycle state of the private endpoint.
- subnet
Id String - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- time
Created String - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- vcn
Id String (Updatable) The OCID of the VCN for the private endpoint.
** 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
- compartment
Id string - (Updatable) The OCID of the compartment containing this private endpoint details.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- display
Name string - (Updatable) The private endpoint display name. Avoid entering confidential information.
- dns
Zones string[] - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- {[key: string]: any}
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Used booleanWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg
Id string[]Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- source
Ips string[] - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state string
- The current lifecycle state of the private endpoint.
- subnet
Id string - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- vcn
Id string (Updatable) The OCID of the VCN for the private endpoint.
** 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
- compartment_
id str - (Updatable) The OCID of the compartment containing this private endpoint details.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- display_
name str - (Updatable) The private endpoint display name. Avoid entering confidential information.
- dns_
zones Sequence[str] - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Mapping[str, Any]
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is_
used_ boolwith_ configuration_ source_ provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg_
id_ Sequence[str]lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- source_
ips Sequence[str] - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state str
- The current lifecycle state of the private endpoint.
- subnet_
id str - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- time_
created str - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- vcn_
id str (Updatable) The OCID of the VCN for the private endpoint.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing this private endpoint details.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) Description of the private endpoint. Avoid entering confidential information.
- display
Name String - (Updatable) The private endpoint display name. Avoid entering confidential information.
- dns
Zones List<String> - (Updatable) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.
- Map<Any>
- (Updatable) Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- is
Used BooleanWith Configuration Source Provider - (Updatable) When
true
, allows the private endpoint to be used with a configuration source provider. - nsg
Id List<String>Lists - (Updatable) An array of network security group (NSG) OCIDs for the private endpoint. Order does not matter.
- source
Ips List<String> - The source IPs which resource manager service will use to connect to customer's network. Automatically assigned by Resource Manager Service.
- state String
- The current lifecycle state of the private endpoint.
- subnet
Id String - (Updatable) The OCID of the subnet within the VCN for the private endpoint.
- time
Created String - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z
- vcn
Id String (Updatable) The OCID of the VCN for the private endpoint.
** 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
Import
PrivateEndpoints can be imported using the id
, e.g.
$ pulumi import oci:ResourceManager/privateEndpoint:PrivateEndpoint test_private_endpoint "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.