1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getDataSafePrivateEndpoints
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataSafe.getDataSafePrivateEndpoints

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Data Safe Private Endpoints in Oracle Cloud Infrastructure Data Safe service.

Gets a list of Data Safe private endpoints.

Example Usage

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

const testDataSafePrivateEndpoints = oci.DataSafe.getDataSafePrivateEndpoints({
    compartmentId: compartmentId,
    accessLevel: dataSafePrivateEndpointAccessLevel,
    compartmentIdInSubtree: dataSafePrivateEndpointCompartmentIdInSubtree,
    displayName: dataSafePrivateEndpointDisplayName,
    state: dataSafePrivateEndpointState,
    vcnId: testVcn.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_data_safe_private_endpoints = oci.DataSafe.get_data_safe_private_endpoints(compartment_id=compartment_id,
    access_level=data_safe_private_endpoint_access_level,
    compartment_id_in_subtree=data_safe_private_endpoint_compartment_id_in_subtree,
    display_name=data_safe_private_endpoint_display_name,
    state=data_safe_private_endpoint_state,
    vcn_id=test_vcn["id"])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetDataSafePrivateEndpoints(ctx, &datasafe.GetDataSafePrivateEndpointsArgs{
			CompartmentId:          compartmentId,
			AccessLevel:            pulumi.StringRef(dataSafePrivateEndpointAccessLevel),
			CompartmentIdInSubtree: pulumi.BoolRef(dataSafePrivateEndpointCompartmentIdInSubtree),
			DisplayName:            pulumi.StringRef(dataSafePrivateEndpointDisplayName),
			State:                  pulumi.StringRef(dataSafePrivateEndpointState),
			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 testDataSafePrivateEndpoints = Oci.DataSafe.GetDataSafePrivateEndpoints.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = dataSafePrivateEndpointAccessLevel,
        CompartmentIdInSubtree = dataSafePrivateEndpointCompartmentIdInSubtree,
        DisplayName = dataSafePrivateEndpointDisplayName,
        State = dataSafePrivateEndpointState,
        VcnId = testVcn.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetDataSafePrivateEndpointsArgs;
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 testDataSafePrivateEndpoints = DataSafeFunctions.getDataSafePrivateEndpoints(GetDataSafePrivateEndpointsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(dataSafePrivateEndpointAccessLevel)
            .compartmentIdInSubtree(dataSafePrivateEndpointCompartmentIdInSubtree)
            .displayName(dataSafePrivateEndpointDisplayName)
            .state(dataSafePrivateEndpointState)
            .vcnId(testVcn.id())
            .build());

    }
}
Copy
variables:
  testDataSafePrivateEndpoints:
    fn::invoke:
      function: oci:DataSafe:getDataSafePrivateEndpoints
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${dataSafePrivateEndpointAccessLevel}
        compartmentIdInSubtree: ${dataSafePrivateEndpointCompartmentIdInSubtree}
        displayName: ${dataSafePrivateEndpointDisplayName}
        state: ${dataSafePrivateEndpointState}
        vcnId: ${testVcn.id}
Copy

Using getDataSafePrivateEndpoints

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 getDataSafePrivateEndpoints(args: GetDataSafePrivateEndpointsArgs, opts?: InvokeOptions): Promise<GetDataSafePrivateEndpointsResult>
function getDataSafePrivateEndpointsOutput(args: GetDataSafePrivateEndpointsOutputArgs, opts?: InvokeOptions): Output<GetDataSafePrivateEndpointsResult>
Copy
def get_data_safe_private_endpoints(access_level: Optional[str] = None,
                                    compartment_id: Optional[str] = None,
                                    compartment_id_in_subtree: Optional[bool] = None,
                                    display_name: Optional[str] = None,
                                    filters: Optional[Sequence[_datasafe.GetDataSafePrivateEndpointsFilter]] = None,
                                    state: Optional[str] = None,
                                    vcn_id: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetDataSafePrivateEndpointsResult
def get_data_safe_private_endpoints_output(access_level: Optional[pulumi.Input[str]] = None,
                                    compartment_id: Optional[pulumi.Input[str]] = None,
                                    compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                    display_name: Optional[pulumi.Input[str]] = None,
                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetDataSafePrivateEndpointsFilterArgs]]]] = None,
                                    state: Optional[pulumi.Input[str]] = None,
                                    vcn_id: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetDataSafePrivateEndpointsResult]
