Table of Contents

Class CreateLogStreamHttpRequestBody

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

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

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 required LogStreamHttpSink Sink { get; set; }

Property Value

LogStreamHttpSink

StartFrom

The optional datetime (ISO 8601) to start streaming logs from

[JsonPropertyName("startFrom")]
public string? StartFrom { get; set; }

Property Value

string

Type

[JsonPropertyName("type")]
public required LogStreamHttpEnum Type { get; set; }

Property Value

LogStreamHttpEnum

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.