oci.AiVision.VisionPrivateEndpoint
Explore with Pulumi AI
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:
- Compartment
Id string - (Updatable) The compartment identifier.
- Subnet
Id 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
- 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.
- Display
Name string - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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"}
- Compartment
Id string - (Updatable) The compartment identifier.
- Subnet
Id 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
- 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.
- Display
Name string - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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"}
- compartment
Id String - (Updatable) The compartment identifier.
- subnet
Id 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
- 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.
- display
Name String - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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"}
- compartment
Id string - (Updatable) The compartment identifier.
- subnet
Id 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
- {[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.
- display
Name string - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- {[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
- 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.
- 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"}
- compartment
Id String - (Updatable) The compartment identifier.
- subnet
Id 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
- 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.
- display
Name String - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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.
- Lifecycle
Details 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.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- Time
Created string - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- Time
Updated string - When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- Time
Created string - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- Time
Updated string - When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- time
Created String - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- time
Updated String - When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details 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.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- time
Created string - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- time
Updated 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.
- 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.
- lifecycle
Details 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.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- time
Created String - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- time
Updated 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.
- Compartment
Id string - (Updatable) The compartment identifier.
- 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.
- Display
Name string - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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"}
- Lifecycle
Details 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.
- Subnet
Id 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
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- Time
Created string - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- Time
Updated string - When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
- Compartment
Id string - (Updatable) The compartment identifier.
- 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.
- Display
Name string - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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"}
- Lifecycle
Details 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.
- Subnet
Id 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
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- Time
Created string - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- Time
Updated string - When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
- compartment
Id String - (Updatable) The compartment identifier.
- 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.
- display
Name String - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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"}
- lifecycle
Details 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.
- subnet
Id 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
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- time
Created String - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- time
Updated String - When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
- compartment
Id string - (Updatable) The compartment identifier.
- {[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.
- display
Name string - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- {[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"}
- lifecycle
Details 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.
- subnet
Id 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
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- time
Created string - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- time
Updated string - When the visionPrivateEndpoint was updated, as an RFC3339 datetime string.
- compartment_
id str - (Updatable) The compartment identifier.
- 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.
- 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
- 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.
- compartment
Id String - (Updatable) The compartment identifier.
- 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.
- display
Name String - (Updatable) A human-friendly name for the visionPrivateEndpoint, that can be changed.
- 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"}
- lifecycle
Details 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.
- subnet
Id 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
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. For example:
{"orcl-cloud": {"free-tier-retained": "true"}}
- time
Created String - When the visionPrivateEndpoint was created, as an RFC3339 datetime string.
- time
Updated 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.