Show / Hide Table of Contents

Class OperationsInsightsWarehouse

OPSI warehouse resource.

Inheritance
object
OperationsInsightsWarehouse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class OperationsInsightsWarehouse

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment.

Remarks

Required

ComputeModel

Declaration
[JsonProperty(PropertyName = "computeModel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OperationsInsightsWarehouse.ComputeModelEnum? ComputeModel { get; set; }
Property Value
Type Description
OperationsInsightsWarehouse.ComputeModelEnum?

The compute model for the OPSI warehouse ADW (OCPU or ECPU)

CpuAllocated

Declaration
[Required(ErrorMessage = "CpuAllocated is required.")]
[JsonProperty(PropertyName = "cpuAllocated")]
public double CpuAllocated { get; set; }
Property Value
Type Description
double

Number of CPUs allocated to OPSI Warehouse ADW.

Remarks

Required

CpuUsed

Declaration
[JsonProperty(PropertyName = "cpuUsed")]
public double CpuUsed { get; set; }
Property Value
Type Description
double

Number of OCPUs used by OPSI Warehouse ADW. Can be fractional.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

User-friedly name of Ops Insights Warehouse that does not have to be unique.

Remarks

Required

DynamicGroupId

Declaration
[JsonProperty(PropertyName = "dynamicGroupId")]
public string DynamicGroupId { get; set; }
Property Value
Type Description
string

OCID of the dynamic group created for the warehouse

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

OPSI Warehouse OCID

Remarks

Required

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
public string LifecycleDetails { get; set; }
Property Value
Type Description
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.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OperationsInsightsWarehouseLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
OperationsInsightsWarehouseLifecycleState?

Possible lifecycle states

Remarks

Required

OperationsInsightsTenancyId

Declaration
[JsonProperty(PropertyName = "operationsInsightsTenancyId")]
public string OperationsInsightsTenancyId { get; set; }
Property Value
Type Description
string

Tenancy Identifier of Ops Insights service

StorageAllocatedInGBs

Declaration
[JsonProperty(PropertyName = "storageAllocatedInGBs")]
public double StorageAllocatedInGBs { get; set; }
Property Value
Type Description
double

Storage allocated to OPSI Warehouse ADW.

StorageUsedInGBs

Declaration
[JsonProperty(PropertyName = "storageUsedInGBs")]
public double StorageUsedInGBs { get; set; }
Property Value
Type Description
double

Storage by OPSI Warehouse ADW in GB.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time at which the resource was first created. An RFC3339 formatted datetime string

Remarks

Required

TimeLastWalletRotated

Declaration
[JsonProperty(PropertyName = "timeLastWalletRotated")]
public DateTime? TimeLastWalletRotated { get; set; }
Property Value
Type Description
DateTime?

The time at which the ADW wallet was last rotated for the Ops Insights Warehouse. An RFC3339 formatted datetime string

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time at which the resource was last updated. An RFC3339 formatted datetime string

In this article
Back to top