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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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}
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 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.
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,
});
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),
})
var operationsInsightsWarehouseResource = new OperationsInsightsWarehouse("operationsInsightsWarehouseResource", OperationsInsightsWarehouseArgs.builder()
    .compartmentId("string")
    .cpuAllocated(0.0)
    .displayName("string")
    .computeModel("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .storageAllocatedInGbs(0.0)
    .build());
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)
const operationsInsightsWarehouseResource = new oci.opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource", {
    compartmentId: "string",
    cpuAllocated: 0,
    displayName: "string",
    computeModel: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    storageAllocatedInGbs: 0,
});
type: oci:Opsi:OperationsInsightsWarehouse
properties:
    compartmentId: string
    computeModel: string
    cpuAllocated: 0
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    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
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 string
- (Updatable) The OCID of the compartment.
- CpuAllocated double
- (Updatable) Number of CPUs allocated to OPSI Warehouse ADW.
- DisplayName 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)
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- StorageAllocated doubleIn Gbs 
- (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 CPUs allocated to OPSI Warehouse ADW.
- DisplayName 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)
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- StorageAllocated float64In Gbs 
- (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 CPUs allocated to OPSI Warehouse ADW.
- displayName 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)
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- storageAllocated DoubleIn Gbs 
- (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 CPUs allocated to OPSI Warehouse ADW.
- displayName 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)
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[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"}
- storageAllocated numberIn Gbs 
- (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 CPUs allocated to OPSI Warehouse ADW.
- display_name 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)
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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_ floatin_ gbs 
- (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 CPUs allocated to OPSI Warehouse ADW.
- displayName 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)
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- 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"}
- storageAllocated NumberIn Gbs 
- (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.
- DynamicGroup stringId 
- 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.
- OperationsInsights stringTenancy Id 
- Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- StorageUsed doubleIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- TimeLast stringWallet Rotated 
- 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.
- DynamicGroup stringId 
- 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.
- OperationsInsights stringTenancy Id 
- Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- StorageUsed float64In Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- TimeLast stringWallet Rotated 
- 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.
- dynamicGroup StringId 
- 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.
- operationsInsights StringTenancy Id 
- Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storageUsed DoubleIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- timeLast StringWallet Rotated 
- 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.
- dynamicGroup stringId 
- 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.
- operationsInsights stringTenancy Id 
- Tenancy Identifier of Ops Insights service
- state string
- Possible lifecycle states
- storageUsed numberIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- {[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
- timeLast stringWallet Rotated 
- 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_ strid 
- 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_ strtenancy_ id 
- Tenancy Identifier of Ops Insights service
- state str
- Possible lifecycle states
- storage_used_ floatin_ gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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_ strwallet_ rotated 
- 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.
- dynamicGroup StringId 
- 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.
- operationsInsights StringTenancy Id 
- Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storageUsed NumberIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- timeLast StringWallet Rotated 
- 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) -> OperationsInsightsWarehousefunc 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
- 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.
- 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.
- 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.
- DynamicGroup stringId 
- OCID of the dynamic group created for the warehouse
- 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.
- OperationsInsights stringTenancy Id 
- Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- StorageAllocated doubleIn Gbs 
- (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 
- StorageUsed doubleIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- TimeLast stringWallet Rotated 
- 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.
- 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.
- DynamicGroup stringId 
- OCID of the dynamic group created for the warehouse
- 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.
- OperationsInsights stringTenancy Id 
- Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- StorageAllocated float64In Gbs 
- (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 
- StorageUsed float64In Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- TimeLast stringWallet Rotated 
- 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.
- 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.
- dynamicGroup StringId 
- OCID of the dynamic group created for the warehouse
- 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.
- operationsInsights StringTenancy Id 
- Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storageAllocated DoubleIn Gbs 
- (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 
- storageUsed DoubleIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- timeLast StringWallet Rotated 
- 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.
- {[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.
- dynamicGroup stringId 
- OCID of the dynamic group created for the warehouse
- {[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.
- operationsInsights stringTenancy Id 
- Tenancy Identifier of Ops Insights service
- state string
- Possible lifecycle states
- storageAllocated numberIn Gbs 
- (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 
- storageUsed numberIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- {[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
- timeLast stringWallet Rotated 
- 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.
- 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_ strid 
- OCID of the dynamic group created for the warehouse
- 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_ strtenancy_ id 
- Tenancy Identifier of Ops Insights service
- state str
- Possible lifecycle states
- storage_allocated_ floatin_ gbs 
- (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_ floatin_ gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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_ strwallet_ rotated 
- 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.
- 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.
- dynamicGroup StringId 
- OCID of the dynamic group created for the warehouse
- 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.
- operationsInsights StringTenancy Id 
- Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storageAllocated NumberIn Gbs 
- (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 
- storageUsed NumberIn Gbs 
- Storage by OPSI Warehouse ADW in GB.
- 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
- timeLast StringWallet Rotated 
- 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"
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 ociTerraform Provider.