oci.GloballyDistributedDatabase.PrivateEndpoint
Explore with Pulumi AI
This resource provides the Private Endpoint resource in Oracle Cloud Infrastructure Globally Distributed Database service.
Creates a PrivateEndpoint.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPrivateEndpoint = new oci.globallydistributeddatabase.PrivateEndpoint("test_private_endpoint", {
compartmentId: compartmentId,
displayName: privateEndpointDisplayName,
subnetId: testSubnet.id,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: privateEndpointDescription,
freeformTags: {
"bar-key": "value",
},
nsgIds: privateEndpointNsgIds,
});
import pulumi
import pulumi_oci as oci
test_private_endpoint = oci.globally_distributed_database.PrivateEndpoint("test_private_endpoint",
compartment_id=compartment_id,
display_name=private_endpoint_display_name,
subnet_id=test_subnet["id"],
defined_tags={
"foo-namespace.bar-key": "value",
},
description=private_endpoint_description,
freeform_tags={
"bar-key": "value",
},
nsg_ids=private_endpoint_nsg_ids)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/GloballyDistributedDatabase"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := GloballyDistributedDatabase.NewPrivateEndpoint(ctx, "test_private_endpoint", &GloballyDistributedDatabase.PrivateEndpointArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(privateEndpointDisplayName),
SubnetId: pulumi.Any(testSubnet.Id),
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
Description: pulumi.Any(privateEndpointDescription),
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
NsgIds: pulumi.Any(privateEndpointNsgIds),
})
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.GloballyDistributedDatabase.PrivateEndpoint("test_private_endpoint", new()
{
CompartmentId = compartmentId,
DisplayName = privateEndpointDisplayName,
SubnetId = testSubnet.Id,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = privateEndpointDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
NsgIds = privateEndpointNsgIds,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GloballyDistributedDatabase.PrivateEndpoint;
import com.pulumi.oci.GloballyDistributedDatabase.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())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(privateEndpointDescription)
.freeformTags(Map.of("bar-key", "value"))
.nsgIds(privateEndpointNsgIds)
.build());
}
}
resources:
testPrivateEndpoint:
type: oci:GloballyDistributedDatabase:PrivateEndpoint
name: test_private_endpoint
properties:
compartmentId: ${compartmentId}
displayName: ${privateEndpointDisplayName}
subnetId: ${testSubnet.id}
definedTags:
foo-namespace.bar-key: value
description: ${privateEndpointDescription}
freeformTags:
bar-key: value
nsgIds: ${privateEndpointNsgIds}
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,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
nsg_ids: 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:GloballyDistributedDatabase: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 exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint = new Oci.GloballyDistributedDatabase.PrivateEndpoint("exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint", new()
{
CompartmentId = "string",
DisplayName = "string",
SubnetId = "string",
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
FreeformTags =
{
{ "string", "string" },
},
NsgIds = new[]
{
"string",
},
});
example, err := GloballyDistributedDatabase.NewPrivateEndpoint(ctx, "exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint", &GloballyDistributedDatabase.PrivateEndpointArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
SubnetId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
})
var exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint = new PrivateEndpoint("exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint", PrivateEndpointArgs.builder()
.compartmentId("string")
.displayName("string")
.subnetId("string")
.definedTags(Map.of("string", "string"))
.description("string")
.freeformTags(Map.of("string", "string"))
.nsgIds("string")
.build());
exampleprivate_endpoint_resource_resource_from_globally_distributed_databaseprivate_endpoint = oci.globally_distributed_database.PrivateEndpoint("exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint",
compartment_id="string",
display_name="string",
subnet_id="string",
defined_tags={
"string": "string",
},
description="string",
freeform_tags={
"string": "string",
},
nsg_ids=["string"])
const exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint = new oci.globallydistributeddatabase.PrivateEndpoint("exampleprivateEndpointResourceResourceFromGloballyDistributedDatabaseprivateEndpoint", {
compartmentId: "string",
displayName: "string",
subnetId: "string",
definedTags: {
string: "string",
},
description: "string",
freeformTags: {
string: "string",
},
nsgIds: ["string"],
});
type: oci:GloballyDistributedDatabase:PrivateEndpoint
properties:
compartmentId: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
nsgIds:
- string
subnetId: 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) Identifier of the compartment where private endpoint is to be created.
- Display
Name string - (Updatable) Private endpoint display name.
- Subnet
Id string Identifier of the customer subnet against which private endpoint is to be created.
** 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, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) PrivateEndpoint description.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Nsg
Ids List<string> - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- Compartment
Id string - (Updatable) Identifier of the compartment where private endpoint is to be created.
- Display
Name string - (Updatable) Private endpoint display name.
- Subnet
Id string Identifier of the customer subnet against which private endpoint is to be created.
** 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]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) PrivateEndpoint description.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Nsg
Ids []string - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- compartment
Id String - (Updatable) Identifier of the compartment where private endpoint is to be created.
- display
Name String - (Updatable) Private endpoint display name.
- subnet
Id String Identifier of the customer subnet against which private endpoint is to be created.
** 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,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) PrivateEndpoint description.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg
Ids List<String> - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- compartment
Id string - (Updatable) Identifier of the compartment where private endpoint is to be created.
- display
Name string - (Updatable) Private endpoint display name.
- subnet
Id string Identifier of the customer subnet against which private endpoint is to be created.
** 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]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) PrivateEndpoint description.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg
Ids string[] - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- compartment_
id str - (Updatable) Identifier of the compartment where private endpoint is to be created.
- display_
name str - (Updatable) Private endpoint display name.
- subnet_
id str Identifier of the customer subnet against which private endpoint is to be created.
** 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, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) PrivateEndpoint description.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg_
ids Sequence[str] - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- compartment
Id String - (Updatable) Identifier of the compartment where private endpoint is to be created.
- display
Name String - (Updatable) Private endpoint display name.
- subnet
Id String Identifier of the customer subnet against which private endpoint is to be created.
** 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>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) PrivateEndpoint description.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg
Ids List<String> - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
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.
- Lifecycle
State stringDetails - Detailed message for the lifecycle state.
- Private
Ip string - IP address of the Private Endpoint.
- List<string>
- The OCIDs of sharded databases that consumes the given private endpoint.
- State string
- Lifecycle states for private endpoint.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- Vcn
Id string - Identifier of the VCN in which subnet exists.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails - Detailed message for the lifecycle state.
- Private
Ip string - IP address of the Private Endpoint.
- []string
- The OCIDs of sharded databases that consumes the given private endpoint.
- State string
- Lifecycle states for private endpoint.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- Vcn
Id string - Identifier of the VCN in which subnet exists.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails - Detailed message for the lifecycle state.
- private
Ip String - IP address of the Private Endpoint.
- List<String>
- The OCIDs of sharded databases that consumes the given private endpoint.
- state String
- Lifecycle states for private endpoint.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time
Updated String - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn
Id String - Identifier of the VCN in which subnet exists.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
State stringDetails - Detailed message for the lifecycle state.
- private
Ip string - IP address of the Private Endpoint.
- string[]
- The OCIDs of sharded databases that consumes the given private endpoint.
- state string
- Lifecycle states for private endpoint.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time
Updated string - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn
Id string - Identifier of the VCN in which subnet exists.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
state_ strdetails - Detailed message for the lifecycle state.
- private_
ip str - IP address of the Private Endpoint.
- Sequence[str]
- The OCIDs of sharded databases that consumes the given private endpoint.
- state str
- Lifecycle states for private endpoint.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time_
updated str - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn_
id str - Identifier of the VCN in which subnet exists.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails - Detailed message for the lifecycle state.
- private
Ip String - IP address of the Private Endpoint.
- List<String>
- The OCIDs of sharded databases that consumes the given private endpoint.
- state String
- Lifecycle states for private endpoint.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time
Updated String - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn
Id String - Identifier of the VCN in which subnet exists.
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, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
lifecycle_state_details: Optional[str] = None,
nsg_ids: Optional[Sequence[str]] = None,
private_ip: Optional[str] = None,
sharded_databases: Optional[Sequence[str]] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: 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) Identifier of the compartment where private endpoint is to be created.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) PrivateEndpoint description.
- Display
Name string - (Updatable) Private endpoint display name.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
State stringDetails - Detailed message for the lifecycle state.
- Nsg
Ids List<string> - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- Private
Ip string - IP address of the Private Endpoint.
- Sharded
Databases List<string> - The OCIDs of sharded databases that consumes the given private endpoint.
- State string
- Lifecycle states for private endpoint.
- Subnet
Id string Identifier of the customer subnet against which private endpoint is to be created.
** 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, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- Vcn
Id string - Identifier of the VCN in which subnet exists.
- Compartment
Id string - (Updatable) Identifier of the compartment where private endpoint is to be created.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) PrivateEndpoint description.
- Display
Name string - (Updatable) Private endpoint display name.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
State stringDetails - Detailed message for the lifecycle state.
- Nsg
Ids []string - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- Private
Ip string - IP address of the Private Endpoint.
- Sharded
Databases []string - The OCIDs of sharded databases that consumes the given private endpoint.
- State string
- Lifecycle states for private endpoint.
- Subnet
Id string Identifier of the customer subnet against which private endpoint is to be created.
** 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]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- Vcn
Id string - Identifier of the VCN in which subnet exists.
- compartment
Id String - (Updatable) Identifier of the compartment where private endpoint is to be created.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) PrivateEndpoint description.
- display
Name String - (Updatable) Private endpoint display name.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
State StringDetails - Detailed message for the lifecycle state.
- nsg
Ids List<String> - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- private
Ip String - IP address of the Private Endpoint.
- sharded
Databases List<String> - The OCIDs of sharded databases that consumes the given private endpoint.
- state String
- Lifecycle states for private endpoint.
- subnet
Id String Identifier of the customer subnet against which private endpoint is to be created.
** 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,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time
Updated String - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn
Id String - Identifier of the VCN in which subnet exists.
- compartment
Id string - (Updatable) Identifier of the compartment where private endpoint is to be created.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) PrivateEndpoint description.
- display
Name string - (Updatable) Private endpoint display name.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
State stringDetails - Detailed message for the lifecycle state.
- nsg
Ids string[] - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- private
Ip string - IP address of the Private Endpoint.
- sharded
Databases string[] - The OCIDs of sharded databases that consumes the given private endpoint.
- state string
- Lifecycle states for private endpoint.
- subnet
Id string Identifier of the customer subnet against which private endpoint is to be created.
** 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]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time
Updated string - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn
Id string - Identifier of the VCN in which subnet exists.
- compartment_
id str - (Updatable) Identifier of the compartment where private endpoint is to be created.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) PrivateEndpoint description.
- display_
name str - (Updatable) Private endpoint display name.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle_
state_ strdetails - Detailed message for the lifecycle state.
- nsg_
ids Sequence[str] - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- private_
ip str - IP address of the Private Endpoint.
- sharded_
databases Sequence[str] - The OCIDs of sharded databases that consumes the given private endpoint.
- state str
- Lifecycle states for private endpoint.
- subnet_
id str Identifier of the customer subnet against which private endpoint is to be created.
** 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, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time_
updated str - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn_
id str - Identifier of the VCN in which subnet exists.
- compartment
Id String - (Updatable) Identifier of the compartment where private endpoint is to be created.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) PrivateEndpoint description.
- display
Name String - (Updatable) Private endpoint display name.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
State StringDetails - Detailed message for the lifecycle state.
- nsg
Ids List<String> - (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
- private
Ip String - IP address of the Private Endpoint.
- sharded
Databases List<String> - The OCIDs of sharded databases that consumes the given private endpoint.
- state String
- Lifecycle states for private endpoint.
- subnet
Id String Identifier of the customer subnet against which private endpoint is to be created.
** 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>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
- time
Updated String - The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
- vcn
Id String - Identifier of the VCN in which subnet exists.
Import
PrivateEndpoints can be imported using the id
, e.g.
$ pulumi import oci:GloballyDistributedDatabase/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.