Table of Contents

Class LogStreamUpdateRequest

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Information required to update a log stream

public class LogStreamUpdateRequest
Inheritance
LogStreamUpdateRequest
Inherited Members

Properties

Filters

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

[JsonProperty("filters", DefaultValueHandling = DefaultValueHandling.Ignore)]
public IList<LogStreamFilter> Filters { get; set; }

Property Value

IList<LogStreamFilter>

Name

The name of the log stream

[JsonProperty("name", DefaultValueHandling = DefaultValueHandling.Ignore)]
public string Name { get; set; }

Property Value

string

Sink

The new collection of properties describing the log stream sink

[JsonProperty("sink", DefaultValueHandling = DefaultValueHandling.Ignore)]
public dynamic Sink { get; set; }

Property Value

dynamic

Status

The new status of the log stream

[JsonProperty("status", DefaultValueHandling = DefaultValueHandling.Ignore)]
[JsonConverter(typeof(StringEnumConverter))]
public LogStreamUpdateStatus? Status { get; set; }

Property Value

LogStreamUpdateStatus?