Show / Hide Table of Contents

Class ScheduledQueryDataSourceObjDetails

The information about new schedule Query of type DataSource.

Inheritance
object
DataSourceDetails
ScheduledQueryDataSourceObjDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudguardService.Models
Assembly: OCI.DotNetSDK.Cloudguard.dll
Syntax
public class ScheduledQueryDataSourceObjDetails : DataSourceDetails

Properties

Description

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

Description text for the query

IntervalInSeconds

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

Interval in minutes which query is run periodically.

Query

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

The continuous query expression that is run periodically.

ScheduledQueryScopeDetails

Declaration
[JsonProperty(PropertyName = "scheduledQueryScopeDetails")]
public List<ScheduledQueryScopeDetail> ScheduledQueryScopeDetails { get; set; }
Property Value
Type Description
List<ScheduledQueryScopeDetail>

Target information in which scheduled query will be run

In this article
Back to top