oci.DataScience.PrivateEndpoint
Explore with Pulumi AI
This resource provides the Data Science Private Endpoint resource in Oracle Cloud Infrastructure Data Science service.
Creates a Data Science private endpoint to be used by a Data Science resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDataSciencePrivateEndpoint = new oci.datascience.PrivateEndpoint("test_data_science_private_endpoint", {
    compartmentId: compartmentId,
    dataScienceResourceType: dataSciencePrivateEndpointDataScienceResourceType,
    subnetId: testSubnet.id,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: dataSciencePrivateEndpointDescription,
    displayName: dataSciencePrivateEndpointDisplayName,
    freeformTags: {
        Department: "Finance",
    },
    nsgIds: dataSciencePrivateEndpointNsgIds,
    subDomain: dataSciencePrivateEndpointSubDomain,
});
import pulumi
import pulumi_oci as oci
test_data_science_private_endpoint = oci.data_science.PrivateEndpoint("test_data_science_private_endpoint",
    compartment_id=compartment_id,
    data_science_resource_type=data_science_private_endpoint_data_science_resource_type,
    subnet_id=test_subnet["id"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=data_science_private_endpoint_description,
    display_name=data_science_private_endpoint_display_name,
    freeform_tags={
        "Department": "Finance",
    },
    nsg_ids=data_science_private_endpoint_nsg_ids,
    sub_domain=data_science_private_endpoint_sub_domain)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datascience"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datascience.NewPrivateEndpoint(ctx, "test_data_science_private_endpoint", &datascience.PrivateEndpointArgs{
			CompartmentId:           pulumi.Any(compartmentId),
			DataScienceResourceType: pulumi.Any(dataSciencePrivateEndpointDataScienceResourceType),
			SubnetId:                pulumi.Any(testSubnet.Id),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(dataSciencePrivateEndpointDescription),
			DisplayName: pulumi.Any(dataSciencePrivateEndpointDisplayName),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			NsgIds:    pulumi.Any(dataSciencePrivateEndpointNsgIds),
			SubDomain: pulumi.Any(dataSciencePrivateEndpointSubDomain),
		})
		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 testDataSciencePrivateEndpoint = new Oci.DataScience.PrivateEndpoint("test_data_science_private_endpoint", new()
    {
        CompartmentId = compartmentId,
        DataScienceResourceType = dataSciencePrivateEndpointDataScienceResourceType,
        SubnetId = testSubnet.Id,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = dataSciencePrivateEndpointDescription,
        DisplayName = dataSciencePrivateEndpointDisplayName,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        NsgIds = dataSciencePrivateEndpointNsgIds,
        SubDomain = dataSciencePrivateEndpointSubDomain,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataScience.PrivateEndpoint;
import com.pulumi.oci.DataScience.PrivateEndpointArgs;
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 testDataSciencePrivateEndpoint = new PrivateEndpoint("testDataSciencePrivateEndpoint", PrivateEndpointArgs.builder()
            .compartmentId(compartmentId)
            .dataScienceResourceType(dataSciencePrivateEndpointDataScienceResourceType)
            .subnetId(testSubnet.id())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(dataSciencePrivateEndpointDescription)
            .displayName(dataSciencePrivateEndpointDisplayName)
            .freeformTags(Map.of("Department", "Finance"))
            .nsgIds(dataSciencePrivateEndpointNsgIds)
            .subDomain(dataSciencePrivateEndpointSubDomain)
            .build());
    }
}
resources:
  testDataSciencePrivateEndpoint:
    type: oci:DataScience:PrivateEndpoint
    name: test_data_science_private_endpoint
    properties:
      compartmentId: ${compartmentId}
      dataScienceResourceType: ${dataSciencePrivateEndpointDataScienceResourceType}
      subnetId: ${testSubnet.id}
      definedTags:
        Operations.CostCenter: '42'
      description: ${dataSciencePrivateEndpointDescription}
      displayName: ${dataSciencePrivateEndpointDisplayName}
      freeformTags:
        Department: Finance
      nsgIds: ${dataSciencePrivateEndpointNsgIds}
      subDomain: ${dataSciencePrivateEndpointSubDomain}
Create PrivateEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PrivateEndpoint(name: string, args: PrivateEndpointArgs, opts?: CustomResourceOptions);@overload
def PrivateEndpoint(resource_name: str,
                    args: PrivateEndpointArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def PrivateEndpoint(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    compartment_id: Optional[str] = None,
                    data_science_resource_type: 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,
                    sub_domain: Optional[str] = None)func NewPrivateEndpoint(ctx *Context, name string, args PrivateEndpointArgs, opts ...ResourceOption) (*PrivateEndpoint, error)public PrivateEndpoint(string name, PrivateEndpointArgs args, CustomResourceOptions? opts = null)
public PrivateEndpoint(String name, PrivateEndpointArgs args)
public PrivateEndpoint(String name, PrivateEndpointArgs args, CustomResourceOptions options)
type: oci:DataScience:PrivateEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PrivateEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PrivateEndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PrivateEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateEndpointArgs
- 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 ociPrivateEndpointResource = new Oci.DataScience.PrivateEndpoint("ociPrivateEndpointResource", new()
{
    CompartmentId = "string",
    DataScienceResourceType = "string",
    SubnetId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    NsgIds = new[]
    {
        "string",
    },
    SubDomain = "string",
});
example, err := datascience.NewPrivateEndpoint(ctx, "ociPrivateEndpointResource", &datascience.PrivateEndpointArgs{
	CompartmentId:           pulumi.String("string"),
	DataScienceResourceType: 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"),
	},
	SubDomain: pulumi.String("string"),
})
var ociPrivateEndpointResource = new com.pulumi.oci.DataScience.PrivateEndpoint("ociPrivateEndpointResource", com.pulumi.oci.DataScience.PrivateEndpointArgs.builder()
    .compartmentId("string")
    .dataScienceResourceType("string")
    .subnetId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .nsgIds("string")
    .subDomain("string")
    .build());
