1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseTools
  5. getDatabaseToolsPrivateEndpoints
Oracle Cloud Infrastructure v2.25.0 published on Friday, Feb 21, 2025 by Pulumi

oci.DatabaseTools.getDatabaseToolsPrivateEndpoints

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.25.0 published on Friday, Feb 21, 2025 by Pulumi

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

Returns a list of Database Tools private endpoints.

Example Usage

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

const testDatabaseToolsPrivateEndpoints = oci.DatabaseTools.getDatabaseToolsPrivateEndpoints({
    compartmentId: compartmentId,
    displayName: databaseToolsPrivateEndpointDisplayName,
    endpointServiceId: testService.id,
    state: databaseToolsPrivateEndpointState,
    subnetId: testSubnet.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_database_tools_private_endpoints = oci.DatabaseTools.get_database_tools_private_endpoints(compartment_id=compartment_id,
    display_name=database_tools_private_endpoint_display_name,
    endpoint_service_id=test_service["id"],
    state=database_tools_private_endpoint_state,
    subnet_id=test_subnet["id"])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasetools.GetDatabaseToolsPrivateEndpoints(ctx, &databasetools.GetDatabaseToolsPrivateEndpointsArgs{
			CompartmentId:     compartmentId,
			DisplayName:       pulumi.StringRef(databaseToolsPrivateEndpointDisplayName),
			EndpointServiceId: pulumi.StringRef(testService.Id),
			State:             pulumi.StringRef(databaseToolsPrivateEndpointState),
			SubnetId:          pulumi.StringRef(testSubnet.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 testDatabaseToolsPrivateEndpoints = Oci.DatabaseTools.GetDatabaseToolsPrivateEndpoints.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = databaseToolsPrivateEndpointDisplayName,
        EndpointServiceId = testService.Id,
        State = databaseToolsPrivateEndpointState,
        SubnetId = testSubnet.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseTools.DatabaseToolsFunctions;
import com.pulumi.oci.DatabaseTools.inputs.GetDatabaseToolsPrivateEndpointsArgs;
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 testDatabaseToolsPrivateEndpoints = DatabaseToolsFunctions.getDatabaseToolsPrivateEndpoints(GetDatabaseToolsPrivateEndpointsArgs.builder()
            .compartmentId(compartmentId)
            .displayName(databaseToolsPrivateEndpointDisplayName)
            .endpointServiceId(testService.id())
            .state(databaseToolsPrivateEndpointState)
            .subnetId(testSubnet.id())
            .build());

    }
}
Copy
variables:
  testDatabaseToolsPrivateEndpoints:
    fn::invoke:
      function: oci:DatabaseTools:getDatabaseToolsPrivateEndpoints
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${databaseToolsPrivateEndpointDisplayName}
        endpointServiceId: ${testService.id}
        state: ${databaseToolsPrivateEndpointState}
        subnetId: ${testSubnet.id}
Copy

Using getDatabaseToolsPrivateEndpoints

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 getDatabaseToolsPrivateEndpoints(args: GetDatabaseToolsPrivateEndpointsArgs, opts?: InvokeOptions): Promise<GetDatabaseToolsPrivateEndpointsResult>
function getDatabaseToolsPrivateEndpointsOutput(args: GetDatabaseToolsPrivateEndpointsOutputArgs, opts?: InvokeOptions): Output<GetDatabaseToolsPrivateEndpointsResult>
Copy
def get_database_tools_private_endpoints(compartment_id: Optional[str] = None,
                                         display_name: Optional[str] = None,
                                         endpoint_service_id: Optional[str] = None,
                                         filters: Optional[Sequence[_databasetools.GetDatabaseToolsPrivateEndpointsFilter]] = None,
                                         state: Optional[str] = None,
                                         subnet_id: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetDatabaseToolsPrivateEndpointsResult
def get_database_tools_private_endpoints_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                         display_name: Optional[pulumi.Input[str]] = None,
                                         endpoint_service_id: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasetools.GetDatabaseToolsPrivateEndpointsFilterArgs]]]] = None,
                                         state: Optional[pulumi.Input[str]] = None,
                                         subnet_id: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetDatabaseToolsPrivateEndpointsResult]
