/** * Object Storage Service API * Use Object Storage and Archive Storage APIs to manage buckets, objects, and related resources. For more information, see [Overview of Object Storage](https://docs.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) and [Overview of Archive Storage](https://docs.oracle.com/iaas/Content/Archive/Concepts/archivestorageoverview.htm). * OpenAPI spec version: 20160918 * Contact: opc_casper_users_us_grp@oracle.com * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Details to create a private endpoint * */ export interface CreatePrivateEndpointDetails { /** * This name associated with the endpoint. Valid characters are uppercase or lowercase letters, numbers, hyphens, * underscores, and periods. * Example: my-new-private-endpoint1 * */ "name": string; /** * The ID of the compartment in which to create the Private Endpoint. */ "compartmentId": string; /** * The OCID of the customer's subnet where the private endpoint VNIC will reside. * */ "subnetId": string; /** * A prefix to use for the private endpoint. The customer VCN's DNS records are * updated with this prefix. The prefix input from the customer will be the first sub-domain in the endpointFqdn. * Example: If the prefix chosen is \"abc\", then the endpointFqdn will be 'abc.private.objectstorage..oraclecloud.com' * */ "prefix": string; /** * A list of additional prefix that you can provide along with any other prefix. These resulting endpointFqdn's are added to the * customer VCN's DNS record. * */ "additionalPrefixes"?: Array; /** * The private IP address to assign to this private endpoint. If you provide a value, * it must be an available IP address in the customer's subnet. If it's not available, an error * is returned. *

If you do not provide a value, an available IP address in the subnet is automatically chosen. * */ "privateEndpointIp"?: string; /** * A list of the OCIDs of the network security groups (NSGs) to add the private endpoint's VNIC to. * For more information about NSGs, see * {@link NetworkSecurityGroup}. * */ "nsgIds"?: Array; /** * A list of targets that can be accessed by the private endpoint. * */ "accessTargets": Array; /** * 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.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * Example: {@code {\"Department\": \"Finance\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. * For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}} * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; } export declare namespace CreatePrivateEndpointDetails { function getJsonObj(obj: CreatePrivateEndpointDetails): object; function getDeserializedJsonObj(obj: CreatePrivateEndpointDetails): object; }