1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Oda
  5. OdaPrivateEndpoint
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Oda.OdaPrivateEndpoint

Explore with Pulumi AI

This resource provides the Oda Private Endpoint resource in Oracle Cloud Infrastructure Digital Assistant service.

Starts an asynchronous job to create an ODA Private Endpoint.

To monitor the status of the job, take the opc-work-request-id response header value and use it to call GET /workRequests/{workRequestID}.

Example Usage

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

const testOdaPrivateEndpoint = new oci.oda.OdaPrivateEndpoint("test_oda_private_endpoint", {
    compartmentId: compartmentId,
    subnetId: testSubnet.id,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: odaPrivateEndpointDescription,
    displayName: odaPrivateEndpointDisplayName,
    freeformTags: {
        "bar-key": "value",
    },
    nsgIds: odaPrivateEndpointNsgIds,
});
Copy
import pulumi
import pulumi_oci as oci

test_oda_private_endpoint = oci.oda.OdaPrivateEndpoint("test_oda_private_endpoint",
    compartment_id=compartment_id,
    subnet_id=test_subnet["id"],
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=oda_private_endpoint_description,
    display_name=oda_private_endpoint_display_name,
    freeform_tags={
        "bar-key": "value",
    },
    nsg_ids=oda_private_endpoint_nsg_ids)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := oda.NewOdaPrivateEndpoint(ctx, "test_oda_private_endpoint", &oda.OdaPrivateEndpointArgs{
			CompartmentId: pulumi.Any(compartmentId),
			SubnetId:      pulumi.Any(testSubnet.Id),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			Description: pulumi.Any(odaPrivateEndpointDescription),
			DisplayName: pulumi.Any(odaPrivateEndpointDisplayName),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			NsgIds: pulumi.Any(odaPrivateEndpointNsgIds),
		})
		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 testOdaPrivateEndpoint = new Oci.Oda.OdaPrivateEndpoint("test_oda_private_endpoint", new()
    {
        CompartmentId = compartmentId,
        SubnetId = testSubnet.Id,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = odaPrivateEndpointDescription,
        DisplayName = odaPrivateEndpointDisplayName,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        NsgIds = odaPrivateEndpointNsgIds,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Oda.OdaPrivateEndpoint;
import com.pulumi.oci.Oda.OdaPrivateEndpointArgs;
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) {
        var testOdaPrivateEndpoint = new OdaPrivateEndpoint("testOdaPrivateEndpoint", OdaPrivateEndpointArgs.builder()
            .compartmentId(compartmentId)
            .subnetId(testSubnet.id())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(odaPrivateEndpointDescription)
            .displayName(odaPrivateEndpointDisplayName)
            .freeformTags(Map.of("bar-key", "value"))
            .nsgIds(odaPrivateEndpointNsgIds)
            .build());

    }
}
Copy
resources:
  testOdaPrivateEndpoint:
    type: oci:Oda:OdaPrivateEndpoint
    name: test_oda_private_endpoint
    properties:
      compartmentId: ${compartmentId}
      subnetId: ${testSubnet.id}
      definedTags:
        foo-namespace.bar-key: value
      description: ${odaPrivateEndpointDescription}
      displayName: ${odaPrivateEndpointDisplayName}
      freeformTags:
        bar-key: value
      nsgIds: ${odaPrivateEndpointNsgIds}
Copy

