1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getDbManagementPrivateEndpoints
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.DatabaseManagement.getDbManagementPrivateEndpoints

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Db Management Private Endpoints in Oracle Cloud Infrastructure Database Management service.

Gets a list of Database Management private endpoints.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDbManagementPrivateEndpoints = oci.DatabaseManagement.getDbManagementPrivateEndpoints({
    compartmentId: compartmentId,
    isCluster: dbManagementPrivateEndpointIsCluster,
    isDnsResolutionEnabled: dbManagementPrivateEndpointIsDnsResolutionEnabled,
    name: dbManagementPrivateEndpointName,
    state: dbManagementPrivateEndpointState,
    vcnId: testVcn.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_db_management_private_endpoints = oci.DatabaseManagement.get_db_management_private_endpoints(compartment_id=compartment_id,
    is_cluster=db_management_private_endpoint_is_cluster,
    is_dns_resolution_enabled=db_management_private_endpoint_is_dns_resolution_enabled,
    name=db_management_private_endpoint_name,
    state=db_management_private_endpoint_state,
    vcn_id=test_vcn["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/databasemanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.GetDbManagementPrivateEndpoints(ctx, &databasemanagement.GetDbManagementPrivateEndpointsArgs{
			CompartmentId:          compartmentId,
			IsCluster:              pulumi.BoolRef(dbManagementPrivateEndpointIsCluster),
			IsDnsResolutionEnabled: pulumi.BoolRef(dbManagementPrivateEndpointIsDnsResolutionEnabled),
			Name:                   pulumi.StringRef(dbManagementPrivateEndpointName),
			State:                  pulumi.StringRef(dbManagementPrivateEndpointState),
			VcnId:                  pulumi.StringRef(testVcn.Id),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDbManagementPrivateEndpoints = Oci.DatabaseManagement.GetDbManagementPrivateEndpoints.Invoke(new()
    {
        CompartmentId = compartmentId,
        IsCluster = dbManagementPrivateEndpointIsCluster,
        IsDnsResolutionEnabled = dbManagementPrivateEndpointIsDnsResolutionEnabled,
        Name = dbManagementPrivateEndpointName,
        State = dbManagementPrivateEndpointState,
        VcnId = testVcn.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
import com.pulumi.oci.DatabaseManagement.inputs.GetDbManagementPrivateEndpointsArgs;
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) {
        final var testDbManagementPrivateEndpoints = DatabaseManagementFunctions.getDbManagementPrivateEndpoints(GetDbManagementPrivateEndpointsArgs.builder()
            .compartmentId(compartmentId)
            .isCluster(dbManagementPrivateEndpointIsCluster)
            .isDnsResolutionEnabled(dbManagementPrivateEndpointIsDnsResolutionEnabled)
            .name(dbManagementPrivateEndpointName)
            .state(dbManagementPrivateEndpointState)
            .vcnId(testVcn.id())
            .build());

    }
}
Copy
variables:
  testDbManagementPrivateEndpoints:
    fn::invoke:
      function: oci:DatabaseManagement:getDbManagementPrivateEndpoints
      arguments:
        compartmentId: ${compartmentId}
        isCluster: ${dbManagementPrivateEndpointIsCluster}
        isDnsResolutionEnabled: ${dbManagementPrivateEndpointIsDnsResolutionEnabled}
        name: ${dbManagementPrivateEndpointName}
        state: ${dbManagementPrivateEndpointState}
        vcnId: ${testVcn.id}
Copy

Using getDbManagementPrivateEndpoints

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getDbManagementPrivateEndpoints(args: GetDbManagementPrivateEndpointsArgs, opts?: InvokeOptions): Promise<GetDbManagementPrivateEndpointsResult>
function getDbManagementPrivateEndpointsOutput(args: GetDbManagementPrivateEndpointsOutputArgs, opts?: InvokeOptions): Output<GetDbManagementPrivateEndpointsResult>
Copy
def get_db_management_private_endpoints(compartment_id: Optional[str] = None,
                                        filters: Optional[Sequence[_databasemanagement.GetDbManagementPrivateEndpointsFilter]] = None,
                                        is_cluster: Optional[bool] = None,
                                        is_dns_resolution_enabled: Optional[bool] = None,
                                        name: Optional[str] = None,
                                        state: Optional[str] = None,
                                        vcn_id: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetDbManagementPrivateEndpointsResult
def get_db_management_private_endpoints_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                        filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetDbManagementPrivateEndpointsFilterArgs]]]] = None,
                                        is_cluster: Optional[pulumi.Input[bool]] = None,
                                        is_dns_resolution_enabled: Optional[pulumi.Input[bool]] = None,
                                        name: Optional[pulumi.Input[str]] = None,
                                        state: Optional[pulumi.Input[str]] = None,
                                        vcn_id: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetDbManagementPrivateEndpointsResult]
