Show / Hide Table of Contents

Class SearchLogsDetails

Search request object.

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

Properties

IsReturnFieldInfo

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

Whether to return field schema information for the log stream specified in searchQuery.

SearchQuery

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

Query corresponding to the search operation. This query is parsed and validated before execution and should follow the specification. For more information on the query language specification, see Logging Query Language Specification.

Remarks

Required

TimeEnd

Declaration
[Required(ErrorMessage = "TimeEnd is required.")]
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

End filter log's date and time, in the format defined by RFC3339.

Remarks

Required

TimeStart

Declaration
[Required(ErrorMessage = "TimeStart is required.")]
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

Start filter log's date and time, in the format defined by RFC3339.

Remarks

Required

In this article
Back to top