Show / Hide Table of Contents

Class JobLogConfigurationDetails

Logging configuration for resource.

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

Properties

EnableAutoLogCreation

Declaration
[JsonProperty(PropertyName = "enableAutoLogCreation")]
public bool? EnableAutoLogCreation { get; set; }
Property Value
Type Description
bool?

If automatic on-behalf-of log object creation is enabled for job runs.

EnableLogging

Declaration
[JsonProperty(PropertyName = "enableLogging")]
public bool? EnableLogging { get; set; }
Property Value
Type Description
bool?

If customer logging is enabled for job runs.

LogGroupId

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

The log group id for where log objects are for job runs.

LogId

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

The log id the job run will push logs too.

In this article
Back to top