1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Opsi
  5. OperationsInsightsPrivateEndpoint
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

oci.Opsi.OperationsInsightsPrivateEndpoint

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

    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("testOperationsInsightsPrivateEndpoint", {
        compartmentId: _var.compartment_id,
        displayName: _var.operations_insights_private_endpoint_display_name,
        isUsedForRacDbs: _var.operations_insights_private_endpoint_is_used_for_rac_dbs,
        subnetId: oci_core_subnet.test_subnet.id,
        vcnId: oci_core_vcn.test_vcn.id,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        description: _var.operations_insights_private_endpoint_description,
        freeformTags: {
            "bar-key": "value",
        },
        nsgIds: _var.operations_insights_private_endpoint_nsg_ids,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_operations_insights_private_endpoint = oci.opsi.OperationsInsightsPrivateEndpoint("testOperationsInsightsPrivateEndpoint",
        compartment_id=var["compartment_id"],
        display_name=var["operations_insights_private_endpoint_display_name"],
        is_used_for_rac_dbs=var["operations_insights_private_endpoint_is_used_for_rac_dbs"],
        subnet_id=oci_core_subnet["test_subnet"]["id"],
        vcn_id=oci_core_vcn["test_vcn"]["id"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        description=var["operations_insights_private_endpoint_description"],
        freeform_tags={
            "bar-key": "value",
        },
        nsg_ids=var["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, "testOperationsInsightsPrivateEndpoint", &Opsi.OperationsInsightsPrivateEndpointArgs{
    			CompartmentId:   pulumi.Any(_var.Compartment_id),
    			DisplayName:     pulumi.Any(_var.Operations_insights_private_endpoint_display_name),
    			IsUsedForRacDbs: pulumi.Any(_var.Operations_insights_private_endpoint_is_used_for_rac_dbs),
    			SubnetId:        pulumi.Any(oci_core_subnet.Test_subnet.Id),
    			VcnId:           pulumi.Any(oci_core_vcn.Test_vcn.Id),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			Description: pulumi.Any(_var.Operations_insights_private_endpoint_description),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			NsgIds: pulumi.Any(_var.Operations_insights_private_endpoint_nsg_ids),
    		})
    		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("testOperationsInsightsPrivateEndpoint", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Operations_insights_private_endpoint_display_name,
            IsUsedForRacDbs = @var.Operations_insights_private_endpoint_is_used_for_rac_dbs,
            SubnetId = oci_core_subnet.Test_subnet.Id,
            VcnId = oci_core_vcn.Test_vcn.Id,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            Description = @var.Operations_insights_private_endpoint_description,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            NsgIds = @var.Operations_insights_private_endpoint_nsg_ids,
        });
    
    });
    
    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(var_.compartment_id())
                .displayName(var_.operations_insights_private_endpoint_display_name())
                .isUsedForRacDbs(var_.operations_insights_private_endpoint_is_used_for_rac_dbs())
                .subnetId(oci_core_subnet.test_subnet().id())
                .vcnId(oci_core_vcn.test_vcn().id())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .description(var_.operations_insights_private_endpoint_description())
                .freeformTags(Map.of("bar-key", "value"))
                .nsgIds(var_.operations_insights_private_endpoint_nsg_ids())
                .build());
    
        }
    }
    
    resources:
      testOperationsInsightsPrivateEndpoint:
        type: oci:Opsi:OperationsInsightsPrivateEndpoint
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.operations_insights_private_endpoint_display_name}
          isUsedForRacDbs: ${var.operations_insights_private_endpoint_is_used_for_rac_dbs}
          subnetId: ${oci_core_subnet.test_subnet.id}
          vcnId: ${oci_core_vcn.test_vcn.id}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          description: ${var.operations_insights_private_endpoint_description}
          freeformTags:
            bar-key: value
          nsgIds: ${var.operations_insights_private_endpoint_nsg_ids}
    

    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.

    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:

    CompartmentId string
    (Updatable) The compartment OCID of the Private service accessed database.
    DisplayName string
    (Updatable) The display name for the private endpoint. It is changeable.
    IsUsedForRacDbs bool
    The flag to identify if private endpoint is used for rac database or not
    SubnetId string
    The Subnet OCID of the Private service accessed database.
    VcnId 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

    DefinedTags 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.
    FreeformTags 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"}
    NsgIds List<string>
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    PrivateEndpointStatusDetails string
    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.
    CompartmentId string
    (Updatable) The compartment OCID of the Private service accessed database.
    DisplayName string
    (Updatable) The display name for the private endpoint. It is changeable.
    IsUsedForRacDbs bool
    The flag to identify if private endpoint is used for rac database or not
    SubnetId string
    The Subnet OCID of the Private service accessed database.
    VcnId 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

    DefinedTags 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.
    FreeformTags 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"}
    NsgIds []string
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    PrivateEndpointStatusDetails string
    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.
    compartmentId String
    (Updatable) The compartment OCID of the Private service accessed database.
    displayName String
    (Updatable) The display name for the private endpoint. It is changeable.
    isUsedForRacDbs Boolean
    The flag to identify if private endpoint is used for rac database or not
    subnetId String
    The Subnet OCID of the Private service accessed database.
    vcnId 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

    definedTags 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.
    freeformTags 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"}
    nsgIds List<String>
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    privateEndpointStatusDetails String
    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.
    compartmentId string
    (Updatable) The compartment OCID of the Private service accessed database.
    displayName string
    (Updatable) The display name for the private endpoint. It is changeable.
    isUsedForRacDbs boolean
    The flag to identify if private endpoint is used for rac database or not
    subnetId string
    The Subnet OCID of the Private service accessed database.
    vcnId 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

    definedTags {[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.
    freeformTags {[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"}
    nsgIds string[]
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    privateEndpointStatusDetails string
    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_for_rac_dbs bool
    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

    defined_tags 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.
    freeform_tags 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_status_details str
    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.
    compartmentId String
    (Updatable) The compartment OCID of the Private service accessed database.
    displayName String
    (Updatable) The display name for the private endpoint. It is changeable.
    isUsedForRacDbs Boolean
    The flag to identify if private endpoint is used for rac database or not
    subnetId String
    The Subnet OCID of the Private service accessed database.
    vcnId 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

    definedTags 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.
    freeformTags 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"}
    nsgIds List<String>
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    privateEndpointStatusDetails String
    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.
    LifecycleDetails 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.
    PrivateIp 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.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated 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.
    LifecycleDetails 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.
    PrivateIp 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.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated 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.
    lifecycleDetails 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.
    privateIp 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.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated 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.
    lifecycleDetails 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.
    privateIp 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.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated 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.
    system_tags 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.
    lifecycleDetails 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.
    privateIp 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.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated 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.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The compartment OCID of the Private service accessed database.
    DefinedTags 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.
    DisplayName string
    (Updatable) The display name for the private endpoint. It is changeable.
    FreeformTags 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"}
    IsUsedForRacDbs bool
    The flag to identify if private endpoint is used for rac database or not
    LifecycleDetails 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.
    NsgIds List<string>
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    PrivateEndpointStatusDetails string
    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.
    PrivateIp 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.
    SubnetId string
    The Subnet OCID of the Private service accessed database.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the private endpoint was created, in the format defined by RFC3339.
    VcnId 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

    CompartmentId string
    (Updatable) The compartment OCID of the Private service accessed database.
    DefinedTags 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.
    DisplayName string
    (Updatable) The display name for the private endpoint. It is changeable.
    FreeformTags 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"}
    IsUsedForRacDbs bool
    The flag to identify if private endpoint is used for rac database or not
    LifecycleDetails 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.
    NsgIds []string
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    PrivateEndpointStatusDetails string
    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.
    PrivateIp 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.
    SubnetId string
    The Subnet OCID of the Private service accessed database.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the private endpoint was created, in the format defined by RFC3339.
    VcnId 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

    compartmentId String
    (Updatable) The compartment OCID of the Private service accessed database.
    definedTags 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.
    displayName String
    (Updatable) The display name for the private endpoint. It is changeable.
    freeformTags 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"}
    isUsedForRacDbs Boolean
    The flag to identify if private endpoint is used for rac database or not
    lifecycleDetails 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.
    nsgIds List<String>
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    privateEndpointStatusDetails String
    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.
    privateIp 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.
    subnetId String
    The Subnet OCID of the Private service accessed database.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the private endpoint was created, in the format defined by RFC3339.
    vcnId 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

    compartmentId string
    (Updatable) The compartment OCID of the Private service accessed database.
    definedTags {[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.
    displayName string
    (Updatable) The display name for the private endpoint. It is changeable.
    freeformTags {[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"}
    isUsedForRacDbs boolean
    The flag to identify if private endpoint is used for rac database or not
    lifecycleDetails 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.
    nsgIds string[]
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    privateEndpointStatusDetails string
    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.
    privateIp 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.
    subnetId string
    The Subnet OCID of the Private service accessed database.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the private endpoint was created, in the format defined by RFC3339.
    vcnId 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.
    defined_tags 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.
    freeform_tags 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_for_rac_dbs bool
    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_status_details str
    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.
    system_tags 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

    compartmentId String
    (Updatable) The compartment OCID of the Private service accessed database.
    definedTags 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.
    displayName String
    (Updatable) The display name for the private endpoint. It is changeable.
    freeformTags 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"}
    isUsedForRacDbs Boolean
    The flag to identify if private endpoint is used for rac database or not
    lifecycleDetails 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.
    nsgIds List<String>
    (Updatable) The OCID of the network security groups that the private endpoint belongs to.
    privateEndpointStatusDetails String
    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.
    privateIp 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.
    subnetId String
    The Subnet OCID of the Private service accessed database.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the private endpoint was created, in the format defined by RFC3339.
    vcnId 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.
    oci logo
    Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi