1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataScience
  5. PrivateEndpoint
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.DataScience.PrivateEndpoint

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    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/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.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			Description: pulumi.Any(dataSciencePrivateEndpointDescription),
    			DisplayName: pulumi.Any(dataSciencePrivateEndpointDisplayName),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("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, Any]] = None,
                        description: Optional[str] = None,
                        display_name: Optional[str] = None,
                        freeform_tags: Optional[Mapping[str, Any]] = 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.

    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", "any" },
        },
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        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.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	NsgIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SubDomain: pulumi.String("string"),
    })
    
    var ociPrivateEndpointResource = new PrivateEndpoint("ociPrivateEndpointResource", PrivateEndpointArgs.builder()        
        .compartmentId("string")
        .dataScienceResourceType("string")
        .subnetId("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "any"))
        .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": "any",
        },
        description="string",
        display_name="string",
        freeform_tags={
            "string": "any",
        },
        nsg_ids=["string"],
        sub_domain="string")
    
    const ociPrivateEndpointResource = new oci.datascience.PrivateEndpoint("ociPrivateEndpointResource", {
        compartmentId: "string",
        dataScienceResourceType: "string",
        subnetId: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "any",
        },
        nsgIds: ["string"],
        subDomain: "string",
    });
    
    type: oci:DataScience:PrivateEndpoint
    properties:
        compartmentId: string
        dataScienceResourceType: string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        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

    The PrivateEndpoint resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment where you want to create the private endpoint.
    DataScienceResourceType string
    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

    DefinedTags Dictionary<string, object>
    (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.
    FreeformTags Dictionary<string, object>
    (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.
    DataScienceResourceType string
    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

    DefinedTags map[string]interface{}
    (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.
    FreeformTags map[string]interface{}
    (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.
    dataScienceResourceType String
    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

    definedTags Map<String,Object>
    (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.
    freeformTags Map<String,Object>
    (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.
    dataScienceResourceType string
    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

    definedTags {[key: string]: any}
    (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.
    freeformTags {[key: string]: any}
    (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_resource_type str
    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

    defined_tags Mapping[str, Any]
    (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.
    freeform_tags Mapping[str, Any]
    (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.
    dataScienceResourceType String
    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

    definedTags Map<Any>
    (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.
    freeformTags Map<Any>
    (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.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The 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.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The 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.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The 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.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The 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.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The 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.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The 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, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            fqdn: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = 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, Any]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> PrivateEndpoint
    func 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)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    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.
    DataScienceResourceType string
    Data Science resource type.
    DefinedTags Dictionary<string, object>
    (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.
    FreeformTags Dictionary<string, object>
    (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

    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The 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.
    DataScienceResourceType string
    Data Science resource type.
    DefinedTags map[string]interface{}
    (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.
    FreeformTags map[string]interface{}
    (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

    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The 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.
    dataScienceResourceType String
    Data Science resource type.
    definedTags Map<String,Object>
    (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.
    freeformTags Map<String,Object>
    (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

    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The 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.
    dataScienceResourceType string
    Data Science resource type.
    definedTags {[key: string]: any}
    (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.
    freeformTags {[key: string]: any}
    (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

    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The 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_resource_type str
    Data Science resource type.
    defined_tags Mapping[str, Any]
    (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.
    freeform_tags Mapping[str, Any]
    (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

    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The 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.
    dataScienceResourceType String
    Data Science resource type.
    definedTags Map<Any>
    (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.
    freeformTags Map<Any>
    (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

    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The 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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi