Show / Hide Table of Contents

Class TailLogEntriesResponse

Result returned from TailLogEntries.

Inheritance
object
TailLogEntriesResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Logging.v2.Data
Assembly: Google.Apis.Logging.v2.dll
Syntax
public class TailLogEntriesResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Entries

A list of log entries. Each response in the stream will order entries with increasing values of LogEntry.timestamp. Ordering is not guaranteed between separate responses.

Declaration
[JsonProperty("entries")]
public virtual IList<LogEntry> Entries { get; set; }
Property Value
Type Description
IList<LogEntry>

SuppressionInfo

If entries that otherwise would have been included in the session were not sent back to the client, counts of relevant entries omitted from the session with the reason that they were not included. There will be at most one of each reason per response. The counts represent the number of suppressed entries since the last streamed response.

Declaration
[JsonProperty("suppressionInfo")]
public virtual IList<SuppressionInfo> SuppressionInfo { get; set; }
Property Value
Type Description
IList<SuppressionInfo>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX