Show / Hide Table of Contents

Class AdhocQueryDetails

Detailed information about the adhoc query.

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

Properties

AdhocQueryResources

Declaration
[Required(ErrorMessage = "AdhocQueryResources is required.")]
[JsonProperty(PropertyName = "adhocQueryResources")]
public List<AdhocQueryResource> AdhocQueryResources { get; set; }
Property Value
Type Description
List<AdhocQueryResource>

Target information in which adhoc query will be run

Remarks

Required

Query

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

The adhoc query expression that is run

Remarks

Required

In this article
Back to top