import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Generative Ai Private Endpoint resource in Oracle Cloud Infrastructure Generative AI service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/generative-ai/latest/GenerativeAiPrivateEndpoint * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/generative_ai * * Creates a Generative AI private endpoint. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testGenerativeAiPrivateEndpoint = new oci.generativeai.GenerativeAiPrivateEndpoint("test_generative_ai_private_endpoint", { * compartmentId: compartmentId, * dnsPrefix: generativeAiPrivateEndpointDnsPrefix, * subnetId: testSubnet.id, * definedTags: { * "Operations.CostCenter": "42", * }, * description: generativeAiPrivateEndpointDescription, * displayName: generativeAiPrivateEndpointDisplayName, * freeformTags: { * Department: "Finance", * }, * nsgIds: generativeAiPrivateEndpointNsgIds, * resourceType: generativeAiPrivateEndpointResourceType, * }); * ``` * * ## Import * * GenerativeAiPrivateEndpoints can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:GenerativeAi/generativeAiPrivateEndpoint:GenerativeAiPrivateEndpoint test_generative_ai_private_endpoint "id" * ``` */ export declare class GenerativeAiPrivateEndpoint extends pulumi.CustomResource { /** * Get an existing GenerativeAiPrivateEndpoint 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?: GenerativeAiPrivateEndpointState, opts?: pulumi.CustomResourceOptions): GenerativeAiPrivateEndpoint; /** * Returns true if the given object is an instance of GenerativeAiPrivateEndpoint. 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 GenerativeAiPrivateEndpoint; /** * (Updatable) The OCID of the compartment where the private endpoint is created. */ readonly compartmentId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, 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 description of this private endpoint. */ readonly description: pulumi.Output; /** * (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ readonly displayName: pulumi.Output; /** * (Updatable) dnsPrefix of the private endpoint FQDN. */ readonly dnsPrefix: pulumi.Output; /** * Fully qualified domain name the customer will use for access (for eg: xyz.oraclecloud.com) */ 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. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * The detailed messages about the lifecycle state */ readonly lifecycleDetails: pulumi.Output; /** * (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the private endpoint's VNIC to. */ readonly nsgIds: pulumi.Output; /** * Generative AI private endpoint. */ readonly previousState: pulumi.Output; /** * The private IP address (in the customer's VCN) that represents the access point for the associated endpoint service. */ readonly privateEndpointIp: pulumi.Output; /** * The resource type that Generative AI private endpoint can be used for. */ readonly resourceType: pulumi.Output; /** * The current state of the Generative AI Private Endpoint. */ readonly state: pulumi.Output; /** * The OCID of the customer's subnet where the private endpoint VNIC will reside. * * ** 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; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The date and time that the Generative AI 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 Generative AI 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 GenerativeAiPrivateEndpoint 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: GenerativeAiPrivateEndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering GenerativeAiPrivateEndpoint resources. */ export interface GenerativeAiPrivateEndpointState { /** * (Updatable) The OCID of the compartment where the private endpoint is created. */ compartmentId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, 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 description of this private endpoint. */ description?: pulumi.Input; /** * (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ displayName?: pulumi.Input; /** * (Updatable) dnsPrefix of the private endpoint FQDN. */ dnsPrefix?: pulumi.Input; /** * Fully qualified domain name the customer will use for access (for eg: xyz.oraclecloud.com) */ 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. For more information, 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>; /** * The detailed messages about the lifecycle state */ lifecycleDetails?: pulumi.Input; /** * (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the private endpoint's VNIC to. */ nsgIds?: pulumi.Input[] | undefined>; /** * Generative AI private endpoint. */ previousState?: pulumi.Input; /** * The private IP address (in the customer's VCN) that represents the access point for the associated endpoint service. */ privateEndpointIp?: pulumi.Input; /** * The resource type that Generative AI private endpoint can be used for. */ resourceType?: pulumi.Input; /** * The current state of the Generative AI Private Endpoint. */ state?: pulumi.Input; /** * The OCID of the customer's subnet where the private endpoint VNIC will reside. * * ** 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; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The date and time that the Generative AI 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 Generative AI 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 GenerativeAiPrivateEndpoint resource. */ export interface GenerativeAiPrivateEndpointArgs { /** * (Updatable) The OCID of the compartment where the private endpoint is created. */ compartmentId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, 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 description of this private endpoint. */ description?: pulumi.Input; /** * (Updatable) A user friendly name. It doesn't have to be unique. Avoid entering confidential information. */ displayName?: pulumi.Input; /** * (Updatable) dnsPrefix of the private endpoint FQDN. */ dnsPrefix: pulumi.Input; /** * (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, 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) A list of the OCIDs of the network security groups (NSGs) to add the private endpoint's VNIC to. */ nsgIds?: pulumi.Input[] | undefined>; /** * The resource type that Generative AI private endpoint can be used for. */ resourceType?: pulumi.Input; /** * The OCID of the customer's subnet where the private endpoint VNIC will reside. * * ** 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=generativeAiPrivateEndpoint.d.ts.map