Show / Hide Table of Contents

Class CreateScheduledQueryDetails

Object that contains the details about the scheduled query to be created.

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

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

ScheduledQueryDescription

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

Description for the scheduled query.

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.

ScheduledQueryProcessingConfiguration

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

ScheduledQueryProcessingSubType

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

Processing sub type of the scheduled query.

ScheduledQueryProcessingType

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

Type of the scheduled query.

ScheduledQueryRetentionCriteria

Declaration
[JsonProperty(PropertyName = "scheduledQueryRetentionCriteria")]
[JsonConverter(typeof(StringEnumConverter))]
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.

In this article
Back to top