1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseTools
  5. getDatabaseToolsPrivateEndpoints
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi

oci.DatabaseTools.getDatabaseToolsPrivateEndpoints

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 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

    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 = @var.Compartment_id,
            DisplayName = @var.Database_tools_private_endpoint_display_name,
            EndpointServiceId = oci_core_service.Test_service.Id,
            State = @var.Database_tools_private_endpoint_state,
            SubnetId = oci_core_subnet.Test_subnet.Id,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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:     _var.Compartment_id,
    			DisplayName:       pulumi.StringRef(_var.Database_tools_private_endpoint_display_name),
    			EndpointServiceId: pulumi.StringRef(oci_core_service.Test_service.Id),
    			State:             pulumi.StringRef(_var.Database_tools_private_endpoint_state),
    			SubnetId:          pulumi.StringRef(oci_core_subnet.Test_subnet.Id),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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(var_.compartment_id())
                .displayName(var_.database_tools_private_endpoint_display_name())
                .endpointServiceId(oci_core_service.test_service().id())
                .state(var_.database_tools_private_endpoint_state())
                .subnetId(oci_core_subnet.test_subnet().id())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_database_tools_private_endpoints = oci.DatabaseTools.get_database_tools_private_endpoints(compartment_id=var["compartment_id"],
        display_name=var["database_tools_private_endpoint_display_name"],
        endpoint_service_id=oci_core_service["test_service"]["id"],
        state=var["database_tools_private_endpoint_state"],
        subnet_id=oci_core_subnet["test_subnet"]["id"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDatabaseToolsPrivateEndpoints = oci.DatabaseTools.getDatabaseToolsPrivateEndpoints({
        compartmentId: _var.compartment_id,
        displayName: _var.database_tools_private_endpoint_display_name,
        endpointServiceId: oci_core_service.test_service.id,
        state: _var.database_tools_private_endpoint_state,
        subnetId: oci_core_subnet.test_subnet.id,
    });
    
    variables:
      testDatabaseToolsPrivateEndpoints:
        fn::invoke:
          Function: oci:DatabaseTools:getDatabaseToolsPrivateEndpoints
          Arguments:
            compartmentId: ${var.compartment_id}
            displayName: ${var.database_tools_private_endpoint_display_name}
            endpointServiceId: ${oci_core_service.test_service.id}
            state: ${var.database_tools_private_endpoint_state}
            subnetId: ${oci_core_subnet.test_subnet.id}
    

    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>
    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]
    func GetDatabaseToolsPrivateEndpoints(ctx *Context, args *GetDatabaseToolsPrivateEndpointsArgs, opts ...InvokeOption) (*GetDatabaseToolsPrivateEndpointsResult, error)
    func GetDatabaseToolsPrivateEndpointsOutput(ctx *Context, args *GetDatabaseToolsPrivateEndpointsOutputArgs, opts ...InvokeOption) GetDatabaseToolsPrivateEndpointsResultOutput

    > 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)
    }
    public static CompletableFuture<GetDatabaseToolsPrivateEndpointsResult> getDatabaseToolsPrivateEndpoints(GetDatabaseToolsPrivateEndpointsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DatabaseTools/getDatabaseToolsPrivateEndpoints:getDatabaseToolsPrivateEndpoints
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId 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 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 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 []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 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 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 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 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 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 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 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 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 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 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

    GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItem

    AdditionalFqdns List<string>

    A list of additional FQDNs that can be also be used for the private endpoint.

    CompartmentId string

    The ID of the compartment in which to list resources.

    DefinedTags Dictionary<string, object>

    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

    Description string

    A description of the Database Tools private endpoint.

    DisplayName string

    A filter to return only resources that match the entire specified display name.

    EndpointFqdn string

    Then FQDN to use for the private endpoint.

    EndpointServiceId string

    A filter to return only resources their endpointServiceId matches the specified endpointServiceId.

    FreeformTags Dictionary<string, object>

    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Id string

    The OCID of the Database Tools private endpoint.

    LifecycleDetails 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.

    NsgIds 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 string

    The private IP address that represents the access point for the associated endpoint service.

    PrivateEndpointVnicId string

    The OCID of the private endpoint's VNIC.

    ReverseConnectionConfigurations List<GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration>

    Reverse connection configuration details of the private endpoint.

    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.

    SystemTags Dictionary<string, object>

    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    TimeCreated string

    The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string

    TimeUpdated string

    The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string

    VcnId string

    The OCID of the VCN that the private endpoint belongs to.

    AdditionalFqdns []string

    A list of additional FQDNs that can be also be used for the private endpoint.

    CompartmentId string

    The ID of the compartment in which to list resources.

    DefinedTags map[string]interface{}

    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

    Description string

    A description of the Database Tools private endpoint.

    DisplayName string

    A filter to return only resources that match the entire specified display name.

    EndpointFqdn string

    Then FQDN to use for the private endpoint.

    EndpointServiceId string

    A filter to return only resources their endpointServiceId matches the specified endpointServiceId.

    FreeformTags map[string]interface{}

    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Id string

    The OCID of the Database Tools private endpoint.

    LifecycleDetails 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.

    NsgIds []string

    The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.

    PrivateEndpointIp string

    The private IP address that represents the access point for the associated endpoint service.

    PrivateEndpointVnicId string

    The OCID of the private endpoint's VNIC.

    ReverseConnectionConfigurations []GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration

    Reverse connection configuration details of the private endpoint.

    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.

    SystemTags map[string]interface{}

    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    TimeCreated string

    The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string

    TimeUpdated string

    The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string

    VcnId string

    The OCID of the VCN that the private endpoint belongs to.

    additionalFqdns List<String>

    A list of additional FQDNs that can be also be used for the private endpoint.

    compartmentId String

    The ID of the compartment in which to list resources.

    definedTags Map<String,Object>

    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

    description String

    A description of the Database Tools private endpoint.

    displayName String

    A filter to return only resources that match the entire specified display name.

    endpointFqdn String

    Then FQDN to use for the private endpoint.

    endpointServiceId String

    A filter to return only resources their endpointServiceId matches the specified endpointServiceId.

    freeformTags Map<String,Object>

    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    id String

    The OCID of the Database Tools private endpoint.

    lifecycleDetails 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.

    nsgIds 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 String

    The private IP address that represents the access point for the associated endpoint service.

    privateEndpointVnicId String

    The OCID of the private endpoint's VNIC.

    reverseConnectionConfigurations List<GetPrivateEndpointsPrivateEndpointCollectionItemReverseConnectionConfiguration>

    Reverse connection configuration details of the private endpoint.

    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.

    systemTags Map<String,Object>

    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    timeCreated String

    The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string

    timeUpdated String

    The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string

    vcnId String

    The OCID of the VCN that the private endpoint belongs to.

    additionalFqdns string[]

    A list of additional FQDNs that can be also be used for the private endpoint.

    compartmentId string

    The ID of the compartment in which to list resources.

    definedTags {[key: string]: any}

    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

    description string

    A description of the Database Tools private endpoint.

    displayName string

    A filter to return only resources that match the entire specified display name.

    endpointFqdn string

    Then FQDN to use for the private endpoint.

    endpointServiceId string

    A filter to return only resources their endpointServiceId matches the specified endpointServiceId.

    freeformTags {[key: string]: any}

    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    id string

    The OCID of the Database Tools private endpoint.

    lifecycleDetails 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.

    nsgIds string[]

    The OCID of the network security groups that the private endpoint's VNIC belongs to. For more information about NSGs, see NetworkSecurityGroup.

    privateEndpointIp string

    The private IP address that represents the access point for the associated endpoint service.

    privateEndpointVnicId string

    The OCID of the private endpoint's VNIC.

    reverseConnectionConfigurations GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration[]

    Reverse connection configuration details of the private endpoint.

    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.

    systemTags {[key: string]: any}

    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    timeCreated string

    The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string

    timeUpdated string

    The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string

    vcnId string

    The OCID of the VCN that the private endpoint belongs to.

    additional_fqdns Sequence[str]

    A list of additional FQDNs that can be also be used for the private endpoint.

    compartment_id str

    The ID of the compartment in which to list resources.

    defined_tags Mapping[str, Any]

    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

    description str

    A description of the Database Tools private endpoint.

    display_name str

    A filter to return only resources that match the entire specified display name.

    endpoint_fqdn str

    Then FQDN to use for the private endpoint.

    endpoint_service_id str

    A filter to return only resources their endpointServiceId matches the specified endpointServiceId.

    freeform_tags Mapping[str, Any]

    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    id str

    The OCID of the Database Tools private endpoint.

    lifecycle_details 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.

    nsg_ids 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 str

    The private IP address that represents the access point for the associated endpoint service.

    private_endpoint_vnic_id str

    The OCID of the private endpoint's VNIC.

    reverse_connection_configurations GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration]

    Reverse connection configuration details of the private endpoint.

    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.

    system_tags Mapping[str, Any]

    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    time_created str

    The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string

    time_updated str

    The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string

    vcn_id str

    The OCID of the VCN that the private endpoint belongs to.

    additionalFqdns List<String>

    A list of additional FQDNs that can be also be used for the private endpoint.

    compartmentId String

    The ID of the compartment in which to list resources.

    definedTags Map<Any>

    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

    description String

    A description of the Database Tools private endpoint.

    displayName String

    A filter to return only resources that match the entire specified display name.

    endpointFqdn String

    Then FQDN to use for the private endpoint.

    endpointServiceId String

    A filter to return only resources their endpointServiceId matches the specified endpointServiceId.

    freeformTags Map<Any>

    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    id String

    The OCID of the Database Tools private endpoint.

    lifecycleDetails 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.

    nsgIds 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 String

    The private IP address that represents the access point for the associated endpoint service.

    privateEndpointVnicId String

    The OCID of the private endpoint's VNIC.

    reverseConnectionConfigurations List<Property Map>

    Reverse connection configuration details of the private endpoint.

    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.

    systemTags Map<Any>

    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}

    timeCreated String

    The time the Database Tools private endpoint was created. An RFC3339 formatted datetime string

    timeUpdated String

    The time the Database Tools private endpoint was updated. An RFC3339 formatted datetime string

    vcnId String

    The OCID of the VCN that the private endpoint belongs to.

    GetDatabaseToolsPrivateEndpointsDatabaseToolsPrivateEndpointCollectionItemReverseConnectionConfiguration

    ReverseConnectionsSourceIps 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 []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 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 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 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 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 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 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 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 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 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 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 string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values 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.

    oci logo
    Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi