import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Data Science Private Endpoint resource in Oracle Cloud Infrastructure Data Science service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/data-science/latest/DataSciencePrivateEndpoint * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/datascience * * Creates a Data Science private endpoint to be used by a Data Science resource. * * ## Example Usage * * ```typescript * 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 * * DataSciencePrivateEndpoints can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:DataScience/privateEndpoint:PrivateEndpoint test_data_science_private_endpoint "id" * ``` */ export declare class PrivateEndpoint extends pulumi.CustomResource { /** * Get an existing PrivateEndpoint resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: PrivateEndpointState, opts?: pulumi.CustomResourceOptions): PrivateEndpoint; /** * Returns true if the given object is an instance of PrivateEndpoint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PrivateEndpoint; /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the private endpoint. */ readonly compartmentId: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user that created the private endpoint. */ readonly createdBy: pulumi.Output; /** * Data Science resource type. */ readonly dataScienceResourceType: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) A user friendly description. Avoid entering confidential information. */ readonly description: pulumi.Output; /** * (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ readonly displayName: pulumi.Output; /** * Accesing the Data Science resource using FQDN. */ readonly fqdn: pulumi.Output; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * Details of the state of Data Science private endpoint. */ readonly lifecycleDetails: pulumi.Output; /** * (Updatable) An array of network security group OCIDs. */ readonly nsgIds: pulumi.Output; /** * State of the Data Science private endpoint. */ readonly state: pulumi.Output; /** * Subdomain for a private endpoint FQDN. */ readonly subDomain: pulumi.Output; /** * 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 */ readonly subnetId: pulumi.Output; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The date and time that the Data Science private endpoint was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z` */ readonly timeCreated: pulumi.Output; /** * The date and time that the Data Science private endpoint was updated expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z` */ readonly timeUpdated: pulumi.Output; /** * Create a PrivateEndpoint resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PrivateEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PrivateEndpoint resources. */ export interface PrivateEndpointState { /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the private endpoint. */ compartmentId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user that created the private endpoint. */ createdBy?: pulumi.Input; /** * Data Science resource type. */ dataScienceResourceType?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A user friendly description. Avoid entering confidential information. */ description?: pulumi.Input; /** * (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ displayName?: pulumi.Input; /** * Accesing the Data Science resource using FQDN. */ fqdn?: pulumi.Input; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Details of the state of Data Science private endpoint. */ lifecycleDetails?: pulumi.Input; /** * (Updatable) An array of network security group OCIDs. */ nsgIds?: pulumi.Input[] | undefined>; /** * State of the Data Science private endpoint. */ state?: pulumi.Input; /** * Subdomain for a private endpoint FQDN. */ subDomain?: pulumi.Input; /** * 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 */ subnetId?: pulumi.Input; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The date and time that the Data Science private endpoint was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z` */ timeCreated?: pulumi.Input; /** * The date and time that the Data Science private endpoint was updated expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z` */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a PrivateEndpoint resource. */ export interface PrivateEndpointArgs { /** * (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where you want to create the private endpoint. */ compartmentId: pulumi.Input; /** * Data Science resource type. */ dataScienceResourceType: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) A user friendly description. Avoid entering confidential information. */ description?: pulumi.Input; /** * (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ displayName?: pulumi.Input; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) An array of network security group OCIDs. */ nsgIds?: pulumi.Input[] | undefined>; /** * Subdomain for a private endpoint FQDN. */ subDomain?: pulumi.Input; /** * 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 */ subnetId: pulumi.Input; } //# sourceMappingURL=privateEndpoint.d.ts.map