oci_private_endpoint_resource = oci.data_science.PrivateEndpoint("ociPrivateEndpointResource",
    compartment_id="string",
    data_science_resource_type="string",
    subnet_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    nsg_ids=["string"],
    sub_domain="string")
const ociPrivateEndpointResource = new oci.datascience.PrivateEndpoint("ociPrivateEndpointResource", {
    compartmentId: "string",
    dataScienceResourceType: "string",
    subnetId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    nsgIds: ["string"],
    subDomain: "string",
});
type: oci:DataScience:PrivateEndpoint
properties:
    compartmentId: string
    dataScienceResourceType: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    nsgIds:
        - string
    subDomain: string
    subnetId: string
PrivateEndpoint 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 PrivateEndpoint resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- DataScience stringResource Type 
- Data Science resource type.
- SubnetId string
- The OCID of the subnet. - ** 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 
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user friendly description. Avoid entering confidential information.
- DisplayName string
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- NsgIds List<string>
- (Updatable) An array of network security group OCIDs.
- SubDomain string
- Subdomain for a private endpoint FQDN.
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- DataScience stringResource Type 
- Data Science resource type.
- SubnetId string
- The OCID of the subnet. - ** 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 
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user friendly description. Avoid entering confidential information.
- DisplayName string
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- NsgIds []string
- (Updatable) An array of network security group OCIDs.
- SubDomain string
- Subdomain for a private endpoint FQDN.
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- dataScience StringResource Type 
- Data Science resource type.
- subnetId String
- The OCID of the subnet. - ** 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 
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user friendly description. Avoid entering confidential information.
- displayName String
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- nsgIds List<String>
- (Updatable) An array of network security group OCIDs.
- subDomain String
- Subdomain for a private endpoint FQDN.
- compartmentId string
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- dataScience stringResource Type 
- Data Science resource type.
- subnetId string
- The OCID of the subnet. - ** 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 
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- (Updatable) A user friendly description. Avoid entering confidential information.
- displayName string
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- nsgIds string[]
- (Updatable) An array of network security group OCIDs.
- subDomain string
- Subdomain for a private endpoint FQDN.
- compartment_id str
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- data_science_ strresource_ type 
- Data Science resource type.
- subnet_id str
- The OCID of the subnet. - ** 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 
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- (Updatable) A user friendly description. Avoid entering confidential information.
- display_name str
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- nsg_ids Sequence[str]
- (Updatable) An array of network security group OCIDs.
- sub_domain str
- Subdomain for a private endpoint FQDN.
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- dataScience StringResource Type 
- Data Science resource type.
- subnetId String
- The OCID of the subnet. - ** 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 
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user friendly description. Avoid entering confidential information.
- displayName String
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- nsgIds List<String>
- (Updatable) An array of network security group OCIDs.
- subDomain String
- Subdomain for a private endpoint FQDN.
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateEndpoint resource produces the following output properties:
- CreatedBy string
- The OCID of the user that created the private endpoint.
- Fqdn string
- Accesing the Data Science resource using FQDN.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- Details of the state of Data Science private endpoint.
- State string
- State of the Data Science private endpoint.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- CreatedBy string
- The OCID of the user that created the private endpoint.
- Fqdn string
- Accesing the Data Science resource using FQDN.
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- Details of the state of Data Science private endpoint.
- State string
- State of the Data Science private endpoint.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- createdBy String
- The OCID of the user that created the private endpoint.
- fqdn String
- Accesing the Data Science resource using FQDN.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- Details of the state of Data Science private endpoint.
- state String
- State of the Data Science private endpoint.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- createdBy string
- The OCID of the user that created the private endpoint.
- fqdn string
- Accesing the Data Science resource using FQDN.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails string
- Details of the state of Data Science private endpoint.
- state string
- State of the Data Science private endpoint.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated string
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- created_by str
- The OCID of the user that created the private endpoint.
- fqdn str
- Accesing the Data Science resource using FQDN.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_details str
- Details of the state of Data Science private endpoint.
- state str
- State of the Data Science private endpoint.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- time_updated str
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- createdBy String
- The OCID of the user that created the private endpoint.
- fqdn String
- Accesing the Data Science resource using FQDN.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- Details of the state of Data Science private endpoint.
- state String
- State of the Data Science private endpoint.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
Look up Existing PrivateEndpoint Resource
Get an existing PrivateEndpoint 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?: PrivateEndpointState, opts?: CustomResourceOptions): PrivateEndpoint@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        created_by: Optional[str] = None,
        data_science_resource_type: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        fqdn: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        nsg_ids: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        sub_domain: Optional[str] = None,
        subnet_id: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> PrivateEndpointfunc GetPrivateEndpoint(ctx *Context, name string, id IDInput, state *PrivateEndpointState, opts ...ResourceOption) (*PrivateEndpoint, error)public static PrivateEndpoint Get(string name, Input<string> id, PrivateEndpointState? state, CustomResourceOptions? opts = null)public static PrivateEndpoint get(String name, Output<String> id, PrivateEndpointState state, CustomResourceOptions options)resources:  _:    type: oci:DataScience:PrivateEndpoint    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- CreatedBy string
