Show / Hide Table of Contents

Class DeleteCommandDescriptor

Command descriptor for querylanguage DELETE command.

Inheritance
object
AbstractCommandDescriptor
DeleteCommandDescriptor
Inherited Members
AbstractCommandDescriptor.DisplayQueryString
AbstractCommandDescriptor.InternalQueryString
AbstractCommandDescriptor.Category
AbstractCommandDescriptor.ReferencedFields
AbstractCommandDescriptor.DeclaredFields
AbstractCommandDescriptor.IsHidden
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class DeleteCommandDescriptor : AbstractCommandDescriptor

Properties

IsDryRun

Declaration
[JsonProperty(PropertyName = "isDryRun")]
public bool? IsDryRun { get; set; }
Property Value
Type Description
bool?

Value specified in DELETE command in queryString as to whether the delete is a dry-run (only report number of rows removed) rather than actually remove matching log records.

In this article
Back to top