Create OdaPrivateEndpoint Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OdaPrivateEndpoint(name: string, args: OdaPrivateEndpointArgs, opts?: CustomResourceOptions);
@overload
def OdaPrivateEndpoint(resource_name: str,
                       args: OdaPrivateEndpointArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def OdaPrivateEndpoint(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       compartment_id: Optional[str] = None,
                       subnet_id: Optional[str] = None,
                       defined_tags: Optional[Mapping[str, str]] = None,
                       description: Optional[str] = None,
                       display_name: Optional[str] = None,
                       freeform_tags: Optional[Mapping[str, str]] = None,
                       nsg_ids: Optional[Sequence[str]] = None)
func NewOdaPrivateEndpoint(ctx *Context, name string, args OdaPrivateEndpointArgs, opts ...ResourceOption) (*OdaPrivateEndpoint, error)
public OdaPrivateEndpoint(string name, OdaPrivateEndpointArgs args, CustomResourceOptions? opts = null)
public OdaPrivateEndpoint(String name, OdaPrivateEndpointArgs args)
public OdaPrivateEndpoint(String name, OdaPrivateEndpointArgs args, CustomResourceOptions options)
type: oci:Oda:OdaPrivateEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OdaPrivateEndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OdaPrivateEndpointArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OdaPrivateEndpointArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OdaPrivateEndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OdaPrivateEndpointArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var odaPrivateEndpointResource = new Oci.Oda.OdaPrivateEndpoint("odaPrivateEndpointResource", new()
{
    CompartmentId = "string",
    SubnetId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    NsgIds = new[]
    {
        "string",
    },
});
Copy
example, err := Oda.NewOdaPrivateEndpoint(ctx, "odaPrivateEndpointResource", &Oda.OdaPrivateEndpointArgs{
	CompartmentId: pulumi.String("string"),
	SubnetId:      pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	NsgIds: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var odaPrivateEndpointResource = new OdaPrivateEndpoint("odaPrivateEndpointResource", OdaPrivateEndpointArgs.builder()
    .compartmentId("string")
    .subnetId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .nsgIds("string")
    .build());
Copy
oda_private_endpoint_resource = oci.oda.OdaPrivateEndpoint("odaPrivateEndpointResource",
    compartment_id="string",
    subnet_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    nsg_ids=["string"])
Copy
const odaPrivateEndpointResource = new oci.oda.OdaPrivateEndpoint("odaPrivateEndpointResource", {
    compartmentId: "string",
    subnetId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    nsgIds: ["string"],
});
Copy
type: oci:Oda:OdaPrivateEndpoint
properties:
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    nsgIds:
        - string
    subnetId: string
Copy

OdaPrivateEndpoint Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The OdaPrivateEndpoint resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
SubnetId
This property is required.
Changes to this property will trigger replacement.
string

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags Dictionary<string, string>
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of the ODA private endpoint.
DisplayName string
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
NsgIds List<string>
(Updatable) List of OCIDs of network security groups
CompartmentId This property is required. string
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
SubnetId
This property is required.
Changes to this property will trigger replacement.
string

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags map[string]string
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of the ODA private endpoint.
DisplayName string
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
NsgIds []string
(Updatable) List of OCIDs of network security groups
compartmentId This property is required. String
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
subnetId
This property is required.
Changes to this property will trigger replacement.
String

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String,String>
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of the ODA private endpoint.
displayName String
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsgIds List<String>
(Updatable) List of OCIDs of network security groups
compartmentId This property is required. string
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
subnetId
This property is required.
Changes to this property will trigger replacement.
string

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags {[key: string]: string}
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description string
(Updatable) Description of the ODA private endpoint.
displayName string
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsgIds string[]
(Updatable) List of OCIDs of network security groups
compartment_id This property is required. str
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
subnet_id
This property is required.
Changes to this property will trigger replacement.
str

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

defined_tags Mapping[str, str]
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description str
(Updatable) Description of the ODA private endpoint.
display_name str
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsg_ids Sequence[str]
(Updatable) List of OCIDs of network security groups
compartmentId This property is required. String
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
subnetId
This property is required.
Changes to this property will trigger replacement.
String

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String>
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of the ODA private endpoint.
displayName String
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsgIds List<String>
(Updatable) List of OCIDs of network security groups

Outputs

All input properties are implicitly available as output properties. Additionally, the OdaPrivateEndpoint resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the ODA private endpoint.
TimeCreated string
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
TimeUpdated string
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the ODA private endpoint.
TimeCreated string
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
TimeUpdated string
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the ODA private endpoint.
timeCreated String
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
timeUpdated String
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
id string
The provider-assigned unique ID for this managed resource.
state string
The current state of the ODA private endpoint.
timeCreated string
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
timeUpdated string
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
id str
The provider-assigned unique ID for this managed resource.
state str
The current state of the ODA private endpoint.
time_created str
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
time_updated str
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the ODA private endpoint.
timeCreated String
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
timeUpdated String
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.

Look up Existing OdaPrivateEndpoint Resource

Get an existing OdaPrivateEndpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: OdaPrivateEndpointState, opts?: CustomResourceOptions): OdaPrivateEndpoint
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        nsg_ids: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        subnet_id: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> OdaPrivateEndpoint
func GetOdaPrivateEndpoint(ctx *Context, name string, id IDInput, state *OdaPrivateEndpointState, opts ...ResourceOption) (*OdaPrivateEndpoint, error)
public static OdaPrivateEndpoint Get(string name, Input<string> id, OdaPrivateEndpointState? state, CustomResourceOptions? opts = null)
public static OdaPrivateEndpoint get(String name, Output<String> id, OdaPrivateEndpointState state, CustomResourceOptions options)
resources:  _:    type: oci:Oda:OdaPrivateEndpoint    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CompartmentId string
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
DefinedTags Dictionary<string, string>
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of the ODA private endpoint.
DisplayName string
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
NsgIds List<string>
(Updatable) List of OCIDs of network security groups
State string
The current state of the ODA private endpoint.
SubnetId Changes to this property will trigger replacement. string

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

TimeCreated string
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
TimeUpdated string
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
CompartmentId string
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
DefinedTags map[string]string
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description of the ODA private endpoint.
DisplayName string
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
NsgIds []string
(Updatable) List of OCIDs of network security groups
State string
The current state of the ODA private endpoint.
SubnetId Changes to this property will trigger replacement. string

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

TimeCreated string
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
TimeUpdated string
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
compartmentId String
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
definedTags Map<String,String>
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of the ODA private endpoint.
displayName String
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsgIds List<String>
(Updatable) List of OCIDs of network security groups
state String
The current state of the ODA private endpoint.
subnetId Changes to this property will trigger replacement. String

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

timeCreated String
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
timeUpdated String
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
compartmentId string
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
definedTags {[key: string]: string}
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description string
(Updatable) Description of the ODA private endpoint.
displayName string
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsgIds string[]
(Updatable) List of OCIDs of network security groups
state string
The current state of the ODA private endpoint.
subnetId Changes to this property will trigger replacement. string

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

timeCreated string
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
timeUpdated string
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
compartment_id str
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
defined_tags Mapping[str, str]
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description str
(Updatable) Description of the ODA private endpoint.
display_name str
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsg_ids Sequence[str]
(Updatable) List of OCIDs of network security groups
state str
The current state of the ODA private endpoint.
subnet_id Changes to this property will trigger replacement. str

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

time_created str
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
time_updated str
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.
compartmentId String
(Updatable) The OCID of the compartment that the ODA private endpoint belongs to.
definedTags Map<String>
(Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description of the ODA private endpoint.
displayName String
(Updatable) User-defined name for the ODA private endpoint. Avoid entering confidential information. You can change this value.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Example: {"bar-key": "value"}
nsgIds List<String>
(Updatable) List of OCIDs of network security groups
state String
The current state of the ODA private endpoint.
subnetId Changes to this property will trigger replacement. String

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

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

timeCreated String
When the resource was created. A date-time string as described in RFC 3339, section 14.29.
timeUpdated String
When the resource was last updated. A date-time string as described in RFC 3339, section 14.29.

Import

OdaPrivateEndpoints can be imported using the id, e.g.

$ pulumi import oci:Oda/odaPrivateEndpoint:OdaPrivateEndpoint test_oda_private_endpoint "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.