import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Vision Private Endpoint resource in Oracle Cloud Infrastructure Ai Vision service. * * Get a visionPrivateEndpoint by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVisionPrivateEndpoint = oci.aivision.getVisionPrivateEndpoint({ * visionPrivateEndpointId: testVisionPrivateEndpointOciAiVisionVisionPrivateEndpoint.id, * }); * ``` */ export declare function getVisionPrivateEndpoint(args: GetVisionPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVisionPrivateEndpoint. */ export interface GetVisionPrivateEndpointArgs { /** * Vision private endpoint Id. */ visionPrivateEndpointId: string; } /** * A collection of values returned by getVisionPrivateEndpoint. */ export interface GetVisionPrivateEndpointResult { /** * A compartment identifier. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{"foo-namespace": {"bar-key": "value"}}` */ readonly definedTags: { [key: string]: string; }; /** * An optional description of the visionPrivateEndpoint. */ readonly description: string; /** * A human-friendly name for the visionPrivateEndpoint, which can be changed. */ readonly displayName: string; /** * A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of private endpoint */ readonly id: string; /** * A message describing the current state in more detail, that can provide actionable information if creation failed. */ readonly lifecycleDetails: string; /** * The current state of the visionPrivateEndpoint. */ readonly state: string; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of subnet */ readonly subnetId: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. For example: `{"orcl-cloud": {"free-tier-retained": "true"}}` */ readonly systemTags: { [key: string]: string; }; /** * When the visionPrivateEndpoint was created, as an RFC3339 datetime string. */ readonly timeCreated: string; /** * When the visionPrivateEndpoint was updated, as an RFC3339 datetime string. */ readonly timeUpdated: string; readonly visionPrivateEndpointId: string; } /** * This data source provides details about a specific Vision Private Endpoint resource in Oracle Cloud Infrastructure Ai Vision service. * * Get a visionPrivateEndpoint by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVisionPrivateEndpoint = oci.aivision.getVisionPrivateEndpoint({ * visionPrivateEndpointId: testVisionPrivateEndpointOciAiVisionVisionPrivateEndpoint.id, * }); * ``` */ export declare function getVisionPrivateEndpointOutput(args: GetVisionPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVisionPrivateEndpoint. */ export interface GetVisionPrivateEndpointOutputArgs { /** * Vision private endpoint Id. */ visionPrivateEndpointId: pulumi.Input; } //# sourceMappingURL=getVisionPrivateEndpoint.d.ts.map