1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Opsi
  5. OperationsInsightsWarehouse
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Opsi.OperationsInsightsWarehouse

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This resource provides the Operations Insights Warehouse resource in Oracle Cloud Infrastructure Opsi service.

    Create a Operations Insights Warehouse resource for the tenant in Operations Insights. New ADW will be provisioned for this tenant. There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. If the ‘opsi-warehouse-type’ header is passed to the API, a warehouse resource without ADW or Schema provisioning is created.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOperationsInsightsWarehouse = new oci.opsi.OperationsInsightsWarehouse("testOperationsInsightsWarehouse", {
        compartmentId: _var.compartment_id,
        cpuAllocated: _var.operations_insights_warehouse_cpu_allocated,
        displayName: _var.operations_insights_warehouse_display_name,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        storageAllocatedInGbs: _var.operations_insights_warehouse_storage_allocated_in_gbs,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_operations_insights_warehouse = oci.opsi.OperationsInsightsWarehouse("testOperationsInsightsWarehouse",
        compartment_id=var["compartment_id"],
        cpu_allocated=var["operations_insights_warehouse_cpu_allocated"],
        display_name=var["operations_insights_warehouse_display_name"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        storage_allocated_in_gbs=var["operations_insights_warehouse_storage_allocated_in_gbs"])
    
    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.NewOperationsInsightsWarehouse(ctx, "testOperationsInsightsWarehouse", &Opsi.OperationsInsightsWarehouseArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			CpuAllocated:  pulumi.Any(_var.Operations_insights_warehouse_cpu_allocated),
    			DisplayName:   pulumi.Any(_var.Operations_insights_warehouse_display_name),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			StorageAllocatedInGbs: pulumi.Any(_var.Operations_insights_warehouse_storage_allocated_in_gbs),
    		})
    		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 testOperationsInsightsWarehouse = new Oci.Opsi.OperationsInsightsWarehouse("testOperationsInsightsWarehouse", new()
        {
            CompartmentId = @var.Compartment_id,
            CpuAllocated = @var.Operations_insights_warehouse_cpu_allocated,
            DisplayName = @var.Operations_insights_warehouse_display_name,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            StorageAllocatedInGbs = @var.Operations_insights_warehouse_storage_allocated_in_gbs,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Opsi.OperationsInsightsWarehouse;
    import com.pulumi.oci.Opsi.OperationsInsightsWarehouseArgs;
    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 testOperationsInsightsWarehouse = new OperationsInsightsWarehouse("testOperationsInsightsWarehouse", OperationsInsightsWarehouseArgs.builder()        
                .compartmentId(var_.compartment_id())
                .cpuAllocated(var_.operations_insights_warehouse_cpu_allocated())
                .displayName(var_.operations_insights_warehouse_display_name())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .storageAllocatedInGbs(var_.operations_insights_warehouse_storage_allocated_in_gbs())
                .build());
    
        }
    }
    
    resources:
      testOperationsInsightsWarehouse:
        type: oci:Opsi:OperationsInsightsWarehouse
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          cpuAllocated: ${var.operations_insights_warehouse_cpu_allocated}
          displayName: ${var.operations_insights_warehouse_display_name}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          storageAllocatedInGbs: ${var.operations_insights_warehouse_storage_allocated_in_gbs}
    

    Create OperationsInsightsWarehouse Resource

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

    Constructor syntax

    new OperationsInsightsWarehouse(name: string, args: OperationsInsightsWarehouseArgs, opts?: CustomResourceOptions);
    @overload
    def OperationsInsightsWarehouse(resource_name: str,
                                    args: OperationsInsightsWarehouseArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def OperationsInsightsWarehouse(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    compartment_id: Optional[str] = None,
                                    cpu_allocated: Optional[float] = None,
                                    display_name: Optional[str] = None,
                                    defined_tags: Optional[Mapping[str, Any]] = None,
                                    freeform_tags: Optional[Mapping[str, Any]] = None,
                                    storage_allocated_in_gbs: Optional[float] = None)
    func NewOperationsInsightsWarehouse(ctx *Context, name string, args OperationsInsightsWarehouseArgs, opts ...ResourceOption) (*OperationsInsightsWarehouse, error)
    public OperationsInsightsWarehouse(string name, OperationsInsightsWarehouseArgs args, CustomResourceOptions? opts = null)
    public OperationsInsightsWarehouse(String name, OperationsInsightsWarehouseArgs args)
    public OperationsInsightsWarehouse(String name, OperationsInsightsWarehouseArgs args, CustomResourceOptions options)
    
    type: oci:Opsi:OperationsInsightsWarehouse
    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 OperationsInsightsWarehouseArgs
    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 OperationsInsightsWarehouseArgs
    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 OperationsInsightsWarehouseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OperationsInsightsWarehouseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OperationsInsightsWarehouseArgs
    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 operationsInsightsWarehouseResource = new Oci.Opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource", new()
    {
        CompartmentId = "string",
        CpuAllocated = 0,
        DisplayName = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
        StorageAllocatedInGbs = 0,
    });
    
    example, err := Opsi.NewOperationsInsightsWarehouse(ctx, "operationsInsightsWarehouseResource", &Opsi.OperationsInsightsWarehouseArgs{
    	CompartmentId: pulumi.String("string"),
    	CpuAllocated:  pulumi.Float64(0),
    	DisplayName:   pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	StorageAllocatedInGbs: pulumi.Float64(0),
    })
    
    var operationsInsightsWarehouseResource = new OperationsInsightsWarehouse("operationsInsightsWarehouseResource", OperationsInsightsWarehouseArgs.builder()        
        .compartmentId("string")
        .cpuAllocated(0)
        .displayName("string")
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .storageAllocatedInGbs(0)
        .build());
    
    operations_insights_warehouse_resource = oci.opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource",
        compartment_id="string",
        cpu_allocated=0,
        display_name="string",
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        },
        storage_allocated_in_gbs=0)
    
    const operationsInsightsWarehouseResource = new oci.opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource", {
        compartmentId: "string",
        cpuAllocated: 0,
        displayName: "string",
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
        storageAllocatedInGbs: 0,
    });
    
    type: oci:Opsi:OperationsInsightsWarehouse
    properties:
        compartmentId: string
        cpuAllocated: 0
        definedTags:
            string: any
        displayName: string
        freeformTags:
            string: any
        storageAllocatedInGbs: 0
    

    OperationsInsightsWarehouse 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 OperationsInsightsWarehouse resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuAllocated double
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    DisplayName string
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    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"}
    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"}
    StorageAllocatedInGbs double

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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 OCID of the compartment.
    CpuAllocated float64
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    DisplayName string
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    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"}
    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"}
    StorageAllocatedInGbs float64

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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 OCID of the compartment.
    cpuAllocated Double
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    displayName String
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    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"}
    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"}
    storageAllocatedInGbs Double

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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 OCID of the compartment.
    cpuAllocated number
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    displayName string
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    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"}
    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"}
    storageAllocatedInGbs number

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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 OCID of the compartment.
    cpu_allocated float
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    display_name str
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    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"}
    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"}
    storage_allocated_in_gbs float

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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 OCID of the compartment.
    cpuAllocated Number
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    displayName String
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    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"}
    storageAllocatedInGbs Number

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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

    Outputs

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

    CpuUsed double
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    DynamicGroupId string
    OCID of the dynamic group created for the warehouse
    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.
    OperationsInsightsTenancyId string
    Tenancy Identifier of Operations Insights service
    State string
    Possible lifecycle states
    StorageUsedInGbs double
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    TimeLastWalletRotated string
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    TimeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    CpuUsed float64
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    DynamicGroupId string
    OCID of the dynamic group created for the warehouse
    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.
    OperationsInsightsTenancyId string
    Tenancy Identifier of Operations Insights service
    State string
    Possible lifecycle states
    StorageUsedInGbs float64
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    TimeLastWalletRotated string
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    TimeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    cpuUsed Double
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    dynamicGroupId String
    OCID of the dynamic group created for the warehouse
    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.
    operationsInsightsTenancyId String
    Tenancy Identifier of Operations Insights service
    state String
    Possible lifecycle states
    storageUsedInGbs Double
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    timeLastWalletRotated String
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    timeUpdated String
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    cpuUsed number
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    dynamicGroupId string
    OCID of the dynamic group created for the warehouse
    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.
    operationsInsightsTenancyId string
    Tenancy Identifier of Operations Insights service
    state string
    Possible lifecycle states
    storageUsedInGbs number
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    timeLastWalletRotated string
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    timeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    cpu_used float
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    dynamic_group_id str
    OCID of the dynamic group created for the warehouse
    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.
    operations_insights_tenancy_id str
    Tenancy Identifier of Operations Insights service
    state str
    Possible lifecycle states
    storage_used_in_gbs float
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    time_last_wallet_rotated str
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    time_updated str
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    cpuUsed Number
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    dynamicGroupId String
    OCID of the dynamic group created for the warehouse
    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.
    operationsInsightsTenancyId String
    Tenancy Identifier of Operations Insights service
    state String
    Possible lifecycle states
    storageUsedInGbs Number
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    timeLastWalletRotated String
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    timeUpdated String
    The time at which the resource was last updated. An RFC3339 formatted datetime string

    Look up Existing OperationsInsightsWarehouse Resource

    Get an existing OperationsInsightsWarehouse 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?: OperationsInsightsWarehouseState, opts?: CustomResourceOptions): OperationsInsightsWarehouse
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            cpu_allocated: Optional[float] = None,
            cpu_used: Optional[float] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            dynamic_group_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            lifecycle_details: Optional[str] = None,
            operations_insights_tenancy_id: Optional[str] = None,
            state: Optional[str] = None,
            storage_allocated_in_gbs: Optional[float] = None,
            storage_used_in_gbs: Optional[float] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_last_wallet_rotated: Optional[str] = None,
            time_updated: Optional[str] = None) -> OperationsInsightsWarehouse
    func GetOperationsInsightsWarehouse(ctx *Context, name string, id IDInput, state *OperationsInsightsWarehouseState, opts ...ResourceOption) (*OperationsInsightsWarehouse, error)
    public static OperationsInsightsWarehouse Get(string name, Input<string> id, OperationsInsightsWarehouseState? state, CustomResourceOptions? opts = null)
    public static OperationsInsightsWarehouse get(String name, Output<String> id, OperationsInsightsWarehouseState 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 OCID of the compartment.
    CpuAllocated double
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    CpuUsed double
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    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"}
    DisplayName string
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    DynamicGroupId string
    OCID of the dynamic group created for the warehouse
    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"}
    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.
    OperationsInsightsTenancyId string
    Tenancy Identifier of Operations Insights service
    State string
    Possible lifecycle states
    StorageAllocatedInGbs double

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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

    StorageUsedInGbs double
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    TimeLastWalletRotated string
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    TimeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuAllocated float64
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    CpuUsed float64
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    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"}
    DisplayName string
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    DynamicGroupId string
    OCID of the dynamic group created for the warehouse
    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"}
    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.
    OperationsInsightsTenancyId string
    Tenancy Identifier of Operations Insights service
    State string
    Possible lifecycle states
    StorageAllocatedInGbs float64

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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

    StorageUsedInGbs float64
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    TimeLastWalletRotated string
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    TimeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuAllocated Double
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    cpuUsed Double
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    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"}
    displayName String
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    dynamicGroupId String
    OCID of the dynamic group created for the warehouse
    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"}
    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.
    operationsInsightsTenancyId String
    Tenancy Identifier of Operations Insights service
    state String
    Possible lifecycle states
    storageAllocatedInGbs Double

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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

    storageUsedInGbs Double
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    timeLastWalletRotated String
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    timeUpdated String
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    compartmentId string
    (Updatable) The OCID of the compartment.
    cpuAllocated number
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    cpuUsed number
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    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"}
    displayName string
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    dynamicGroupId string
    OCID of the dynamic group created for the warehouse
    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"}
    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.
    operationsInsightsTenancyId string
    Tenancy Identifier of Operations Insights service
    state string
    Possible lifecycle states
    storageAllocatedInGbs number

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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

    storageUsedInGbs number
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    timeLastWalletRotated string
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    timeUpdated string
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    compartment_id str
    (Updatable) The OCID of the compartment.
    cpu_allocated float
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    cpu_used float
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    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"}
    display_name str
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    dynamic_group_id str
    OCID of the dynamic group created for the warehouse
    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"}
    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.
    operations_insights_tenancy_id str
    Tenancy Identifier of Operations Insights service
    state str
    Possible lifecycle states
    storage_allocated_in_gbs float

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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

    storage_used_in_gbs float
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    time_last_wallet_rotated str
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    time_updated str
    The time at which the resource was last updated. An RFC3339 formatted datetime string
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuAllocated Number
    (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
    cpuUsed Number
    Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    (Updatable) User-friedly name of Operations Insights Warehouse that does not have to be unique.
    dynamicGroupId String
    OCID of the dynamic group created for the warehouse
    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"}
    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.
    operationsInsightsTenancyId String
    Tenancy Identifier of Operations Insights service
    state String
    Possible lifecycle states
    storageAllocatedInGbs Number

    (Updatable) Storage allocated to OPSI Warehouse ADW.

    ** 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

    storageUsedInGbs Number
    Storage by OPSI Warehouse ADW in GB.
    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 time at which the resource was first created. An RFC3339 formatted datetime string
    timeLastWalletRotated String
    The time at which the ADW wallet was last rotated for the Operations Insights Warehouse. An RFC3339 formatted datetime string
    timeUpdated String
    The time at which the resource was last updated. An RFC3339 formatted datetime string

    Import

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

    $ pulumi import oci:Opsi/operationsInsightsWarehouse:OperationsInsightsWarehouse test_operations_insights_warehouse "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.32.0 published on Thursday, Apr 18, 2024 by Pulumi