Class CreateLogStreamSegmentRequestBody
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record CreateLogStreamSegmentRequestBody : IJsonOnDeserialized, IEquatable<CreateLogStreamSegmentRequestBody>
- Inheritance
-
CreateLogStreamSegmentRequestBody
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
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
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
PiiConfig
[JsonPropertyName("pii_config")]
public LogStreamPiiConfig? PiiConfig { get; set; }
Property Value
Sink
[JsonPropertyName("sink")]
public required LogStreamSegmentSinkWriteKey Sink { get; set; }
Property Value
StartFrom
The optional datetime (ISO 8601) to start streaming logs from
[JsonPropertyName("startFrom")]
public string? StartFrom { get; set; }
Property Value
Type
[JsonPropertyName("type")]
public required LogStreamSegmentEnum Type { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.