Copy
func GetDatabaseToolsPrivateEndpoints(ctx *Context, args *GetDatabaseToolsPrivateEndpointsArgs, opts ...InvokeOption) (*GetDatabaseToolsPrivateEndpointsResult, error)
func GetDatabaseToolsPrivateEndpointsOutput(ctx *Context, args *GetDatabaseToolsPrivateEndpointsOutputArgs, opts ...InvokeOption) GetDatabaseToolsPrivateEndpointsResultOutput
Copy

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

public static class GetDatabaseToolsPrivateEndpoints 
{
    public static Task<GetDatabaseToolsPrivateEndpointsResult> InvokeAsync(GetDatabaseToolsPrivateEndpointsArgs args, InvokeOptions? opts = null)
    public static Output<GetDatabaseToolsPrivateEndpointsResult> Invoke(GetDatabaseToolsPrivateEndpointsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDatabaseToolsPrivateEndpointsResult> getDatabaseToolsPrivateEndpoints(GetDatabaseToolsPrivateEndpointsArgs args, InvokeOptions options)
public static Output<GetDatabaseToolsPrivateEndpointsResult> getDatabaseToolsPrivateEndpoints(GetDatabaseToolsPrivateEndpointsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DatabaseTools/getDatabaseToolsPrivateEndpoints:getDatabaseToolsPrivateEndpoints
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire specified display name.
EndpointServiceId string
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
Filters Changes to this property will trigger replacement. List<GetDatabaseToolsPrivateEndpointsFilter>
State string
A filter to return only resources their lifecycleState matches the specified lifecycleState.
SubnetId string
A filter to return only resources their subnetId matches the specified subnetId.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the entire specified display name.
EndpointServiceId string
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
Filters Changes to this property will trigger replacement. []GetDatabaseToolsPrivateEndpointsFilter
State string
A filter to return only resources their lifecycleState matches the specified lifecycleState.
SubnetId string
A filter to return only resources their subnetId matches the specified subnetId.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire specified display name.
endpointServiceId String
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
filters Changes to this property will trigger replacement. List<GetPrivateEndpointsFilter>
state String
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnetId String
A filter to return only resources their subnetId matches the specified subnetId.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
displayName string
A filter to return only resources that match the entire specified display name.
endpointServiceId string
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
filters Changes to this property will trigger replacement. GetDatabaseToolsPrivateEndpointsFilter[]
state string
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnetId string
A filter to return only resources their subnetId matches the specified subnetId.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
display_name str
A filter to return only resources that match the entire specified display name.
endpoint_service_id str
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
filters Changes to this property will trigger replacement. Sequence[databasetools.GetDatabaseToolsPrivateEndpointsFilter]
state str
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnet_id str
A filter to return only resources their subnetId matches the specified subnetId.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the entire specified display name.
endpointServiceId String
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
filters Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnetId String
A filter to return only resources their subnetId matches the specified subnetId.

getDatabaseToolsPrivateEndpoints Result

The following output properties are available:

CompartmentId string
The OCID of the compartment containing the Database Tools private endpoint.
DatabaseToolsPrivateEndpointCollections List<GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollection>
The list of database_tools_private_endpoint_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
EndpointServiceId string
The OCID of the Database Tools Endpoint Service.
Filters List<GetDatabaseToolsPrivateEndpointsFilter>
State string
The current state of the Database Tools private endpoint.
SubnetId string
The OCID of the subnet that the private endpoint belongs to.
CompartmentId string
The OCID of the compartment containing the Database Tools private endpoint.
DatabaseToolsPrivateEndpointCollections []GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollection
The list of database_tools_private_endpoint_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
EndpointServiceId string
The OCID of the Database Tools Endpoint Service.
Filters []GetDatabaseToolsPrivateEndpointsFilter
State string
The current state of the Database Tools private endpoint.
SubnetId string
The OCID of the subnet that the private endpoint belongs to.
compartmentId String
The OCID of the compartment containing the Database Tools private endpoint.
databaseToolsPrivateEndpointCollections List<GetPrivateEndpointsPrivateEndpointCollection>
The list of database_tools_private_endpoint_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
endpointServiceId String
The OCID of the Database Tools Endpoint Service.
filters List<GetPrivateEndpointsFilter>
state String
The current state of the Database Tools private endpoint.
subnetId String
The OCID of the subnet that the private endpoint belongs to.
compartmentId string
The OCID of the compartment containing the Database Tools private endpoint.
databaseToolsPrivateEndpointCollections GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollection[]
The list of database_tools_private_endpoint_collection.
id string
The provider-assigned unique ID for this managed resource.
displayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
endpointServiceId string
The OCID of the Database Tools Endpoint Service.
filters GetDatabaseToolsPrivateEndpointsFilter[]
state string
The current state of the Database Tools private endpoint.
subnetId string
The OCID of the subnet that the private endpoint belongs to.
compartment_id str
The OCID of the compartment containing the Database Tools private endpoint.
database_tools_private_endpoint_collections Sequence[databasetools.GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollection]
The list of database_tools_private_endpoint_collection.
id str
The provider-assigned unique ID for this managed resource.
display_name str
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
endpoint_service_id str
The OCID of the Database Tools Endpoint Service.
filters Sequence[databasetools.GetDatabaseToolsPrivateEndpointsFilter]
state str
The current state of the Database Tools private endpoint.
subnet_id str
The OCID of the subnet that the private endpoint belongs to.
compartmentId String
The OCID of the compartment containing the Database Tools private endpoint.
databaseToolsPrivateEndpointCollections List<Property Map>
The list of database_tools_private_endpoint_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
endpointServiceId String
The OCID of the Database Tools Endpoint Service.
filters List<Property Map>
state String
The current state of the Database Tools private endpoint.
subnetId String
The OCID of the subnet that the private endpoint belongs to.

Supporting Types

GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollection

items This property is required. List<Property Map>

GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItem

AdditionalFqdns This property is required. List<string>
A list of additional FQDNs that can be also be used for the private endpoint.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
A description of the Database Tools private endpoint.
DisplayName This property is required. string
A filter to return only resources that match the entire specified display name.
EndpointFqdn This property is required. string
Then FQDN to use for the private endpoint.
EndpointServiceId This property is required. string
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
The OCID of the Database Tools private endpoint.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Locks This property is required. List<GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemLock>
Locks associated with this resource.
NsgIds This property is required. List<string>
The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.
PrivateEndpointIp This property is required. string
The private IP address that represents the access point for the associated endpoint service.
PrivateEndpointVnicId This property is required. string
The OCID of the private endpoint's VNIC.
ReverseConnectionConfigurations This property is required. List<GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration>
Reverse connection configuration details of the private endpoint.
State This property is required. string
A filter to return only resources their lifecycleState matches the specified lifecycleState.
SubnetId This property is required. string
A filter to return only resources their subnetId matches the specified subnetId.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
TimeUpdated This property is required. string
The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string
VcnId This property is required. string
The OCID of the VCN that the private endpoint belongs to.
AdditionalFqdns This property is required. []string
A list of additional FQDNs that can be also be used for the private endpoint.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
A description of the Database Tools private endpoint.
DisplayName This property is required. string
A filter to return only resources that match the entire specified display name.
EndpointFqdn This property is required. string
Then FQDN to use for the private endpoint.
EndpointServiceId This property is required. string
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
The OCID of the Database Tools private endpoint.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Locks This property is required. []GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemLock
Locks associated with this resource.
NsgIds This property is required. []string
The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.
PrivateEndpointIp This property is required. string
The private IP address that represents the access point for the associated endpoint service.
PrivateEndpointVnicId This property is required. string
The OCID of the private endpoint's VNIC.
ReverseConnectionConfigurations This property is required. []GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration
Reverse connection configuration details of the private endpoint.
State This property is required. string
A filter to return only resources their lifecycleState matches the specified lifecycleState.
SubnetId This property is required. string
A filter to return only resources their subnetId matches the specified subnetId.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
TimeUpdated This property is required. string
The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string
VcnId This property is required. string
The OCID of the VCN that the private endpoint belongs to.
additionalFqdns This property is required. List<String>
A list of additional FQDNs that can be also be used for the private endpoint.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
A description of the Database Tools private endpoint.
displayName This property is required. String
A filter to return only resources that match the entire specified display name.
endpointFqdn This property is required. String
Then FQDN to use for the private endpoint.
endpointServiceId This property is required. String
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
The OCID of the Database Tools private endpoint.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
locks This property is required. List<GetPrivateEndpointsPrivateEndpointCollectionItemLock>
Locks associated with this resource.
nsgIds This property is required. List<String>
The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.
privateEndpointIp This property is required. String
The private IP address that represents the access point for the associated endpoint service.
privateEndpointVnicId This property is required. String
The OCID of the private endpoint's VNIC.
reverseConnectionConfigurations This property is required. List<GetPrivateEndpointsPrivateEndpointCollectionItemReverseConnectionConfiguration>
Reverse connection configuration details of the private endpoint.
state This property is required. String
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnetId This property is required. String
A filter to return only resources their subnetId matches the specified subnetId.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
timeUpdated This property is required. String
The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string
vcnId This property is required. String
The OCID of the VCN that the private endpoint belongs to.
additionalFqdns This property is required. string[]
A list of additional FQDNs that can be also be used for the private endpoint.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. string
A description of the Database Tools private endpoint.
displayName This property is required. string
A filter to return only resources that match the entire specified display name.
endpointFqdn This property is required. string
Then FQDN to use for the private endpoint.
endpointServiceId This property is required. string
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. string
The OCID of the Database Tools private endpoint.
lifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
locks This property is required. GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemLock[]
Locks associated with this resource.
nsgIds This property is required. string[]
The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.
privateEndpointIp This property is required. string
The private IP address that represents the access point for the associated endpoint service.
privateEndpointVnicId This property is required. string
The OCID of the private endpoint's VNIC.
reverseConnectionConfigurations This property is required. GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration[]
Reverse connection configuration details of the private endpoint.
state This property is required. string
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnetId This property is required. string
A filter to return only resources their subnetId matches the specified subnetId.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
timeUpdated This property is required. string
The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string
vcnId This property is required. string
The OCID of the VCN that the private endpoint belongs to.
additional_fqdns This property is required. Sequence[str]
A list of additional FQDNs that can be also be used for the private endpoint.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. str
A description of the Database Tools private endpoint.
display_name This property is required. str
A filter to return only resources that match the entire specified display name.
endpoint_fqdn This property is required. str
Then FQDN to use for the private endpoint.
endpoint_service_id This property is required. str
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. str
The OCID of the Database Tools private endpoint.
lifecycle_details This property is required. str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
locks This property is required. Sequence[databasetools.GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemLock]
Locks associated with this resource.
nsg_ids This property is required. Sequence[str]
The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.
private_endpoint_ip This property is required. str
The private IP address that represents the access point for the associated endpoint service.
private_endpoint_vnic_id This property is required. str
The OCID of the private endpoint's VNIC.
reverse_connection_configurations This property is required. Sequence[databasetools.GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration]
Reverse connection configuration details of the private endpoint.
state This property is required. str
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnet_id This property is required. str
A filter to return only resources their subnetId matches the specified subnetId.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
time_updated This property is required. str
The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string
vcn_id This property is required. str
The OCID of the VCN that the private endpoint belongs to.
additionalFqdns This property is required. List<String>
A list of additional FQDNs that can be also be used for the private endpoint.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
A description of the Database Tools private endpoint.
displayName This property is required. String
A filter to return only resources that match the entire specified display name.
endpointFqdn This property is required. String
Then FQDN to use for the private endpoint.
endpointServiceId This property is required. String
A filter to return only resources their endpointServiceId matches the specified endpointServiceId.
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
The OCID of the Database Tools private endpoint.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
locks This property is required. List<Property Map>
Locks associated with this resource.
nsgIds This property is required. List<String>
The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.
privateEndpointIp This property is required. String
The private IP address that represents the access point for the associated endpoint service.
privateEndpointVnicId This property is required. String
The OCID of the private endpoint's VNIC.
reverseConnectionConfigurations This property is required. List<Property Map>
Reverse connection configuration details of the private endpoint.
state This property is required. String
A filter to return only resources their lifecycleState matches the specified lifecycleState.
subnetId This property is required. String
A filter to return only resources their subnetId matches the specified subnetId.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
timeUpdated This property is required. String
The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string
vcnId This property is required. String
The OCID of the VCN that the private endpoint belongs to.

GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemLock

Message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId This property is required. string
The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated This property is required. string
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
Type This property is required. string
Type of the lock.
Message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId This property is required. string
The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated This property is required. string
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
Type This property is required. string
Type of the lock.
message This property is required. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. String
The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. String
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
type This property is required. String
Type of the lock.
message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. string
The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. string
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
type This property is required. string
Type of the lock.
message This property is required. str
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
related_resource_id This property is required. str
The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
time_created This property is required. str
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
type This property is required. str
Type of the lock.
message This property is required. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. String
The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. String
The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string
type This property is required. String
Type of the lock.

GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration

ReverseConnectionsSourceIps This property is required. List<GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfigurationReverseConnectionsSourceIp>
A list of IP addresses in the customer VCN to be used as the source IPs for reverse connection packets traveling from the service's VCN to the customer's VCN.
ReverseConnectionsSourceIps This property is required. []GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfigurationReverseConnectionsSourceIp
A list of IP addresses in the customer VCN to be used as the source IPs for reverse connection packets traveling from the service's VCN to the customer's VCN.
reverseConnectionsSourceIps This property is required. List<GetPrivateEndpointsPrivateEndpointCollectionItemReverseConnectionConfigurationReverseConnectionsSourceIp>
A list of IP addresses in the customer VCN to be used as the source IPs for reverse connection packets traveling from the service's VCN to the customer's VCN.
reverseConnectionsSourceIps This property is required. GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfigurationReverseConnectionsSourceIp[]
A list of IP addresses in the customer VCN to be used as the source IPs for reverse connection packets traveling from the service's VCN to the customer's VCN.
reverse_connections_source_ips This property is required. Sequence[databasetools.GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfigurationReverseConnectionsSourceIp]
A list of IP addresses in the customer VCN to be used as the source IPs for reverse connection packets traveling from the service's VCN to the customer's VCN.
reverseConnectionsSourceIps This property is required. List<Property Map>
A list of IP addresses in the customer VCN to be used as the source IPs for reverse connection packets traveling from the service's VCN to the customer's VCN.

GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfigurationReverseConnectionsSourceIp

SourceIp This property is required. string
The IP address in the customer's VCN to be used as the source IP for reverse connection packets traveling from the customer's VCN to the service's VCN.
SourceIp This property is required. string
The IP address in the customer's VCN to be used as the source IP for reverse connection packets traveling from the customer's VCN to the service's VCN.
sourceIp This property is required. String
The IP address in the customer's VCN to be used as the source IP for reverse connection packets traveling from the customer's VCN to the service's VCN.
sourceIp This property is required. string
The IP address in the customer's VCN to be used as the source IP for reverse connection packets traveling from the customer's VCN to the service's VCN.
source_ip This property is required. str
The IP address in the customer's VCN to be used as the source IP for reverse connection packets traveling from the customer's VCN to the service's VCN.
sourceIp This property is required. String
The IP address in the customer's VCN to be used as the source IP for reverse connection packets traveling from the customer's VCN to the service's VCN.

GetDatabaseToolsPrivateEndpointsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
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.25.0 published on Friday, Feb 21, 2025 by Pulumi