Show / Hide Table of Contents

Class PutLogsDetails

The request body for the PutLogs request.

Inheritance
object
PutLogsDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoggingingestionService.Models
Assembly: OCI.DotNetSDK.Loggingingestion.dll
Syntax
public class PutLogsDetails

Properties

LogEntryBatches

Declaration
[Required(ErrorMessage = "LogEntryBatches is required.")]
[JsonProperty(PropertyName = "logEntryBatches")]
public List<LogEntryBatch> LogEntryBatches { get; set; }
Property Value
Type Description
List<LogEntryBatch>

List of log-batches. Each batch has a single source, type and subject.

Remarks

Required

Specversion

Declaration
[Required(ErrorMessage = "Specversion is required.")]
[JsonProperty(PropertyName = "specversion")]
public string Specversion { get; set; }
Property Value
Type Description
string

Required for identifying the version of the data format being used. Permitted values include: "1.0"

Remarks

Required

In this article
Back to top