Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.ResourceManager.getPrivateEndpoints
Start a Neo task
Explain and create an oci.ResourceManager.getPrivateEndpoints resource
This data source provides the list of Private Endpoints in Oracle Cloud Infrastructure Resource Manager service.
Lists private endpoints according to the specified filter. For more information, see Listing Private Endpoints.
- For
compartmentId, lists all private endpoints in the matching compartment. - For
privateEndpointId, lists the matching private endpoint.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPrivateEndpoints = oci.ResourceManager.getPrivateEndpoints({
compartmentId: compartmentId,
displayName: privateEndpointDisplayName,
privateEndpointId: testPrivateEndpoint.id,
vcnId: testVcn.id,
});
import pulumi
import pulumi_oci as oci
test_private_endpoints = oci.ResourceManager.get_private_endpoints(compartment_id=compartment_id,
display_name=private_endpoint_display_name,
private_endpoint_id=test_private_endpoint["id"],
vcn_id=test_vcn["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/resourcemanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := resourcemanager.GetPrivateEndpoints(ctx, &resourcemanager.GetPrivateEndpointsArgs{
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(privateEndpointDisplayName),
PrivateEndpointId: pulumi.StringRef(testPrivateEndpoint.Id),
VcnId: pulumi.StringRef(testVcn.Id),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testPrivateEndpoints = Oci.ResourceManager.GetPrivateEndpoints.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = privateEndpointDisplayName,
PrivateEndpointId = testPrivateEndpoint.Id,
VcnId = testVcn.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ResourceManager.ResourceManagerFunctions;
import com.pulumi.oci.ResourceManager.inputs.GetPrivateEndpointsArgs;
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 testPrivateEndpoints = ResourceManagerFunctions.getPrivateEndpoints(GetPrivateEndpointsArgs.builder()
.compartmentId(compartmentId)
.displayName(privateEndpointDisplayName)
.privateEndpointId(testPrivateEndpoint.id())
.vcnId(testVcn.id())
.build());
}
}
variables:
testPrivateEndpoints:
fn::invoke:
function: oci:ResourceManager:getPrivateEndpoints
arguments:
compartmentId: ${compartmentId}
displayName: ${privateEndpointDisplayName}
privateEndpointId: ${testPrivateEndpoint.id}
vcnId: ${testVcn.id}
Using getPrivateEndpoints
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 getPrivateEndpoints(args: GetPrivateEndpointsArgs, opts?: InvokeOptions): Promise<GetPrivateEndpointsResult>
function getPrivateEndpointsOutput(args: GetPrivateEndpointsOutputArgs, opts?: InvokeOptions): Output<GetPrivateEndpointsResult>def get_private_endpoints(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetPrivateEndpointsFilter]] = None,
private_endpoint_id: Optional[str] = None,
vcn_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPrivateEndpointsResult
def get_private_endpoints_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetPrivateEndpointsFilterArgs]]]] = None,
private_endpoint_id: Optional[pulumi.Input[str]] = None,
vcn_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPrivateEndpointsResult]func GetPrivateEndpoints(ctx *Context, args *GetPrivateEndpointsArgs, opts ...InvokeOption) (*GetPrivateEndpointsResult, error)
func GetPrivateEndpointsOutput(ctx *Context, args *GetPrivateEndpointsOutputArgs, opts ...InvokeOption) GetPrivateEndpointsResultOutput> Note: This function is named GetPrivateEndpoints in the Go SDK.
public static class GetPrivateEndpoints
{
public static Task<GetPrivateEndpointsResult> InvokeAsync(GetPrivateEndpointsArgs args, InvokeOptions? opts = null)
public static Output<GetPrivateEndpointsResult> Invoke(GetPrivateEndpointsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPrivateEndpointsResult> getPrivateEndpoints(GetPrivateEndpointsArgs args, InvokeOptions options)
public static Output<GetPrivateEndpointsResult> getPrivateEndpoints(GetPrivateEndpointsArgs args, InvokeOptions options)
fn::invoke:
function: oci:ResourceManager/getPrivateEndpoints:getPrivateEndpoints
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - A filter to return only resources that exist in the compartment, identified by OCID.
- Display
Name string - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - Filters
List<Get
Private Endpoints Filter> - Private
Endpoint stringId - The OCID of the private endpoint.
- Vcn
Id string - The OCID of the VCN.
- Compartment
Id string - A filter to return only resources that exist in the compartment, identified by OCID.
- Display
Name string - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - Filters
[]Get
Private Endpoints Filter - Private
Endpoint stringId - The OCID of the private endpoint.
- Vcn
Id string - The OCID of the VCN.
- compartment
Id String - A filter to return only resources that exist in the compartment, identified by OCID.
- display
Name String - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - filters
List<Get
Private Endpoints Filter> - private
Endpoint StringId - The OCID of the private endpoint.
- vcn
Id String - The OCID of the VCN.
- compartment
Id string - A filter to return only resources that exist in the compartment, identified by OCID.
- display
Name string - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - filters
Get
Private Endpoints Filter[] - private
Endpoint stringId - The OCID of the private endpoint.
- vcn
Id string - The OCID of the VCN.
- compartment_
id str - A filter to return only resources that exist in the compartment, identified by OCID.
- display_
name str - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - filters
Sequence[Get
Private Endpoints Filter] - private_
endpoint_ strid - The OCID of the private endpoint.
- vcn_
id str - The OCID of the VCN.
- compartment
Id String - A filter to return only resources that exist in the compartment, identified by OCID.
- display
Name String - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - filters List<Property Map>
- private
Endpoint StringId - The OCID of the private endpoint.
- vcn
Id String - The OCID of the VCN.
getPrivateEndpoints Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Endpoint List<GetCollections Private Endpoints Private Endpoint Collection> - The list of private_endpoint_collection.
- Compartment
Id string - The OCID of the compartment containing this private endpoint.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Private Endpoints Filter> - Private
Endpoint stringId - Vcn
Id string - The OCID of the VCN for the private endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Endpoint []GetCollections Private Endpoints Private Endpoint Collection - The list of private_endpoint_collection.
- Compartment
Id string - The OCID of the compartment containing this private endpoint.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Private Endpoints Filter - Private
Endpoint stringId - Vcn
Id string - The OCID of the VCN for the private endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- private
Endpoint List<GetCollections Private Endpoints Private Endpoint Collection> - The list of private_endpoint_collection.
- compartment
Id String - The OCID of the compartment containing this private endpoint.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Private Endpoints Filter> - private
Endpoint StringId - vcn
Id String - The OCID of the VCN for the private endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- private
Endpoint GetCollections Private Endpoints Private Endpoint Collection[] - The list of private_endpoint_collection.
- compartment
Id string - The OCID of the compartment containing this private endpoint.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Private Endpoints Filter[] - private
Endpoint stringId - vcn
Id string - The OCID of the VCN for the private endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- private_
endpoint_ Sequence[Getcollections Private Endpoints Private Endpoint Collection] - The list of private_endpoint_collection.
- compartment_
id str - The OCID of the compartment containing this private endpoint.
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[Get
Private Endpoints Filter] - private_
endpoint_ strid - vcn_
id str - The OCID of the VCN for the private endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- private
Endpoint List<Property Map>Collections - The list of private_endpoint_collection.
- compartment
Id String - The OCID of the compartment containing this private endpoint.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- private
Endpoint StringId - vcn
Id String - The OCID of the VCN for the private endpoint.
Supporting Types
GetPrivateEndpointsFilter
GetPrivateEndpointsPrivateEndpointCollection
GetPrivateEndpointsPrivateEndpointCollectionItem
- Compartment
Id string - A filter to return only resources that exist in the compartment, identified by OCID.
- 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 string
- Description of the private endpoint. Avoid entering confidential information.
- Display
Name string - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - Dns
Zones List<string> - DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. Specify DNS fully qualified domain names (FQDNs); DNS Proxy forwards related DNS FQDN queries to the consumer DNS resolver. For DNS FQDNs not specified, queries go to service provider VCN resolver. Example:
abc.oraclevcn.com - Dictionary<string, string>
- Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Id string
- The OCID of the private endpoint.
- Is
Used boolWith Configuration Source Provider - When
true, allows the private endpoint to be used with a configuration source provider. - Nsg
Id List<string>Lists - The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.
- Security
Attributes Dictionary<string, string> - Security attributes are labels for a resource that can be referenced in a Zero Trust Packet Routing (ZPR) policy to control access to ZPR-supported resources. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}} - Source
Ips List<string> - The source IP addresses that Resource Manager uses to connect to your network. Automatically assigned by Resource Manager.
- State string
- The current lifecycle state of the private endpoint.
- Subnet
Id string - The OCID of the subnet within the VCN for the private endpoint.
- Dictionary<string, string>
- The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}} - Time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z - Vcn
Id string - The OCID of the VCN.
- Compartment
Id string - A filter to return only resources that exist in the compartment, identified by OCID.
- 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 string
- Description of the private endpoint. Avoid entering confidential information.
- Display
Name string - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - Dns
Zones []string - DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. Specify DNS fully qualified domain names (FQDNs); DNS Proxy forwards related DNS FQDN queries to the consumer DNS resolver. For DNS FQDNs not specified, queries go to service provider VCN resolver. Example:
abc.oraclevcn.com - map[string]string
- Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Id string
- The OCID of the private endpoint.
- Is
Used boolWith Configuration Source Provider - When
true, allows the private endpoint to be used with a configuration source provider. - Nsg
Id []stringLists - The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.
- Security
Attributes map[string]string - Security attributes are labels for a resource that can be referenced in a Zero Trust Packet Routing (ZPR) policy to control access to ZPR-supported resources. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}} - Source
Ips []string - The source IP addresses that Resource Manager uses to connect to your network. Automatically assigned by Resource Manager.
- State string
- The current lifecycle state of the private endpoint.
- Subnet
Id string - The OCID of the subnet within the VCN for the private endpoint.
- map[string]string
- The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}} - Time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z - Vcn
Id string - The OCID of the VCN.
- compartment
Id String - A filter to return only resources that exist in the compartment, identified by OCID.
- 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 String
- Description of the private endpoint. Avoid entering confidential information.
- display
Name String - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - dns
Zones List<String> - DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. Specify DNS fully qualified domain names (FQDNs); DNS Proxy forwards related DNS FQDN queries to the consumer DNS resolver. For DNS FQDNs not specified, queries go to service provider VCN resolver. Example:
abc.oraclevcn.com - Map<String,String>
- Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id String
- The OCID of the private endpoint.
- is
Used BooleanWith Configuration Source Provider - When
true, allows the private endpoint to be used with a configuration source provider. - nsg
Id List<String>Lists - The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.
- security
Attributes Map<String,String> - Security attributes are labels for a resource that can be referenced in a Zero Trust Packet Routing (ZPR) policy to control access to ZPR-supported resources. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}} - source
Ips List<String> - The source IP addresses that Resource Manager uses to connect to your network. Automatically assigned by Resource Manager.
- state String
- The current lifecycle state of the private endpoint.
- subnet
Id String - The OCID of the subnet within the VCN for the private endpoint.
- Map<String,String>
- The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}} - time
Created String - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z - vcn
Id String - The OCID of the VCN.
- compartment
Id string - A filter to return only resources that exist in the compartment, identified by OCID.
- {[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 string
- Description of the private endpoint. Avoid entering confidential information.
- display
Name string - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - dns
Zones string[] - DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. Specify DNS fully qualified domain names (FQDNs); DNS Proxy forwards related DNS FQDN queries to the consumer DNS resolver. For DNS FQDNs not specified, queries go to service provider VCN resolver. Example:
abc.oraclevcn.com - {[key: string]: string}
- Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id string
- The OCID of the private endpoint.
- is
Used booleanWith Configuration Source Provider - When
true, allows the private endpoint to be used with a configuration source provider. - nsg
Id string[]Lists - The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.
- security
Attributes {[key: string]: string} - Security attributes are labels for a resource that can be referenced in a Zero Trust Packet Routing (ZPR) policy to control access to ZPR-supported resources. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}} - source
Ips string[] - The source IP addresses that Resource Manager uses to connect to your network. Automatically assigned by Resource Manager.
- state string
- The current lifecycle state of the private endpoint.
- subnet
Id string - The OCID of the subnet within the VCN for the private endpoint.
- {[key: string]: string}
- The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}} - time
Created string - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z - vcn
Id string - The OCID of the VCN.
- compartment_
id str - A filter to return only resources that exist in the compartment, identified by OCID.
- 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 str
- Description of the private endpoint. Avoid entering confidential information.
- display_
name str - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - dns_
zones Sequence[str] - DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. Specify DNS fully qualified domain names (FQDNs); DNS Proxy forwards related DNS FQDN queries to the consumer DNS resolver. For DNS FQDNs not specified, queries go to service provider VCN resolver. Example:
abc.oraclevcn.com - Mapping[str, str]
- Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id str
- The OCID of the private endpoint.
- is_
used_ boolwith_ configuration_ source_ provider - When
true, allows the private endpoint to be used with a configuration source provider. - nsg_
id_ Sequence[str]lists - The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.
- security_
attributes Mapping[str, str] - Security attributes are labels for a resource that can be referenced in a Zero Trust Packet Routing (ZPR) policy to control access to ZPR-supported resources. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}} - source_
ips Sequence[str] - The source IP addresses that Resource Manager uses to connect to your network. Automatically assigned by Resource Manager.
- state str
- The current lifecycle state of the private endpoint.
- subnet_
id str - The OCID of the subnet within the VCN for the private endpoint.
- Mapping[str, str]
- The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}} - time_
created str - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z - vcn_
id str - The OCID of the VCN.
- compartment
Id String - A filter to return only resources that exist in the compartment, identified by OCID.
- 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 String
- Description of the private endpoint. Avoid entering confidential information.
- display
Name String - A filter to return only resources that match the given display name exactly. Use this filter to list a resource by name. Requires
sortByset toDISPLAYNAME. Alternatively, when you know the resource OCID, use the related Get operation. - dns
Zones List<String> - DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. Specify DNS fully qualified domain names (FQDNs); DNS Proxy forwards related DNS FQDN queries to the consumer DNS resolver. For DNS FQDNs not specified, queries go to service provider VCN resolver. Example:
abc.oraclevcn.com - Map<String>
- Free-form tags associated with the resource. Each tag is a key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - id String
- The OCID of the private endpoint.
- is
Used BooleanWith Configuration Source Provider - When
true, allows the private endpoint to be used with a configuration source provider. - nsg
Id List<String>Lists - The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.
- security
Attributes Map<String> - Security attributes are labels for a resource that can be referenced in a Zero Trust Packet Routing (ZPR) policy to control access to ZPR-supported resources. Example:
{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}} - source
Ips List<String> - The source IP addresses that Resource Manager uses to connect to your network. Automatically assigned by Resource Manager.
- state String
- The current lifecycle state of the private endpoint.
- subnet
Id String - The OCID of the subnet within the VCN for the private endpoint.
- Map<String>
- The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}} - time
Created String - The date and time at which the private endpoint was created. Format is defined by RFC3339. Example:
2020-11-25T21:10:29.600Z - vcn
Id String - The OCID of the VCN.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
