1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Opsi
  5. OperationsInsightsWarehouse
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Opsi.OperationsInsightsWarehouse

Explore with Pulumi AI

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

Create a Ops Insights Warehouse resource for the tenant in Ops 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("test_operations_insights_warehouse", {
    compartmentId: compartmentId,
    cpuAllocated: operationsInsightsWarehouseCpuAllocated,
    displayName: operationsInsightsWarehouseDisplayName,
    computeModel: operationsInsightsWarehouseComputeModel,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    storageAllocatedInGbs: operationsInsightsWarehouseStorageAllocatedInGbs,
});
Copy
import pulumi
import pulumi_oci as oci

test_operations_insights_warehouse = oci.opsi.OperationsInsightsWarehouse("test_operations_insights_warehouse",
    compartment_id=compartment_id,
    cpu_allocated=operations_insights_warehouse_cpu_allocated,
    display_name=operations_insights_warehouse_display_name,
    compute_model=operations_insights_warehouse_compute_model,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    storage_allocated_in_gbs=operations_insights_warehouse_storage_allocated_in_gbs)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/opsi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opsi.NewOperationsInsightsWarehouse(ctx, "test_operations_insights_warehouse", &opsi.OperationsInsightsWarehouseArgs{
			CompartmentId: pulumi.Any(compartmentId),
			CpuAllocated:  pulumi.Any(operationsInsightsWarehouseCpuAllocated),
			DisplayName:   pulumi.Any(operationsInsightsWarehouseDisplayName),
			ComputeModel:  pulumi.Any(operationsInsightsWarehouseComputeModel),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			StorageAllocatedInGbs: pulumi.Any(operationsInsightsWarehouseStorageAllocatedInGbs),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testOperationsInsightsWarehouse = new Oci.Opsi.OperationsInsightsWarehouse("test_operations_insights_warehouse", new()
    {
        CompartmentId = compartmentId,
        CpuAllocated = operationsInsightsWarehouseCpuAllocated,
        DisplayName = operationsInsightsWarehouseDisplayName,
        ComputeModel = operationsInsightsWarehouseComputeModel,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        StorageAllocatedInGbs = operationsInsightsWarehouseStorageAllocatedInGbs,
    });

});
Copy
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(compartmentId)
            .cpuAllocated(operationsInsightsWarehouseCpuAllocated)
            .displayName(operationsInsightsWarehouseDisplayName)
            .computeModel(operationsInsightsWarehouseComputeModel)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .storageAllocatedInGbs(operationsInsightsWarehouseStorageAllocatedInGbs)
            .build());

    }
}
Copy
resources:
  testOperationsInsightsWarehouse:
    type: oci:Opsi:OperationsInsightsWarehouse
    name: test_operations_insights_warehouse
    properties:
      compartmentId: ${compartmentId}
      cpuAllocated: ${operationsInsightsWarehouseCpuAllocated}
      displayName: ${operationsInsightsWarehouseDisplayName}
      computeModel: ${operationsInsightsWarehouseComputeModel}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      storageAllocatedInGbs: ${operationsInsightsWarehouseStorageAllocatedInGbs}
Copy

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,
                                compute_model: Optional[str] = None,
                                defined_tags: Optional[Mapping[str, str]] = None,
                                freeform_tags: Optional[Mapping[str, str]] = 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 This property is required. string
The unique name of the resource.
args This property is required. OperationsInsightsWarehouseArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. OperationsInsightsWarehouseArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OperationsInsightsWarehouseArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OperationsInsightsWarehouseArgs
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 operationsInsightsWarehouseResource = new Oci.Opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource", new()
{
    CompartmentId = "string",
    CpuAllocated = 0,
    DisplayName = "string",
    ComputeModel = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    StorageAllocatedInGbs = 0,
});
Copy
example, err := Opsi.NewOperationsInsightsWarehouse(ctx, "operationsInsightsWarehouseResource", &Opsi.OperationsInsightsWarehouseArgs{
	CompartmentId: pulumi.String("string"),
	CpuAllocated:  pulumi.Float64(0),
	DisplayName:   pulumi.String("string"),
	ComputeModel:  pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	StorageAllocatedInGbs: pulumi.Float64(0),
})
Copy
var operationsInsightsWarehouseResource = new OperationsInsightsWarehouse("operationsInsightsWarehouseResource", OperationsInsightsWarehouseArgs.builder()
    .compartmentId("string")
    .cpuAllocated(0)
    .displayName("string")
    .computeModel("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .storageAllocatedInGbs(0)
    .build());
Copy
operations_insights_warehouse_resource = oci.opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource",
    compartment_id="string",
    cpu_allocated=0,
    display_name="string",
    compute_model="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    storage_allocated_in_gbs=0)
Copy
const operationsInsightsWarehouseResource = new oci.opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource", {
    compartmentId: "string",
    cpuAllocated: 0,
    displayName: "string",
    computeModel: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    storageAllocatedInGbs: 0,
});
Copy
type: oci:Opsi:OperationsInsightsWarehouse
properties:
    compartmentId: string
    computeModel: string
    cpuAllocated: 0
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    storageAllocatedInGbs: 0
Copy

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

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

