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,
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,
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),
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,
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)
.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}
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,
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",
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"),
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)
.displayName("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.storageAllocatedInGbs(0)
.build());
operations_insights_warehouse_resource = oci.opsi.OperationsInsightsWarehouse("operationsInsightsWarehouseResource",
compartment_id="string",
cpu_allocated=0,
display_name="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",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
storageAllocatedInGbs: 0,
});
type: oci:Opsi:OperationsInsightsWarehouse
properties:
compartmentId: 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
The OperationsInsightsWarehouse resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Allocated double - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- Display
Name string - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- 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"}
- Storage
Allocated 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
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Allocated float64 - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- Display
Name string - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- 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"}
- Storage
Allocated 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
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Allocated Double - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- display
Name String - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- 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"}
- storage
Allocated 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
- compartment
Id string - (Updatable) The OCID of the compartment.
- cpu
Allocated number - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- display
Name string - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- {[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"}
- storage
Allocated 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 OCPUs allocated to OPSI Warehouse ADW.
- display_
name str - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- 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
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Allocated Number - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- display
Name String - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- 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"}
- storage
Allocated 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:
- Cpu
Used double - Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
- Dynamic
Group stringId - OCID of the dynamic group created for the warehouse
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Operations
Insights stringTenancy Id - Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- Storage
Used 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"}
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Last stringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- Cpu
Used float64 - Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
- Dynamic
Group stringId - OCID of the dynamic group created for the warehouse
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Operations
Insights stringTenancy Id - Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- Storage
Used 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"}
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Last stringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- cpu
Used Double - Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
- dynamic
Group StringId - OCID of the dynamic group created for the warehouse
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- operations
Insights StringTenancy Id - Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storage
Used 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"}
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Last StringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- time
Updated String - The time at which the resource was last updated. An RFC3339 formatted datetime string
- cpu
Used number - Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
- dynamic
Group stringId - OCID of the dynamic group created for the warehouse
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- operations
Insights stringTenancy Id - Tenancy Identifier of Ops Insights service
- state string
- Possible lifecycle states
- storage
Used 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"}
- time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Last stringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- time
Updated 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
- cpu
Used Number - Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.
- dynamic
Group StringId - OCID of the dynamic group created for the warehouse
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- operations
Insights StringTenancy Id - Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storage
Used 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"}
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Last StringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- time
Updated 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, 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Allocated double - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- Cpu
Used 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"}
- Display
Name string - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- Dynamic
Group 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"}
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Operations
Insights stringTenancy Id - Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- Storage
Allocated 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
- Storage
Used 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"}
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Last stringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Allocated float64 - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- Cpu
Used 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"}
- Display
Name string - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- Dynamic
Group 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"}
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Operations
Insights stringTenancy Id - Tenancy Identifier of Ops Insights service
- State string
- Possible lifecycle states
- Storage
Allocated 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
- Storage
Used 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"}
- Time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- Time
Last stringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- Time
Updated string - The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Allocated Double - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- cpu
Used 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"}
- display
Name String - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- dynamic
Group 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"}
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- operations
Insights StringTenancy Id - Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storage
Allocated 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
- storage
Used 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"}
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Last StringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- time
Updated String - The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartment
Id string - (Updatable) The OCID of the compartment.
- cpu
Allocated number - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- cpu
Used 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"}
- display
Name string - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- dynamic
Group 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"}
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- operations
Insights stringTenancy Id - Tenancy Identifier of Ops Insights service
- state string
- Possible lifecycle states
- storage
Allocated 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
- storage
Used 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"}
- time
Created string - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Last stringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- time
Updated 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.
- 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
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Allocated Number - (Updatable) Number of OCPUs allocated to OPSI Warehouse ADW.
- cpu
Used 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"}
- display
Name String - (Updatable) User-friedly name of Ops Insights Warehouse that does not have to be unique.
- dynamic
Group 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"}
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- operations
Insights StringTenancy Id - Tenancy Identifier of Ops Insights service
- state String
- Possible lifecycle states
- storage
Allocated 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
- storage
Used 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"}
- time
Created String - The time at which the resource was first created. An RFC3339 formatted datetime string
- time
Last StringWallet Rotated - The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string
- time
Updated 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.