1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. AiVision
  5. VisionPrivateEndpoint
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.AiVision.VisionPrivateEndpoint

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This resource provides the Vision Private Endpoint resource in Oracle Cloud Infrastructure Ai Vision service.

    Create a new visionPrivateEndpoint.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVisionPrivateEndpoint = new oci.aivision.VisionPrivateEndpoint("test_vision_private_endpoint", {
        compartmentId: compartmentId,
        subnetId: testSubnet.id,
        definedTags: visionPrivateEndpointDefinedTags,
        description: visionPrivateEndpointDescription,
        displayName: visionPrivateEndpointDisplayName,
        freeformTags: visionPrivateEndpointFreeformTags,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_vision_private_endpoint = oci.aivision.VisionPrivateEndpoint("test_vision_private_endpoint",
        compartment_id=compartment_id,
        subnet_id=test_subnet["id"],
        defined_tags=vision_private_endpoint_defined_tags,
        description=vision_private_endpoint_description,
        display_name=vision_private_endpoint_display_name,
        freeform_tags=vision_private_endpoint_freeform_tags)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/aivision"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := aivision.NewVisionPrivateEndpoint(ctx, "test_vision_private_endpoint", &aivision.VisionPrivateEndpointArgs{
    			CompartmentId: pulumi.Any(compartmentId),
    			SubnetId:      pulumi.Any(testSubnet.Id),
    			DefinedTags:   pulumi.Any(visionPrivateEndpointDefinedTags),
    			Description:   pulumi.Any(visionPrivateEndpointDescription),
    			DisplayName:   pulumi.Any(visionPrivateEndpointDisplayName),
    			FreeformTags:  pulumi.Any(visionPrivateEndpointFreeformTags),
    		})
    		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 testVisionPrivateEndpoint = new Oci.AiVision.VisionPrivateEndpoint("test_vision_private_endpoint", new()
        {
            CompartmentId = compartmentId,
            SubnetId = testSubnet.Id,
            DefinedTags = visionPrivateEndpointDefinedTags,
            Description = visionPrivateEndpointDescription,
            DisplayName = visionPrivateEndpointDisplayName,
            FreeformTags = visionPrivateEndpointFreeformTags,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.AiVision.VisionPrivateEndpoint;
    import com.pulumi.oci.AiVision.VisionPrivateEndpointArgs;
    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 testVisionPrivateEndpoint = new VisionPrivateEndpoint("testVisionPrivateEndpoint", VisionPrivateEndpointArgs.builder()
                .compartmentId(compartmentId)
                .subnetId(testSubnet.id())
                .definedTags(visionPrivateEndpointDefinedTags)
                .description(visionPrivateEndpointDescription)
                .displayName(visionPrivateEndpointDisplayName)
                .freeformTags(visionPrivateEndpointFreeformTags)
                .build());
    
        }
    }
    
    resources:
      testVisionPrivateEndpoint:
        type: oci:AiVision:VisionPrivateEndpoint
        name: test_vision_private_endpoint
        properties:
          compartmentId: ${compartmentId}
          subnetId: ${testSubnet.id}
          definedTags: ${visionPrivateEndpointDefinedTags}
          description: ${visionPrivateEndpointDescription}
          displayName: ${visionPrivateEndpointDisplayName}
          freeformTags: ${visionPrivateEndpointFreeformTags}
    

    Create VisionPrivateEndpoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new VisionPrivateEndpoint(name: string, args: VisionPrivateEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def VisionPrivateEndpoint(resource_name: str,
                              args: VisionPrivateEndpointArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def VisionPrivateEndpoint(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              compartment_id: Optional[str] = None,
                              subnet_id: Optional[str] = None,
                              defined_tags: Optional[Mapping[str, str]] = None,
                              description: Optional[str] = None,
                              display_name: Optional[str] = None,
                              freeform_tags: Optional[Mapping[str, str]] = None)
    func NewVisionPrivateEndpoint(ctx *Context, name string, args VisionPrivateEndpointArgs, opts ...ResourceOption) (*VisionPrivateEndpoint, error)
    public VisionPrivateEndpoint(string name, VisionPrivateEndpointArgs args, CustomResourceOptions? opts = null)
    public VisionPrivateEndpoint(String name, VisionPrivateEndpointArgs args)
    public VisionPrivateEndpoint(String name, VisionPrivateEndpointArgs args, CustomResourceOptions options)
    
    type: oci:AiVision:VisionPrivateEndpoint
    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 VisionPrivateEndpointArgs
    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 VisionPrivateEndpointArgs
    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 VisionPrivateEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VisionPrivateEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VisionPrivateEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var visionPrivateEndpointResource = new Oci.AiVision.VisionPrivateEndpoint("visionPrivateEndpointResource", new()
    {
        CompartmentId = "string",
        SubnetId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := aivision.NewVisionPrivateEndpoint(ctx, "visionPrivateEndpointResource", &aivision.VisionPrivateEndpointArgs{
    	CompartmentId: pulumi.String("string"),
    	SubnetId:      pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var visionPrivateEndpointResource = new VisionPrivateEndpoint("visionPrivateEndpointResource", VisionPrivateEndpointArgs.builder()
        .compartmentId("string")
        .subnetId("string")
        .definedTags(Map.of("string", "string"))
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .build());
    
    vision_private_endpoint_resource = oci.aivision.VisionPrivateEndpoint("visionPrivateEndpointResource",
        compartment_id="string",
        subnet_id="string",
        defined_tags={
            "string": "string",
        },
        description="string",
        display_name="string",
        freeform_tags={
            "string": "string",
        })
    
    const visionPrivateEndpointResource = new oci.aivision.VisionPrivateEndpoint("visionPrivateEndpointResource", {
        compartmentId: "string",
        subnetId: "string",
        definedTags: {
            string: "string",
        },
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:AiVision:VisionPrivateEndpoint
    properties:
        compartmentId: string
        definedTags:
            string: string
        description: string
        displayName: string
        freeformTags:
            string: string
        subnetId: string
    

    VisionPrivateEndpoint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The VisionPrivateEndpoint resource accepts the following input properties:

    CompartmentId string
    (Updatable) The compartment identifier.
    SubnetId string

    OCID of 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, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    Description string
    (Updatable) An optional description of the visionPrivateEndpoint.
    DisplayName string
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    CompartmentId string
    (Updatable) The compartment identifier.
    SubnetId string

    OCID of 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]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    Description string
    (Updatable) An optional description of the visionPrivateEndpoint.
    DisplayName string
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    FreeformTags map[string]string
    (Updatable) 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"}
    compartmentId String
    (Updatable) The compartment identifier.
    subnetId String

    OCID of 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,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description String
    (Updatable) An optional description of the visionPrivateEndpoint.
    displayName String
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeformTags Map<String,String>
    (Updatable) 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"}
    compartmentId string
    (Updatable) The compartment identifier.
    subnetId string

    OCID of 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]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description string
    (Updatable) An optional description of the visionPrivateEndpoint.
    displayName string
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    compartment_id str
    (Updatable) The compartment identifier.
    subnet_id str

    OCID of 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, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description str
    (Updatable) An optional description of the visionPrivateEndpoint.
    display_name str
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    compartmentId String
    (Updatable) The compartment identifier.
    subnetId String

    OCID of 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>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description String
    (Updatable) An optional description of the visionPrivateEndpoint.
    displayName String
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeformTags Map<String>
    (Updatable) 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"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VisionPrivateEndpoint resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    State string
    The current state of the visionPrivateEndpoint.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    State string
    The current state of the visionPrivateEndpoint.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state String
    The current state of the visionPrivateEndpoint.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    timeUpdated String
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state string
    The current state of the visionPrivateEndpoint.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated string
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    timeUpdated string
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state str
    The current state of the visionPrivateEndpoint.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    time_created str
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    time_updated str
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state String
    The current state of the visionPrivateEndpoint.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    timeUpdated String
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.

    Look up Existing VisionPrivateEndpoint Resource

    Get an existing VisionPrivateEndpoint 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?: VisionPrivateEndpointState, opts?: CustomResourceOptions): VisionPrivateEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            lifecycle_details: Optional[str] = None,
            state: Optional[str] = None,
            subnet_id: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> VisionPrivateEndpoint
    func GetVisionPrivateEndpoint(ctx *Context, name string, id IDInput, state *VisionPrivateEndpointState, opts ...ResourceOption) (*VisionPrivateEndpoint, error)
    public static VisionPrivateEndpoint Get(string name, Input<string> id, VisionPrivateEndpointState? state, CustomResourceOptions? opts = null)
    public static VisionPrivateEndpoint get(String name, Output<String> id, VisionPrivateEndpointState state, CustomResourceOptions options)
    resources:  _:    type: oci:AiVision:VisionPrivateEndpoint    get:      id: ${id}
    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 compartment identifier.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    Description string
    (Updatable) An optional description of the visionPrivateEndpoint.
    DisplayName string
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    LifecycleDetails string
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    State string
    The current state of the visionPrivateEndpoint.
    SubnetId string

    OCID of 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, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    CompartmentId string
    (Updatable) The compartment identifier.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    Description string
    (Updatable) An optional description of the visionPrivateEndpoint.
    DisplayName string
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    FreeformTags map[string]string
    (Updatable) 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"}
    LifecycleDetails string
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    State string
    The current state of the visionPrivateEndpoint.
    SubnetId string

    OCID of 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]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    TimeCreated string
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    TimeUpdated string
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    compartmentId String
    (Updatable) The compartment identifier.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description String
    (Updatable) An optional description of the visionPrivateEndpoint.
    displayName String
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeformTags Map<String,String>
    (Updatable) 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"}
    lifecycleDetails String
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state String
    The current state of the visionPrivateEndpoint.
    subnetId String

    OCID of 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,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    timeUpdated String
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    compartmentId string
    (Updatable) The compartment identifier.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description string
    (Updatable) An optional description of the visionPrivateEndpoint.
    displayName string
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    lifecycleDetails string
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state string
    The current state of the visionPrivateEndpoint.
    subnetId string

    OCID of 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]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated string
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    timeUpdated string
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    compartment_id str
    (Updatable) The compartment identifier.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description str
    (Updatable) An optional description of the visionPrivateEndpoint.
    display_name str
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    lifecycle_details str
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state str
    The current state of the visionPrivateEndpoint.
    subnet_id str

    OCID of 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, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    time_created str
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    time_updated str
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
    compartmentId String
    (Updatable) The compartment identifier.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: {"foo-namespace": {"bar-key": "value"}}
    description String
    (Updatable) An optional description of the visionPrivateEndpoint.
    displayName String
    (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
    freeformTags Map<String>
    (Updatable) 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"}
    lifecycleDetails String
    A message describing the current state in more detail, that can provide actionable information if creation failed.
    state String
    The current state of the visionPrivateEndpoint.
    subnetId String

    OCID of 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>
    Usage of system tag keys. These predefined keys are scoped to namespaces. For example: {"orcl-cloud": {"free-tier-retained": "true"}}
    timeCreated String
    When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
    timeUpdated String
    When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.

    Import

    VisionPrivateEndpoints can be imported using the id, e.g.

    $ pulumi import oci:AiVision/visionPrivateEndpoint:VisionPrivateEndpoint test_vision_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 v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi