Show / Hide Table of Contents

Class ScheduledQuery

Scheduled Query object.

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

Properties

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"}}

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

The OCID of the scheduled query . An OCID is generated when the scheduled query is created.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LifecycleStates? LifecycleState { get; set; }
Property Value
Type Description
LifecycleStates?

The current lifecycle state of the Scheduled Query.

ScheduledQueryDescription

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

Description for the scheduled query.

ScheduledQueryInstances

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

Scheduled query instances.

ScheduledQueryMaximumRuntimeInSeconds

Declaration
[JsonProperty(PropertyName = "scheduledQueryMaximumRuntimeInSeconds")]
public long? ScheduledQueryMaximumRuntimeInSeconds { get; set; }
Property Value
Type Description
long?

Maximum runtime for the scheduled query in seconds.

ScheduledQueryName

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

Name of the scheduled query.

ScheduledQueryNextRunInMs

Declaration
[JsonProperty(PropertyName = "scheduledQueryNextRunInMs")]
public long? ScheduledQueryNextRunInMs { get; set; }
Property Value
Type Description
long?

Next run for the scheduled query.

ScheduledQueryProcessingConfiguration

Declaration
[JsonProperty(PropertyName = "scheduledQueryProcessingConfiguration")]
public ScheduledQueryProcessingConfig ScheduledQueryProcessingConfiguration { get; set; }
Property Value
Type Description
ScheduledQueryProcessingConfig

ScheduledQueryProcessingSubType

Declaration
[JsonProperty(PropertyName = "scheduledQueryProcessingSubType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScheduledQueryProcessingSubType? ScheduledQueryProcessingSubType { get; set; }
Property Value
Type Description
ScheduledQueryProcessingSubType?

Processing sub type of the scheduled query.

ScheduledQueryProcessingType

Declaration
[JsonProperty(PropertyName = "scheduledQueryProcessingType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScheduledQueryProcessingType? ScheduledQueryProcessingType { get; set; }
Property Value
Type Description
ScheduledQueryProcessingType?

Processing type of the scheduled query.

ScheduledQueryRetentionCriteria

Declaration
[JsonProperty(PropertyName = "scheduledQueryRetentionCriteria")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScheduledQueryRetentionCriteria? ScheduledQueryRetentionCriteria { get; set; }
Property Value
Type Description
ScheduledQueryRetentionCriteria?

Retention criteria for the scheduled query.

ScheduledQueryRetentionPeriodInMs

Declaration
[JsonProperty(PropertyName = "scheduledQueryRetentionPeriodInMs")]
public long? ScheduledQueryRetentionPeriodInMs { get; set; }
Property Value
Type Description
long?

Retention period for the scheduled query in milliseconds.

ScheduledQuerySchedule

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

Schedule for the scheduled query.

ScheduledQueryText

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

Scheduled query to be run.

SystemTags

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

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

In this article
Back to top