- The OCID of the user that created the private endpoint.
- DataScience stringResource Type 
- Data Science resource type.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user friendly description. Avoid entering confidential information.
- DisplayName string
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- Fqdn string
- Accesing the Data Science resource using FQDN.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- LifecycleDetails string
- Details of the state of Data Science private endpoint.
- NsgIds List<string>
- (Updatable) An array of network security group OCIDs.
- State string
- State of the Data Science private endpoint.
- SubDomain string
- Subdomain for a private endpoint FQDN.
- SubnetId string
- The OCID of the subnet. - ** 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 
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- CompartmentId string
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- CreatedBy string
- The OCID of the user that created the private endpoint.
- DataScience stringResource Type 
- Data Science resource type.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- Description string
- (Updatable) A user friendly description. Avoid entering confidential information.
- DisplayName string
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- Fqdn string
- Accesing the Data Science resource using FQDN.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- LifecycleDetails string
- Details of the state of Data Science private endpoint.
- NsgIds []string
- (Updatable) An array of network security group OCIDs.
- State string
- State of the Data Science private endpoint.
- SubDomain string
- Subdomain for a private endpoint FQDN.
- SubnetId string
- The OCID of the subnet. - ** 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 
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- TimeUpdated string
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- createdBy String
- The OCID of the user that created the private endpoint.
- dataScience StringResource Type 
- Data Science resource type.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user friendly description. Avoid entering confidential information.
- displayName String
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- fqdn String
- Accesing the Data Science resource using FQDN.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- lifecycleDetails String
- Details of the state of Data Science private endpoint.
- nsgIds List<String>
- (Updatable) An array of network security group OCIDs.
- state String
- State of the Data Science private endpoint.
- subDomain String
- Subdomain for a private endpoint FQDN.
- subnetId String
- The OCID of the subnet. - ** 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 
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- compartmentId string
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- createdBy string
- The OCID of the user that created the private endpoint.
- dataScience stringResource Type 
- Data Science resource type.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description string
- (Updatable) A user friendly description. Avoid entering confidential information.
- displayName string
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- fqdn string
- Accesing the Data Science resource using FQDN.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- lifecycleDetails string
- Details of the state of Data Science private endpoint.
- nsgIds string[]
- (Updatable) An array of network security group OCIDs.
- state string
- State of the Data Science private endpoint.
- subDomain string
- Subdomain for a private endpoint FQDN.
- subnetId string
- The OCID of the subnet. - ** 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 
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated string
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- compartment_id str
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- created_by str
- The OCID of the user that created the private endpoint.
- data_science_ strresource_ type 
- Data Science resource type.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description str
- (Updatable) A user friendly description. Avoid entering confidential information.
- display_name str
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- fqdn str
- Accesing the Data Science resource using FQDN.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- lifecycle_details str
- Details of the state of Data Science private endpoint.
- nsg_ids Sequence[str]
- (Updatable) An array of network security group OCIDs.
- state str
- State of the Data Science private endpoint.
- sub_domain str
- Subdomain for a private endpoint FQDN.
- subnet_id str
- The OCID of the subnet. - ** 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 
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- time_updated str
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- compartmentId String
- (Updatable) The OCID of the compartment where you want to create the private endpoint.
- createdBy String
- The OCID of the user that created the private endpoint.
- dataScience StringResource Type 
- Data Science resource type.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"Operations.CostCenter": "42"}
- description String
- (Updatable) A user friendly description. Avoid entering confidential information.
- displayName String
- (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
- fqdn String
- Accesing the Data Science resource using FQDN.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: {"Department": "Finance"}
- lifecycleDetails String
- Details of the state of Data Science private endpoint.
- nsgIds List<String>
- (Updatable) An array of network security group OCIDs.
- state String
- State of the Data Science private endpoint.
- subDomain String
- Subdomain for a private endpoint FQDN.
- subnetId String
- The OCID of the subnet. - ** 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 
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
- timeUpdated String
- The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
Import
DataSciencePrivateEndpoints can be imported using the id, e.g.
$ pulumi import oci:DataScience/privateEndpoint:PrivateEndpoint test_data_science_private_endpoint "id"
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 ociTerraform Provider.