Copy
func GetDataSafePrivateEndpoints(ctx *Context, args *GetDataSafePrivateEndpointsArgs, opts ...InvokeOption) (*GetDataSafePrivateEndpointsResult, error)
func GetDataSafePrivateEndpointsOutput(ctx *Context, args *GetDataSafePrivateEndpointsOutputArgs, opts ...InvokeOption) GetDataSafePrivateEndpointsResultOutput
Copy

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

public static class GetDataSafePrivateEndpoints 
{
    public static Task<GetDataSafePrivateEndpointsResult> InvokeAsync(GetDataSafePrivateEndpointsArgs args, InvokeOptions? opts = null)
    public static Output<GetDataSafePrivateEndpointsResult> Invoke(GetDataSafePrivateEndpointsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDataSafePrivateEndpointsResult> getDataSafePrivateEndpoints(GetDataSafePrivateEndpointsArgs args, InvokeOptions options)
public static Output<GetDataSafePrivateEndpointsResult> getDataSafePrivateEndpoints(GetDataSafePrivateEndpointsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getDataSafePrivateEndpoints:getDataSafePrivateEndpoints
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
DisplayName string
A filter to return only resources that match the specified display name.
Filters Changes to this property will trigger replacement. List<GetDataSafePrivateEndpointsFilter>
State string
A filter to return only resources that match the specified lifecycle state.
VcnId string
A filter to return only resources that match the specified VCN OCID.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
DisplayName string
A filter to return only resources that match the specified display name.
Filters Changes to this property will trigger replacement. []GetDataSafePrivateEndpointsFilter
State string
A filter to return only resources that match the specified lifecycle state.
VcnId string
A filter to return only resources that match the specified VCN OCID.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName String
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. List<GetPrivateEndpointsFilter>
state String
A filter to return only resources that match the specified lifecycle state.
vcnId String
A filter to return only resources that match the specified VCN OCID.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
accessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName string
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. GetDataSafePrivateEndpointsFilter[]
state string
A filter to return only resources that match the specified lifecycle state.
vcnId string
A filter to return only resources that match the specified VCN OCID.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
access_level str
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartment_id_in_subtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
display_name str
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. Sequence[datasafe.GetDataSafePrivateEndpointsFilter]
state str
A filter to return only resources that match the specified lifecycle state.
vcn_id str
A filter to return only resources that match the specified VCN OCID.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName String
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources that match the specified lifecycle state.
vcnId String
A filter to return only resources that match the specified VCN OCID.

getDataSafePrivateEndpoints Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
DataSafePrivateEndpoints List<GetDataSafePrivateEndpointsDataSafePrivateEndpoint>
The list of data_safe_private_endpoints.
Id string
The provider-assigned unique ID for this managed resource.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
The display name of the private endpoint.
Filters List<GetDataSafePrivateEndpointsFilter>
State string
The current state of the private endpoint.
VcnId string
The OCID of the VCN.
CompartmentId string
The OCID of the compartment.
DataSafePrivateEndpoints []GetDataSafePrivateEndpointsDataSafePrivateEndpoint
The list of data_safe_private_endpoints.
Id string
The provider-assigned unique ID for this managed resource.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
The display name of the private endpoint.
Filters []GetDataSafePrivateEndpointsFilter
State string
The current state of the private endpoint.
VcnId string
The OCID of the VCN.
compartmentId String
The OCID of the compartment.
dataSafePrivateEndpoints List<GetPrivateEndpointsPrivateEndpoint>
The list of data_safe_private_endpoints.
id String
The provider-assigned unique ID for this managed resource.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
The display name of the private endpoint.
filters List<GetPrivateEndpointsFilter>
state String
The current state of the private endpoint.
vcnId String
The OCID of the VCN.
compartmentId string
The OCID of the compartment.
dataSafePrivateEndpoints GetDataSafePrivateEndpointsDataSafePrivateEndpoint[]
The list of data_safe_private_endpoints.
id string
The provider-assigned unique ID for this managed resource.
accessLevel string
compartmentIdInSubtree boolean
displayName string
The display name of the private endpoint.
filters GetDataSafePrivateEndpointsFilter[]
state string
The current state of the private endpoint.
vcnId string
The OCID of the VCN.
compartment_id str
The OCID of the compartment.
data_safe_private_endpoints Sequence[datasafe.GetDataSafePrivateEndpointsDataSafePrivateEndpoint]
The list of data_safe_private_endpoints.
id str
The provider-assigned unique ID for this managed resource.
access_level str
compartment_id_in_subtree bool
display_name str
The display name of the private endpoint.
filters Sequence[datasafe.GetDataSafePrivateEndpointsFilter]
state str
The current state of the private endpoint.
vcn_id str
The OCID of the VCN.
compartmentId String
The OCID of the compartment.
dataSafePrivateEndpoints List<Property Map>
The list of data_safe_private_endpoints.
id String
The provider-assigned unique ID for this managed resource.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
The display name of the private endpoint.
filters List<Property Map>
state String
The current state of the private endpoint.
vcnId String
The OCID of the VCN.

Supporting Types

GetDataSafePrivateEndpointsDataSafePrivateEndpoint

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
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 private endpoint.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
EndpointFqdn This property is required. string
The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
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 Data Safe private endpoint.
NsgIds This property is required. List<string>
The OCIDs of the network security groups that the private endpoint belongs to.
PrivateEndpointId This property is required. string
The OCID of the underlying private endpoint.
PrivateEndpointIp This property is required. string
The private IP address of the private endpoint.
State This property is required. string
A filter to return only resources that match the specified lifecycle state.
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. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the private endpoint was created, in the format defined by RFC3339.
VcnId This property is required. string
A filter to return only resources that match the specified VCN OCID.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
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 private endpoint.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
EndpointFqdn This property is required. string
The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
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 Data Safe private endpoint.
NsgIds This property is required. []string
The OCIDs of the network security groups that the private endpoint belongs to.
PrivateEndpointId This property is required. string
The OCID of the underlying private endpoint.
PrivateEndpointIp This property is required. string
The private IP address of the private endpoint.
State This property is required. string
A filter to return only resources that match the specified lifecycle state.
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. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the private endpoint was created, in the format defined by RFC3339.
VcnId This property is required. string
A filter to return only resources that match the specified VCN OCID.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
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 private endpoint.
displayName This property is required. String
A filter to return only resources that match the specified display name.
endpointFqdn This property is required. String
The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
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 Data Safe private endpoint.
nsgIds This property is required. List<String>
The OCIDs of the network security groups that the private endpoint belongs to.
privateEndpointId This property is required. String
The OCID of the underlying private endpoint.
privateEndpointIp This property is required. String
The private IP address of the private endpoint.
state This property is required. String
A filter to return only resources that match the specified lifecycle state.
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. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the private endpoint was created, in the format defined by RFC3339.
vcnId This property is required. String
A filter to return only resources that match the specified VCN OCID.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
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 private endpoint.
displayName This property is required. string
A filter to return only resources that match the specified display name.
endpointFqdn This property is required. string
The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
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 Data Safe private endpoint.
nsgIds This property is required. string[]
The OCIDs of the network security groups that the private endpoint belongs to.
privateEndpointId This property is required. string
The OCID of the underlying private endpoint.
privateEndpointIp This property is required. string
The private IP address of the private endpoint.
state This property is required. string
A filter to return only resources that match the specified lifecycle state.
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. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The date and time the private endpoint was created, in the format defined by RFC3339.
vcnId This property is required. string
A filter to return only resources that match the specified VCN OCID.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
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 private endpoint.
display_name This property is required. str
A filter to return only resources that match the specified display name.
endpoint_fqdn This property is required. str
The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
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 Data Safe private endpoint.
nsg_ids This property is required. Sequence[str]
The OCIDs of the network security groups that the private endpoint belongs to.
private_endpoint_id This property is required. str
The OCID of the underlying private endpoint.
private_endpoint_ip This property is required. str
The private IP address of the private endpoint.
state This property is required. str
A filter to return only resources that match the specified lifecycle state.
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. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The date and time the private endpoint was created, in the format defined by RFC3339.
vcn_id This property is required. str
A filter to return only resources that match the specified VCN OCID.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
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 private endpoint.
displayName This property is required. String
A filter to return only resources that match the specified display name.
endpointFqdn This property is required. String
The three-label fully qualified domain name (FQDN) of the private endpoint. The customer VCN's DNS records are updated with this FQDN.
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 Data Safe private endpoint.
nsgIds This property is required. List<String>
The OCIDs of the network security groups that the private endpoint belongs to.
privateEndpointId This property is required. String
The OCID of the underlying private endpoint.
privateEndpointIp This property is required. String
The private IP address of the private endpoint.
state This property is required. String
A filter to return only resources that match the specified lifecycle state.
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. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the private endpoint was created, in the format defined by RFC3339.
vcnId This property is required. String
A filter to return only resources that match the specified VCN OCID.

GetDataSafePrivateEndpointsFilter

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.31.0 published on Thursday, Apr 17, 2025 by Pulumi