Table of Contents

Class UpdateLogStreamRequestContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record UpdateLogStreamRequestContent : IEquatable<UpdateLogStreamRequestContent>
Inheritance
UpdateLogStreamRequestContent
Implements
Inherited Members
Extension Methods

Properties

Filters

Only logs events matching these filters will be delivered by the stream. If omitted or empty, all events will be delivered.

[JsonPropertyName("filters")]
public IEnumerable<LogStreamFilter>? Filters { get; set; }

Property Value

IEnumerable<LogStreamFilter>

IsPriority

True for priority log streams, false for non-priority

[JsonPropertyName("isPriority")]
public bool? IsPriority { get; set; }

Property Value

bool?

Name

log stream name

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

PiiConfig

[JsonPropertyName("pii_config")]
public LogStreamPiiConfig? PiiConfig { get; set; }

Property Value

LogStreamPiiConfig

Sink

[JsonPropertyName("sink")]
public LogStreamSinkPatch? Sink { get; set; }

Property Value

LogStreamSinkPatch

Status

[JsonPropertyName("status")]
public LogStreamStatusEnum? Status { get; set; }

Property Value

LogStreamStatusEnum?

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.