Copy
func GetDbManagementPrivateEndpoints(ctx *Context, args *GetDbManagementPrivateEndpointsArgs, opts ...InvokeOption) (*GetDbManagementPrivateEndpointsResult, error)
func GetDbManagementPrivateEndpointsOutput(ctx *Context, args *GetDbManagementPrivateEndpointsOutputArgs, opts ...InvokeOption) GetDbManagementPrivateEndpointsResultOutput
Copy

> Note: This function is named GetDbManagementPrivateEndpoints in the Go SDK.

public static class GetDbManagementPrivateEndpoints 
{
    public static Task<GetDbManagementPrivateEndpointsResult> InvokeAsync(GetDbManagementPrivateEndpointsArgs args, InvokeOptions? opts = null)
    public static Output<GetDbManagementPrivateEndpointsResult> Invoke(GetDbManagementPrivateEndpointsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDbManagementPrivateEndpointsResult> getDbManagementPrivateEndpoints(GetDbManagementPrivateEndpointsArgs args, InvokeOptions options)
public static Output<GetDbManagementPrivateEndpointsResult> getDbManagementPrivateEndpoints(GetDbManagementPrivateEndpointsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DatabaseManagement/getDbManagementPrivateEndpoints:getDbManagementPrivateEndpoints
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment.
Filters Changes to this property will trigger replacement. List<GetDbManagementPrivateEndpointsFilter>
IsCluster bool
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
IsDnsResolutionEnabled bool
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
Name string
A filter to return only resources that match the entire name.
State string
The lifecycle state of a resource.
VcnId string
The OCID of the VCN.
CompartmentId This property is required. string
The OCID of the compartment.
Filters Changes to this property will trigger replacement. []GetDbManagementPrivateEndpointsFilter
IsCluster bool
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
IsDnsResolutionEnabled bool
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
Name string
A filter to return only resources that match the entire name.
State string
The lifecycle state of a resource.
VcnId string
The OCID of the VCN.
compartmentId This property is required. String
The OCID of the compartment.
filters Changes to this property will trigger replacement. List<GetDbManagementPrivateEndpointsFilter>
isCluster Boolean
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
isDnsResolutionEnabled Boolean
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name String
A filter to return only resources that match the entire name.
state String
The lifecycle state of a resource.
vcnId String
The OCID of the VCN.
compartmentId This property is required. string
The OCID of the compartment.
filters Changes to this property will trigger replacement. GetDbManagementPrivateEndpointsFilter[]
isCluster boolean
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
isDnsResolutionEnabled boolean
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name string
A filter to return only resources that match the entire name.
state string
The lifecycle state of a resource.
vcnId string
The OCID of the VCN.
compartment_id This property is required. str
The OCID of the compartment.
filters Changes to this property will trigger replacement. Sequence[databasemanagement.GetDbManagementPrivateEndpointsFilter]
is_cluster bool
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
is_dns_resolution_enabled bool
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name str
A filter to return only resources that match the entire name.
state str
The lifecycle state of a resource.
vcn_id str
The OCID of the VCN.
compartmentId This property is required. String
The OCID of the compartment.
filters Changes to this property will trigger replacement. List<Property Map>
isCluster Boolean
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
isDnsResolutionEnabled Boolean
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name String
A filter to return only resources that match the entire name.
state String
The lifecycle state of a resource.
vcnId String
The OCID of the VCN.

getDbManagementPrivateEndpoints Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
DbManagementPrivateEndpointCollections List<GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollection>
The list of db_management_private_endpoint_collection.
Id string
The provider-assigned unique ID for this managed resource.
Filters List<GetDbManagementPrivateEndpointsFilter>
IsCluster bool
Specifies whether the Database Management private endpoint can be used for Oracle Databases in a cluster.
IsDnsResolutionEnabled bool
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
Name string
The display name of the Database Management private endpoint.
State string
The current lifecycle state of the Database Management private endpoint.
VcnId string
The OCID of the VCN.
CompartmentId string
The OCID of the compartment.
DbManagementPrivateEndpointCollections []GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollection
The list of db_management_private_endpoint_collection.
Id string
The provider-assigned unique ID for this managed resource.
Filters []GetDbManagementPrivateEndpointsFilter
IsCluster bool
Specifies whether the Database Management private endpoint can be used for Oracle Databases in a cluster.
IsDnsResolutionEnabled bool
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
Name string
The display name of the Database Management private endpoint.
State string
The current lifecycle state of the Database Management private endpoint.
VcnId string
The OCID of the VCN.
compartmentId String
The OCID of the compartment.
dbManagementPrivateEndpointCollections List<GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollection>
The list of db_management_private_endpoint_collection.
id String
The provider-assigned unique ID for this managed resource.
filters List<GetDbManagementPrivateEndpointsFilter>
isCluster Boolean
Specifies whether the Database Management private endpoint can be used for Oracle Databases in a cluster.
isDnsResolutionEnabled Boolean
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
name String
The display name of the Database Management private endpoint.
state String
The current lifecycle state of the Database Management private endpoint.
vcnId String
The OCID of the VCN.
compartmentId string
The OCID of the compartment.
dbManagementPrivateEndpointCollections GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollection[]
The list of db_management_private_endpoint_collection.
id string
The provider-assigned unique ID for this managed resource.
filters GetDbManagementPrivateEndpointsFilter[]
isCluster boolean
Specifies whether the Database Management private endpoint can be used for Oracle Databases in a cluster.
isDnsResolutionEnabled boolean
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
name string
The display name of the Database Management private endpoint.
state string
The current lifecycle state of the Database Management private endpoint.
vcnId string
The OCID of the VCN.
compartment_id str
The OCID of the compartment.
db_management_private_endpoint_collections Sequence[databasemanagement.GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollection]
The list of db_management_private_endpoint_collection.
id str
The provider-assigned unique ID for this managed resource.
filters Sequence[databasemanagement.GetDbManagementPrivateEndpointsFilter]
is_cluster bool
Specifies whether the Database Management private endpoint can be used for Oracle Databases in a cluster.
is_dns_resolution_enabled bool
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
name str
The display name of the Database Management private endpoint.
state str
The current lifecycle state of the Database Management private endpoint.
vcn_id str
The OCID of the VCN.
compartmentId String
The OCID of the compartment.
dbManagementPrivateEndpointCollections List<Property Map>
The list of db_management_private_endpoint_collection.
id String
The provider-assigned unique ID for this managed resource.
filters List<Property Map>
isCluster Boolean
Specifies whether the Database Management private endpoint can be used for Oracle Databases in a cluster.
isDnsResolutionEnabled Boolean
Specifies whether the Database Management private endpoint has DNS proxy server enabled to resolve private host name.
name String
The display name of the Database Management private endpoint.
state String
The current lifecycle state of the Database Management private endpoint.
vcnId String
The OCID of the VCN.

Supporting Types

GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollection

items This property is required. List<Property Map>

GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollectionItem

CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. Dictionary<string, string>
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 This property is required. string
The description of the Database Management private endpoint.
FreeformTags This property is required. Dictionary<string, string>
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"}
Id This property is required. string
The OCID of the Database Management private endpoint.
IsCluster This property is required. bool
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
IsDnsResolutionEnabled This property is required. bool
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
Name This property is required. string
A filter to return only resources that match the entire name.
NsgIds This property is required. List<string>
The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
PrivateIp This property is required. string
The IP addresses assigned to the Database Management private endpoint.
State This property is required. string
The lifecycle state of a resource.
SubnetId This property is required. string
The OCID of the subnet.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
VcnId This property is required. string
The OCID of the VCN.
CompartmentId This property is required. string
The OCID of the compartment.
DefinedTags This property is required. map[string]string
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 This property is required. string
The description of the Database Management private endpoint.
FreeformTags This property is required. map[string]string
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"}
Id This property is required. string
The OCID of the Database Management private endpoint.
IsCluster This property is required. bool
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
IsDnsResolutionEnabled This property is required. bool
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
Name This property is required. string
A filter to return only resources that match the entire name.
NsgIds This property is required. []string
The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
PrivateIp This property is required. string
The IP addresses assigned to the Database Management private endpoint.
State This property is required. string
The lifecycle state of a resource.
SubnetId This property is required. string
The OCID of the subnet.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
VcnId This property is required. string
The OCID of the VCN.
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String,String>
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 This property is required. String
The description of the Database Management private endpoint.
freeformTags This property is required. Map<String,String>
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"}
id This property is required. String
The OCID of the Database Management private endpoint.
isCluster This property is required. Boolean
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
isDnsResolutionEnabled This property is required. Boolean
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name This property is required. String
A filter to return only resources that match the entire name.
nsgIds This property is required. List<String>
The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
privateIp This property is required. String
The IP addresses assigned to the Database Management private endpoint.
state This property is required. String
The lifecycle state of a resource.
subnetId This property is required. String
The OCID of the subnet.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
vcnId This property is required. String
The OCID of the VCN.
compartmentId This property is required. string
The OCID of the compartment.
definedTags This property is required. {[key: string]: string}
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 This property is required. string
The description of the Database Management private endpoint.
freeformTags This property is required. {[key: string]: string}
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"}
id This property is required. string
The OCID of the Database Management private endpoint.
isCluster This property is required. boolean
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
isDnsResolutionEnabled This property is required. boolean
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name This property is required. string
A filter to return only resources that match the entire name.
nsgIds This property is required. string[]
The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
privateIp This property is required. string
The IP addresses assigned to the Database Management private endpoint.
state This property is required. string
The lifecycle state of a resource.
subnetId This property is required. string
The OCID of the subnet.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
vcnId This property is required. string
The OCID of the VCN.
compartment_id This property is required. str
The OCID of the compartment.
defined_tags This property is required. Mapping[str, str]
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 This property is required. str
The description of the Database Management private endpoint.
freeform_tags This property is required. Mapping[str, str]
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"}
id This property is required. str
The OCID of the Database Management private endpoint.
is_cluster This property is required. bool
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
is_dns_resolution_enabled This property is required. bool
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name This property is required. str
A filter to return only resources that match the entire name.
nsg_ids This property is required. Sequence[str]
The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
private_ip This property is required. str
The IP addresses assigned to the Database Management private endpoint.
state This property is required. str
The lifecycle state of a resource.
subnet_id This property is required. str
The OCID of the subnet.
system_tags This property is required. Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
vcn_id This property is required. str
The OCID of the VCN.
compartmentId This property is required. String
The OCID of the compartment.
definedTags This property is required. Map<String>
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 This property is required. String
The description of the Database Management private endpoint.
freeformTags This property is required. Map<String>
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"}
id This property is required. String
The OCID of the Database Management private endpoint.
isCluster This property is required. Boolean
The option to filter Database Management private endpoints that can used for Oracle Databases in a cluster. This should be used along with the vcnId query parameter.
isDnsResolutionEnabled This property is required. Boolean
The option to filter Database Management private endpoints which are endbled with DNS proxy server. This should be used along with the vcnId query parameter. Only one of this parameter and IsClusterDbManagementPrivateEndpointQueryParam should be set to true at one time.
name This property is required. String
A filter to return only resources that match the entire name.
nsgIds This property is required. List<String>
The OCIDs of the Network Security Groups to which the Database Management private endpoint belongs.
privateIp This property is required. String
The IP addresses assigned to the Database Management private endpoint.
state This property is required. String
The lifecycle state of a resource.
subnetId This property is required. String
The OCID of the subnet.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the Database Managament private endpoint was created, in the format defined by RFC3339.
vcnId This property is required. String
The OCID of the VCN.

GetDbManagementPrivateEndpointsFilter

Name This property is required. string
A filter to return only resources that match the entire name.
Values This property is required. List<string>
Regex bool
Name This property is required. string
A filter to return only resources that match the entire name.
Values This property is required. []string
Regex bool
name This property is required. String
A filter to return only resources that match the entire name.
values This property is required. List<String>
regex Boolean
name This property is required. string
A filter to return only resources that match the entire name.
values This property is required. string[]
regex boolean
name This property is required. str
A filter to return only resources that match the entire name.
values This property is required. Sequence[str]
regex bool
name This property is required. String
A filter to return only resources that match the entire name.
values This property is required. List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi