Show / Hide Table of Contents

Class SavedCustomTable

The custom table for Cost Analysis UI rendering.

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

Properties

ColumnGroupBy

Declaration
[JsonProperty(PropertyName = "columnGroupBy")]
public List<string> ColumnGroupBy { get; set; }
Property Value
Type Description
List<string>

The column groupBy key list. For Example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]

CompartmentDepth

Declaration
[JsonProperty(PropertyName = "compartmentDepth")]
public decimal? CompartmentDepth { get; set; }
Property Value
Type Description
decimal?

The compartment depth level.

DisplayName

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

The name of the custom table.

Remarks

Required

GroupByTag

Declaration
[JsonProperty(PropertyName = "groupByTag")]
public List<Tag> GroupByTag { get; set; }
Property Value
Type Description
List<Tag>

GroupBy a specific tagKey. Provide the tagNamespace and tagKey in the tag object. Only one tag in the list is supported. For Example: [{"namespace":"oracle", "key":"createdBy"]

RowGroupBy

Declaration
[JsonProperty(PropertyName = "rowGroupBy")]
public List<string> RowGroupBy { get; set; }
Property Value
Type Description
List<string>

The row groupBy key list. For Example: ["tagNamespace", "tagKey", "tagValue", "service", "skuName", "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "platform", "region", "logicalAd", "resourceId", "tenantId", "tenantName"]

Version

Declaration
[JsonProperty(PropertyName = "version")]
public decimal? Version { get; set; }
Property Value
Type Description
decimal?

The version of the custom table.

In this article
Back to top