Show / Hide Table of Contents

Class ResourceUsage

The resource usage information.

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

Properties

EmInstanceCount

Declaration
[JsonProperty(PropertyName = "emInstanceCount")]
public int? EmInstanceCount { get; set; }
Property Value
Type Description
int?

EmInstanceCount

EmInstances

Declaration
[JsonProperty(PropertyName = "emInstances")]
public List<EmInstancesDetails> EmInstances { get; set; }
Property Value
Type Description
List<EmInstancesDetails>

List of emInstances

Id

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

Unique identifier that is immutable on creation

Remarks

Required

OperationsInsightsWarehouseId

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

operations Insights Warehouse Identifier

Remarks

Required

SchemaName

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

schema name

TargetsCount

Declaration
[JsonProperty(PropertyName = "targetsCount")]
public int? TargetsCount { get; set; }
Property Value
Type Description
int?

EmInstance Target count

In this article
Back to top