Show / Hide Table of Contents

Class ApplicationLogConfig

Logging details of Application logs for Data Flow Run.

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

Properties

LogGroupId

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

The log group id for where log objects will be for Data Flow Runs.

Remarks

Required

LogId

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

The log id of the log object the Application Logs of Data Flow Run will be shipped to.

Remarks

Required

In this article
Back to top