The OperationsInsightsWarehouse resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) The OCID of the compartment.
CpuAllocated This property is required. double
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
DisplayName This property is required. string
(Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
ComputeModel string
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags Dictionary<string, string>
(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 This property is required. string
(Updatable) The OCID of the compartment.
CpuAllocated This property is required. float64
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
DisplayName This property is required. string
(Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
ComputeModel string
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags map[string]string
(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 This property is required. String
(Updatable) The OCID of the compartment.
cpuAllocated This property is required. Double
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
displayName This property is required. String
(Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
computeModel String
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String,String>
(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 This property is required. string
(Updatable) The OCID of the compartment.
cpuAllocated This property is required. number
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
displayName This property is required. string
(Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
computeModel string
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags {[key: string]: string}
(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 This property is required. str
(Updatable) The OCID of the compartment.
cpu_allocated This property is required. float
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
display_name This property is required. str
(Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
compute_model str
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
defined_tags Mapping[str, str]
(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, str]
(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 This property is required. String
(Updatable) The OCID of the compartment.
cpuAllocated This property is required. Number
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
displayName This property is required. String
(Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
computeModel String
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String>
(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 Ops Insights service
State string
Possible lifecycle states
StorageUsedInGbs double
Storage by OPSI Warehouse ADW in GB.
SystemTags Dictionary<string, string>
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 Ops 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 Ops Insights service
State string
Possible lifecycle states
StorageUsedInGbs float64
Storage by OPSI Warehouse ADW in GB.
SystemTags map[string]string
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 Ops 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 Ops Insights service
state String
Possible lifecycle states
storageUsedInGbs Double
Storage by OPSI Warehouse ADW in GB.
systemTags Map<String,String>
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 Ops 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 Ops Insights service
state string
Possible lifecycle states
storageUsedInGbs number
Storage by OPSI Warehouse ADW in GB.
systemTags {[key: string]: string}
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 Ops 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 Ops Insights service
state str
Possible lifecycle states
storage_used_in_gbs float
Storage by OPSI Warehouse ADW in GB.
system_tags Mapping[str, str]
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 Ops 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 Ops Insights service
state String
Possible lifecycle states
storageUsedInGbs Number
Storage by OPSI Warehouse ADW in GB.
systemTags Map<String>
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 Ops 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,
        compute_model: Optional[str] = None,
        cpu_allocated: Optional[float] = None,
        cpu_used: Optional[float] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        dynamic_group_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = 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, str]] = 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)
resources:  _:    type: oci:Opsi:OperationsInsightsWarehouse    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
ComputeModel string
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
CpuAllocated double
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
CpuUsed double
Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
DefinedTags Dictionary<string, string>
(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 Ops Insights Warehouse that does not have to be unique.
DynamicGroupId string
OCID of the dynamic group created for the warehouse
FreeformTags Dictionary<string, string>
(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 Ops 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, string>
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 Ops 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.
ComputeModel string
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
CpuAllocated float64
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
CpuUsed float64
Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
DefinedTags map[string]string
(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 Ops Insights Warehouse that does not have to be unique.
DynamicGroupId string
OCID of the dynamic group created for the warehouse
FreeformTags map[string]string
(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 Ops 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]string
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 Ops 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.
computeModel String
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
cpuAllocated Double
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
cpuUsed Double
Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
definedTags Map<String,String>
(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 Ops Insights Warehouse that does not have to be unique.
dynamicGroupId String
OCID of the dynamic group created for the warehouse
freeformTags Map<String,String>
(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 Ops 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,String>
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 Ops 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.
computeModel string
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
cpuAllocated number
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
cpuUsed number
Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
definedTags {[key: string]: string}
(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 Ops Insights Warehouse that does not have to be unique.
dynamicGroupId string
OCID of the dynamic group created for the warehouse
freeformTags {[key: string]: string}
(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 Ops 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]: string}
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 Ops 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.
compute_model str
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
cpu_allocated float
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
cpu_used float
Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
defined_tags Mapping[str, str]
(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 Ops 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, str]
(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 Ops 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, str]
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 Ops 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.
computeModel String
(Updatable) The compute model for the OPSI warehouse ADW (OCPU or ECPU)
cpuAllocated Number
(Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
cpuUsed Number
Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
definedTags Map<String>
(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 Ops Insights Warehouse that does not have to be unique.
dynamicGroupId String
OCID of the dynamic group created for the warehouse
freeformTags Map<String>
(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 Ops 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<String>
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 Ops 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"
Copy

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.