1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. DbManagementPrivateEndpoint
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DatabaseManagement.DbManagementPrivateEndpoint

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This resource provides the Db Management Private Endpoint resource in Oracle Cloud Infrastructure Database Management service.

    Creates a new Database Management private endpoint.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDbManagementPrivateEndpoint = new oci.databasemanagement.DbManagementPrivateEndpoint("testDbManagementPrivateEndpoint", {
        compartmentId: _var.compartment_id,
        subnetId: oci_core_subnet.test_subnet.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: _var.db_management_private_endpoint_description,
        freeformTags: {
            Department: "Finance",
        },
        isCluster: _var.db_management_private_endpoint_is_cluster,
        nsgIds: _var.db_management_private_endpoint_nsg_ids,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_db_management_private_endpoint = oci.database_management.DbManagementPrivateEndpoint("testDbManagementPrivateEndpoint",
        compartment_id=var["compartment_id"],
        subnet_id=oci_core_subnet["test_subnet"]["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=var["db_management_private_endpoint_description"],
        freeform_tags={
            "Department": "Finance",
        },
        is_cluster=var["db_management_private_endpoint_is_cluster"],
        nsg_ids=var["db_management_private_endpoint_nsg_ids"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DatabaseManagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DatabaseManagement.NewDbManagementPrivateEndpoint(ctx, "testDbManagementPrivateEndpoint", &DatabaseManagement.DbManagementPrivateEndpointArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			SubnetId:      pulumi.Any(oci_core_subnet.Test_subnet.Id),
    			DefinedTags: pulumi.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			Description: pulumi.Any(_var.Db_management_private_endpoint_description),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IsCluster: pulumi.Any(_var.Db_management_private_endpoint_is_cluster),
    			NsgIds:    pulumi.Any(_var.Db_management_private_endpoint_nsg_ids),
    		})
    		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 testDbManagementPrivateEndpoint = new Oci.DatabaseManagement.DbManagementPrivateEndpoint("testDbManagementPrivateEndpoint", new()
        {
            CompartmentId = @var.Compartment_id,
            SubnetId = oci_core_subnet.Test_subnet.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = @var.Db_management_private_endpoint_description,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IsCluster = @var.Db_management_private_endpoint_is_cluster,
            NsgIds = @var.Db_management_private_endpoint_nsg_ids,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.DbManagementPrivateEndpoint;
    import com.pulumi.oci.DatabaseManagement.DbManagementPrivateEndpointArgs;
    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 testDbManagementPrivateEndpoint = new DbManagementPrivateEndpoint("testDbManagementPrivateEndpoint", DbManagementPrivateEndpointArgs.builder()        
                .compartmentId(var_.compartment_id())
                .subnetId(oci_core_subnet.test_subnet().id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(var_.db_management_private_endpoint_description())
                .freeformTags(Map.of("Department", "Finance"))
                .isCluster(var_.db_management_private_endpoint_is_cluster())
                .nsgIds(var_.db_management_private_endpoint_nsg_ids())
                .build());
    
        }
    }
    
    resources:
      testDbManagementPrivateEndpoint:
        type: oci:DatabaseManagement:DbManagementPrivateEndpoint
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          subnetId: ${oci_core_subnet.test_subnet.id}
          #Optional
          definedTags:
            Operations.CostCenter: '42'
          description: ${var.db_management_private_endpoint_description}
          freeformTags:
            Department: Finance
          isCluster: ${var.db_management_private_endpoint_is_cluster}
          nsgIds: ${var.db_management_private_endpoint_nsg_ids}
    

    Create DbManagementPrivateEndpoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DbManagementPrivateEndpoint(name: string, args: DbManagementPrivateEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def DbManagementPrivateEndpoint(resource_name: str,
                                    args: DbManagementPrivateEndpointArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbManagementPrivateEndpoint(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    compartment_id: Optional[str] = None,
                                    subnet_id: Optional[str] = None,
                                    defined_tags: Optional[Mapping[str, Any]] = None,
                                    description: Optional[str] = None,
                                    freeform_tags: Optional[Mapping[str, Any]] = None,
                                    is_cluster: Optional[bool] = None,
                                    name: Optional[str] = None,
                                    nsg_ids: Optional[Sequence[str]] = None)
    func NewDbManagementPrivateEndpoint(ctx *Context, name string, args DbManagementPrivateEndpointArgs, opts ...ResourceOption) (*DbManagementPrivateEndpoint, error)
    public DbManagementPrivateEndpoint(string name, DbManagementPrivateEndpointArgs args, CustomResourceOptions? opts = null)
    public DbManagementPrivateEndpoint(String name, DbManagementPrivateEndpointArgs args)
    public DbManagementPrivateEndpoint(String name, DbManagementPrivateEndpointArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseManagement:DbManagementPrivateEndpoint
    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 DbManagementPrivateEndpointArgs
    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 DbManagementPrivateEndpointArgs
    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 DbManagementPrivateEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbManagementPrivateEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbManagementPrivateEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var dbManagementPrivateEndpointResource = new Oci.DatabaseManagement.DbManagementPrivateEndpoint("dbManagementPrivateEndpointResource", new()
    {
        CompartmentId = "string",
        SubnetId = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        IsCluster = false,
        Name = "string",
        NsgIds = new[]
        {
            "string",
        },
    });
    
    example, err := DatabaseManagement.NewDbManagementPrivateEndpoint(ctx, "dbManagementPrivateEndpointResource", &DatabaseManagement.DbManagementPrivateEndpointArgs{
    	CompartmentId: pulumi.String("string"),
    	SubnetId:      pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	IsCluster: pulumi.Bool(false),
    	Name:      pulumi.String("string"),
    	NsgIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var dbManagementPrivateEndpointResource = new DbManagementPrivateEndpoint("dbManagementPrivateEndpointResource", DbManagementPrivateEndpointArgs.builder()        
        .compartmentId("string")
        .subnetId("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .freeformTags(Map.of("string", "any"))
        .isCluster(false)
        .name("string")
        .nsgIds("string")
        .build());
    
    db_management_private_endpoint_resource = oci.database_management.DbManagementPrivateEndpoint("dbManagementPrivateEndpointResource",
        compartment_id="string",
        subnet_id="string",
        defined_tags={
            "string": "any",
        },
        description="string",
        freeform_tags={
            "string": "any",
        },
        is_cluster=False,
        name="string",
        nsg_ids=["string"])
    
    const dbManagementPrivateEndpointResource = new oci.databasemanagement.DbManagementPrivateEndpoint("dbManagementPrivateEndpointResource", {
        compartmentId: "string",
        subnetId: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        freeformTags: {
            string: "any",
        },
        isCluster: false,
        name: "string",
        nsgIds: ["string"],
    });
    
    type: oci:DatabaseManagement:DbManagementPrivateEndpoint
    properties:
        compartmentId: string
        definedTags:
            string: any
        description: string
        freeformTags:
            string: any
        isCluster: false
        name: string
        nsgIds:
            - string
        subnetId: string
    

    DbManagementPrivateEndpoint 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 DbManagementPrivateEndpoint resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment.
    SubnetId string

    The OCID of the subnet.

    ** 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

    DefinedTags 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) The description of the private endpoint.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsCluster bool
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    Name string
    (Updatable) The display name of the Database Management private endpoint.
    NsgIds List<string>
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    SubnetId string

    The OCID of the subnet.

    ** 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

    DefinedTags 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) The description of the private endpoint.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsCluster bool
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    Name string
    (Updatable) The display name of the Database Management private endpoint.
    NsgIds []string
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    compartmentId String
    (Updatable) The OCID of the compartment.
    subnetId String

    The OCID of the subnet.

    ** 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

    definedTags 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) The description of the private endpoint.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isCluster Boolean
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name String
    (Updatable) The display name of the Database Management private endpoint.
    nsgIds List<String>
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    compartmentId string
    (Updatable) The OCID of the compartment.
    subnetId string

    The OCID of the subnet.

    ** 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

    definedTags {[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) The description of the private endpoint.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isCluster boolean
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name string
    (Updatable) The display name of the Database Management private endpoint.
    nsgIds string[]
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    compartment_id str
    (Updatable) The OCID of the compartment.
    subnet_id str

    The OCID of the subnet.

    ** 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

    defined_tags 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) The description of the private endpoint.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_cluster bool
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name str
    (Updatable) The display name of the Database Management private endpoint.
    nsg_ids Sequence[str]
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    compartmentId String
    (Updatable) The OCID of the compartment.
    subnetId String

    The OCID of the subnet.

    ** 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

    definedTags 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) The description of the private endpoint.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isCluster Boolean
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name String
    (Updatable) The display name of the Database Management private endpoint.
    nsgIds List<String>
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    PrivateIp string
    The IP addresses assigned to the Database Management private endpoint.
    State string
    The current lifecycle state of the Database Management private endpoint.
    TimeCreated string
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    VcnId string
    The OCID of the VCN.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrivateIp string
    The IP addresses assigned to the Database Management private endpoint.
    State string
    The current lifecycle state of the Database Management private endpoint.
    TimeCreated string
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    VcnId string
    The OCID of the VCN.
    id String
    The provider-assigned unique ID for this managed resource.
    privateIp String
    The IP addresses assigned to the Database Management private endpoint.
    state String
    The current lifecycle state of the Database Management private endpoint.
    timeCreated String
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcnId String
    The OCID of the VCN.
    id string
    The provider-assigned unique ID for this managed resource.
    privateIp string
    The IP addresses assigned to the Database Management private endpoint.
    state string
    The current lifecycle state of the Database Management private endpoint.
    timeCreated string
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcnId string
    The OCID of the VCN.
    id str
    The provider-assigned unique ID for this managed resource.
    private_ip str
    The IP addresses assigned to the Database Management private endpoint.
    state str
    The current lifecycle state of the Database Management private endpoint.
    time_created str
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcn_id str
    The OCID of the VCN.
    id String
    The provider-assigned unique ID for this managed resource.
    privateIp String
    The IP addresses assigned to the Database Management private endpoint.
    state String
    The current lifecycle state of the Database Management private endpoint.
    timeCreated String
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcnId String
    The OCID of the VCN.

    Look up Existing DbManagementPrivateEndpoint Resource

    Get an existing DbManagementPrivateEndpoint 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?: DbManagementPrivateEndpointState, opts?: CustomResourceOptions): DbManagementPrivateEndpoint
    @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,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            is_cluster: Optional[bool] = None,
            name: Optional[str] = None,
            nsg_ids: Optional[Sequence[str]] = None,
            private_ip: Optional[str] = None,
            state: Optional[str] = None,
            subnet_id: Optional[str] = None,
            time_created: Optional[str] = None,
            vcn_id: Optional[str] = None) -> DbManagementPrivateEndpoint
    func GetDbManagementPrivateEndpoint(ctx *Context, name string, id IDInput, state *DbManagementPrivateEndpointState, opts ...ResourceOption) (*DbManagementPrivateEndpoint, error)
    public static DbManagementPrivateEndpoint Get(string name, Input<string> id, DbManagementPrivateEndpointState? state, CustomResourceOptions? opts = null)
    public static DbManagementPrivateEndpoint get(String name, Output<String> id, DbManagementPrivateEndpointState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DefinedTags 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) The description of the private endpoint.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsCluster bool
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    Name string
    (Updatable) The display name of the Database Management private endpoint.
    NsgIds List<string>
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    PrivateIp string
    The IP addresses assigned to the Database Management private endpoint.
    State string
    The current lifecycle state of the Database Management private endpoint.
    SubnetId string

    The OCID of the subnet.

    ** 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

    TimeCreated string
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    VcnId string
    The OCID of the VCN.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DefinedTags 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) The description of the private endpoint.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsCluster bool
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    Name string
    (Updatable) The display name of the Database Management private endpoint.
    NsgIds []string
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    PrivateIp string
    The IP addresses assigned to the Database Management private endpoint.
    State string
    The current lifecycle state of the Database Management private endpoint.
    SubnetId string

    The OCID of the subnet.

    ** 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

    TimeCreated string
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    VcnId string
    The OCID of the VCN.
    compartmentId String
    (Updatable) The OCID of the compartment.
    definedTags 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) The description of the private endpoint.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isCluster Boolean
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name String
    (Updatable) The display name of the Database Management private endpoint.
    nsgIds List<String>
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    privateIp String
    The IP addresses assigned to the Database Management private endpoint.
    state String
    The current lifecycle state of the Database Management private endpoint.
    subnetId String

    The OCID of the subnet.

    ** 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

    timeCreated String
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcnId String
    The OCID of the VCN.
    compartmentId string
    (Updatable) The OCID of the compartment.
    definedTags {[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) The description of the private endpoint.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isCluster boolean
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name string
    (Updatable) The display name of the Database Management private endpoint.
    nsgIds string[]
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    privateIp string
    The IP addresses assigned to the Database Management private endpoint.
    state string
    The current lifecycle state of the Database Management private endpoint.
    subnetId string

    The OCID of the subnet.

    ** 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

    timeCreated string
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcnId string
    The OCID of the VCN.
    compartment_id str
    (Updatable) The OCID of the compartment.
    defined_tags 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) The description of the private endpoint.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_cluster bool
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name str
    (Updatable) The display name of the Database Management private endpoint.
    nsg_ids Sequence[str]
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    private_ip str
    The IP addresses assigned to the Database Management private endpoint.
    state str
    The current lifecycle state of the Database Management private endpoint.
    subnet_id str

    The OCID of the subnet.

    ** 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

    time_created str
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcn_id str
    The OCID of the VCN.
    compartmentId String
    (Updatable) The OCID of the compartment.
    definedTags 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) The description of the private endpoint.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isCluster Boolean
    Specifies whether the Database Management private endpoint will be used for Oracle Databases in a cluster.
    name String
    (Updatable) The display name of the Database Management private endpoint.
    nsgIds List<String>
    (Updatable) The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
    privateIp String
    The IP addresses assigned to the Database Management private endpoint.
    state String
    The current lifecycle state of the Database Management private endpoint.
    subnetId String

    The OCID of the subnet.

    ** 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

    timeCreated String
    The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
    vcnId String
    The OCID of the VCN.

    Import

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

    $ pulumi import oci:DatabaseManagement/dbManagementPrivateEndpoint:DbManagementPrivateEndpoint test_db_management_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.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi