oci.Opsi.OperationsInsightsPrivateEndpoint
Explore with Pulumi AI
This resource provides the Operations Insights Private Endpoint resource in Oracle Cloud Infrastructure Opsi service.
Create a private endpoint resource for the tenant in Operations Insights. This resource will be created in customer compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOperationsInsightsPrivateEndpoint = new oci.opsi.OperationsInsightsPrivateEndpoint("test_operations_insights_private_endpoint", {
compartmentId: compartmentId,
displayName: operationsInsightsPrivateEndpointDisplayName,
isUsedForRacDbs: operationsInsightsPrivateEndpointIsUsedForRacDbs,
subnetId: testSubnet.id,
vcnId: testVcn.id,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: operationsInsightsPrivateEndpointDescription,
freeformTags: {
"bar-key": "value",
},
nsgIds: operationsInsightsPrivateEndpointNsgIds,
});
import pulumi
import pulumi_oci as oci
test_operations_insights_private_endpoint = oci.opsi.OperationsInsightsPrivateEndpoint("test_operations_insights_private_endpoint",
compartment_id=compartment_id,
display_name=operations_insights_private_endpoint_display_name,
is_used_for_rac_dbs=operations_insights_private_endpoint_is_used_for_rac_dbs,
subnet_id=test_subnet["id"],
vcn_id=test_vcn["id"],
defined_tags={
"foo-namespace.bar-key": "value",
},
description=operations_insights_private_endpoint_description,
freeform_tags={
"bar-key": "value",
},
nsg_ids=operations_insights_private_endpoint_nsg_ids)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Opsi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Opsi.NewOperationsInsightsPrivateEndpoint(ctx, "test_operations_insights_private_endpoint", &Opsi.OperationsInsightsPrivateEndpointArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(operationsInsightsPrivateEndpointDisplayName),
IsUsedForRacDbs: pulumi.Any(operationsInsightsPrivateEndpointIsUsedForRacDbs),
SubnetId: pulumi.Any(testSubnet.Id),
VcnId: pulumi.Any(testVcn.Id),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(operationsInsightsPrivateEndpointDescription),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
NsgIds: pulumi.Any(operationsInsightsPrivateEndpointNsgIds),
})
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 testOperationsInsightsPrivateEndpoint = new Oci.Opsi.OperationsInsightsPrivateEndpoint("test_operations_insights_private_endpoint", new()
{
CompartmentId = compartmentId,
DisplayName = operationsInsightsPrivateEndpointDisplayName,
IsUsedForRacDbs = operationsInsightsPrivateEndpointIsUsedForRacDbs,
SubnetId = testSubnet.Id,
VcnId = testVcn.Id,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = operationsInsightsPrivateEndpointDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
NsgIds = operationsInsightsPrivateEndpointNsgIds,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.OperationsInsightsPrivateEndpoint;
import com.pulumi.oci.Opsi.OperationsInsightsPrivateEndpointArgs;
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 testOperationsInsightsPrivateEndpoint = new OperationsInsightsPrivateEndpoint("testOperationsInsightsPrivateEndpoint", OperationsInsightsPrivateEndpointArgs.builder()
.compartmentId(compartmentId)
.displayName(operationsInsightsPrivateEndpointDisplayName)
.isUsedForRacDbs(operationsInsightsPrivateEndpointIsUsedForRacDbs)
.subnetId(testSubnet.id())
.vcnId(testVcn.id())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(operationsInsightsPrivateEndpointDescription)
.freeformTags(Map.of("bar-key", "value"))
.nsgIds(operationsInsightsPrivateEndpointNsgIds)
.build());
}
}
resources:
testOperationsInsightsPrivateEndpoint:
type: oci:Opsi:OperationsInsightsPrivateEndpoint
name: test_operations_insights_private_endpoint
properties:
compartmentId: ${compartmentId}
displayName: ${operationsInsightsPrivateEndpointDisplayName}
isUsedForRacDbs: ${operationsInsightsPrivateEndpointIsUsedForRacDbs}
subnetId: ${testSubnet.id}
vcnId: ${testVcn.id}
definedTags:
foo-namespace.bar-key: value
description: ${operationsInsightsPrivateEndpointDescription}
freeformTags:
bar-key: value
nsgIds: ${operationsInsightsPrivateEndpointNsgIds}
Create OperationsInsightsPrivateEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OperationsInsightsPrivateEndpoint(name: string, args: OperationsInsightsPrivateEndpointArgs, opts?: CustomResourceOptions);
@overload
def OperationsInsightsPrivateEndpoint(resource_name: str,
args: OperationsInsightsPrivateEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OperationsInsightsPrivateEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
is_used_for_rac_dbs: Optional[bool] = None,
subnet_id: Optional[str] = None,
vcn_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
nsg_ids: Optional[Sequence[str]] = None,
private_endpoint_status_details: Optional[str] = None)
func NewOperationsInsightsPrivateEndpoint(ctx *Context, name string, args OperationsInsightsPrivateEndpointArgs, opts ...ResourceOption) (*OperationsInsightsPrivateEndpoint, error)
public OperationsInsightsPrivateEndpoint(string name, OperationsInsightsPrivateEndpointArgs args, CustomResourceOptions? opts = null)
public OperationsInsightsPrivateEndpoint(String name, OperationsInsightsPrivateEndpointArgs args)
public OperationsInsightsPrivateEndpoint(String name, OperationsInsightsPrivateEndpointArgs args, CustomResourceOptions options)
type: oci:Opsi:OperationsInsightsPrivateEndpoint
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 OperationsInsightsPrivateEndpointArgs
- 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 OperationsInsightsPrivateEndpointArgs
- 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 OperationsInsightsPrivateEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OperationsInsightsPrivateEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OperationsInsightsPrivateEndpointArgs
- 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 operationsInsightsPrivateEndpointResource = new Oci.Opsi.OperationsInsightsPrivateEndpoint("operationsInsightsPrivateEndpointResource", new()
{
CompartmentId = "string",
DisplayName = "string",
IsUsedForRacDbs = false,
SubnetId = "string",
VcnId = "string",
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
FreeformTags =
{
{ "string", "any" },
},
NsgIds = new[]
{
"string",
},
PrivateEndpointStatusDetails = "string",
});
example, err := Opsi.NewOperationsInsightsPrivateEndpoint(ctx, "operationsInsightsPrivateEndpointResource", &Opsi.OperationsInsightsPrivateEndpointArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
IsUsedForRacDbs: pulumi.Bool(false),
SubnetId: pulumi.String("string"),
VcnId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
PrivateEndpointStatusDetails: pulumi.String("string"),
})
var operationsInsightsPrivateEndpointResource = new OperationsInsightsPrivateEndpoint("operationsInsightsPrivateEndpointResource", OperationsInsightsPrivateEndpointArgs.builder()
.compartmentId("string")
.displayName("string")
.isUsedForRacDbs(false)
.subnetId("string")
.vcnId("string")
.definedTags(Map.of("string", "any"))
.description("string")
.freeformTags(Map.of("string", "any"))
.nsgIds("string")
.privateEndpointStatusDetails("string")
.build());
operations_insights_private_endpoint_resource = oci.opsi.OperationsInsightsPrivateEndpoint("operationsInsightsPrivateEndpointResource",
compartment_id="string",
display_name="string",
is_used_for_rac_dbs=False,
subnet_id="string",
vcn_id="string",
defined_tags={
"string": "any",
},
description="string",
freeform_tags={
"string": "any",
},
nsg_ids=["string"],
private_endpoint_status_details="string")
const operationsInsightsPrivateEndpointResource = new oci.opsi.OperationsInsightsPrivateEndpoint("operationsInsightsPrivateEndpointResource", {
compartmentId: "string",
displayName: "string",
isUsedForRacDbs: false,
subnetId: "string",
vcnId: "string",
definedTags: {
string: "any",
},
description: "string",
freeformTags: {
string: "any",
},
nsgIds: ["string"],
privateEndpointStatusDetails: "string",
});
type: oci:Opsi:OperationsInsightsPrivateEndpoint
properties:
compartmentId: string
definedTags:
string: any
description: string
displayName: string
freeformTags:
string: any
isUsedForRacDbs: false
nsgIds:
- string
privateEndpointStatusDetails: string
subnetId: string
vcnId: string
OperationsInsightsPrivateEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The OperationsInsightsPrivateEndpoint resource accepts the following input properties:
- Compartment
Id string - (Updatable) The compartment OCID of the Private service accessed database.
- Display
Name string - (Updatable) The display name for the private endpoint. It is changeable.
- Is
Used boolFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- Subnet
Id string - The Subnet OCID of the Private service accessed database.
- Vcn
Id string The VCN OCID of the Private service accessed database.
** 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, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The description of the private endpoint.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Nsg
Ids List<string> - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- Private
Endpoint stringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- Compartment
Id string - (Updatable) The compartment OCID of the Private service accessed database.
- Display
Name string - (Updatable) The display name for the private endpoint. It is changeable.
- Is
Used boolFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- Subnet
Id string - The Subnet OCID of the Private service accessed database.
- Vcn
Id string The VCN OCID of the Private service accessed database.
** 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]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The description of the private endpoint.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Nsg
Ids []string - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- Private
Endpoint stringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- compartment
Id String - (Updatable) The compartment OCID of the Private service accessed database.
- display
Name String - (Updatable) The display name for the private endpoint. It is changeable.
- is
Used BooleanFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- subnet
Id String - The Subnet OCID of the Private service accessed database.
- vcn
Id String The VCN OCID of the Private service accessed database.
** 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,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The description of the private endpoint.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg
Ids List<String> - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private
Endpoint StringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- compartment
Id string - (Updatable) The compartment OCID of the Private service accessed database.
- display
Name string - (Updatable) The display name for the private endpoint. It is changeable.
- is
Used booleanFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- subnet
Id string - The Subnet OCID of the Private service accessed database.
- vcn
Id string The VCN OCID of the Private service accessed database.
** 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]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) The description of the private endpoint.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg
Ids string[] - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private
Endpoint stringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- compartment_
id str - (Updatable) The compartment OCID of the Private service accessed database.
- display_
name str - (Updatable) The display name for the private endpoint. It is changeable.
- is_
used_ boolfor_ rac_ dbs - The flag to identify if private endpoint is used for rac database or not
- subnet_
id str - The Subnet OCID of the Private service accessed database.
- vcn_
id str The VCN OCID of the Private service accessed database.
** 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, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) The description of the private endpoint.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg_
ids Sequence[str] - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private_
endpoint_ strstatus_ details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- compartment
Id String - (Updatable) The compartment OCID of the Private service accessed database.
- display
Name String - (Updatable) The display name for the private endpoint. It is changeable.
- is
Used BooleanFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- subnet
Id String - The Subnet OCID of the Private service accessed database.
- vcn
Id String The VCN OCID of the Private service accessed database.
** 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<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The description of the private endpoint.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- nsg
Ids List<String> - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private
Endpoint StringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
Outputs
All input properties are implicitly available as output properties. Additionally, the OperationsInsightsPrivateEndpoint 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. For example, can be used to provide actionable information for a resource in Failed state.
- Private
Ip string - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- State string
- The current state of the private endpoint.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the private endpoint was created, in the format defined by RFC3339.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Private
Ip string - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- State string
- The current state of the private endpoint.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the private endpoint was created, in the format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- private
Ip String - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state String
- The current state of the private endpoint.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the private endpoint was created, in the format defined by RFC3339.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- private
Ip string - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state string
- The current state of the private endpoint.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the private endpoint was created, in the format defined by RFC3339.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- private_
ip str - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state str
- The current state of the private endpoint.
- Mapping[str, Any]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the private endpoint was created, in the format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- private
Ip String - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state String
- The current state of the private endpoint.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the private endpoint was created, in the format defined by RFC3339.
Look up Existing OperationsInsightsPrivateEndpoint Resource
Get an existing OperationsInsightsPrivateEndpoint 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?: OperationsInsightsPrivateEndpointState, opts?: CustomResourceOptions): OperationsInsightsPrivateEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
is_used_for_rac_dbs: Optional[bool] = None,
lifecycle_details: Optional[str] = None,
nsg_ids: Optional[Sequence[str]] = None,
private_endpoint_status_details: Optional[str] = None,
private_ip: Optional[str] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
vcn_id: Optional[str] = None) -> OperationsInsightsPrivateEndpoint
func GetOperationsInsightsPrivateEndpoint(ctx *Context, name string, id IDInput, state *OperationsInsightsPrivateEndpointState, opts ...ResourceOption) (*OperationsInsightsPrivateEndpoint, error)
public static OperationsInsightsPrivateEndpoint Get(string name, Input<string> id, OperationsInsightsPrivateEndpointState? state, CustomResourceOptions? opts = null)
public static OperationsInsightsPrivateEndpoint get(String name, Output<String> id, OperationsInsightsPrivateEndpointState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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 OCID of the Private service accessed database.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The description of the private endpoint.
- Display
Name string - (Updatable) The display name for the private endpoint. It is changeable.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Is
Used boolFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Nsg
Ids List<string> - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- Private
Endpoint stringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- Private
Ip string - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- State string
- The current state of the private endpoint.
- Subnet
Id string - The Subnet OCID of the Private service accessed database.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the private endpoint was created, in the format defined by RFC3339.
- Vcn
Id string The VCN OCID of the Private service accessed database.
** 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
- Compartment
Id string - (Updatable) The compartment OCID of the Private service accessed database.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The description of the private endpoint.
- Display
Name string - (Updatable) The display name for the private endpoint. It is changeable.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Is
Used boolFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Nsg
Ids []string - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- Private
Endpoint stringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- Private
Ip string - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- State string
- The current state of the private endpoint.
- Subnet
Id string - The Subnet OCID of the Private service accessed database.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the private endpoint was created, in the format defined by RFC3339.
- Vcn
Id string The VCN OCID of the Private service accessed database.
** 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
- compartment
Id String - (Updatable) The compartment OCID of the Private service accessed database.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The description of the private endpoint.
- display
Name String - (Updatable) The display name for the private endpoint. It is changeable.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Used BooleanFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- nsg
Ids List<String> - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private
Endpoint StringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- private
Ip String - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state String
- The current state of the private endpoint.
- subnet
Id String - The Subnet OCID of the Private service accessed database.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the private endpoint was created, in the format defined by RFC3339.
- vcn
Id String The VCN OCID of the Private service accessed database.
** 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
- compartment
Id string - (Updatable) The compartment OCID of the Private service accessed database.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) The description of the private endpoint.
- display
Name string - (Updatable) The display name for the private endpoint. It is changeable.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Used booleanFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- nsg
Ids string[] - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private
Endpoint stringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- private
Ip string - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state string
- The current state of the private endpoint.
- subnet
Id string - The Subnet OCID of the Private service accessed database.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the private endpoint was created, in the format defined by RFC3339.
- vcn
Id string The VCN OCID of the Private service accessed database.
** 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
- compartment_
id str - (Updatable) The compartment OCID of the Private service accessed database.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) The description of the private endpoint.
- display_
name str - (Updatable) The display name for the private endpoint. It is changeable.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is_
used_ boolfor_ rac_ dbs - The flag to identify if private endpoint is used for rac database or not
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- nsg_
ids Sequence[str] - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private_
endpoint_ strstatus_ details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- private_
ip str - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state str
- The current state of the private endpoint.
- subnet_
id str - The Subnet OCID of the Private service accessed database.
- Mapping[str, Any]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the private endpoint was created, in the format defined by RFC3339.
- vcn_
id str The VCN OCID of the Private service accessed database.
** 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
- compartment
Id String - (Updatable) The compartment OCID of the Private service accessed database.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The description of the private endpoint.
- display
Name String - (Updatable) The display name for the private endpoint. It is changeable.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Used BooleanFor Rac Dbs - The flag to identify if private endpoint is used for rac database or not
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- nsg
Ids List<String> - (Updatable) The OCID of the network security groups that the private endpoint belongs to.
- private
Endpoint StringStatus Details - A message describing the status of the private endpoint connection of this resource. For example, it can be used to provide actionable information about the validity of the private endpoint connection.
- private
Ip String - The private IP addresses assigned to the private endpoint. All IP addresses will be concatenated if it is RAC DBs.
- state String
- The current state of the private endpoint.
- subnet
Id String - The Subnet OCID of the Private service accessed database.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the private endpoint was created, in the format defined by RFC3339.
- vcn
Id String The VCN OCID of the Private service accessed database.
** 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
Import
OperationsInsightsPrivateEndpoints can be imported using the id
, e.g.
$ pulumi import oci:Opsi/operationsInsightsPrivateEndpoint:OperationsInsightsPrivateEndpoint test_operations_insights_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.