Show / Hide Table of Contents

Class QueryDefinition

The common fields for queries.

Inheritance
object
QueryDefinition
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 QueryDefinition

Properties

CostAnalysisUI

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

Required

DisplayName

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

The query display name. Avoid entering confidential information.

Remarks

Required

ReportQuery

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

Required

Version

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

The saved query version.

Remarks

Required

In this article
Back to top