Batch v1 API - Class LogsPolicy (2.13.0)

public sealed class LogsPolicy : IMessage<LogsPolicy>, IEquatable<LogsPolicy>, IDeepCloneable<LogsPolicy>, IBufferMessage, IMessage

Reference documentation and code samples for the Batch v1 API class LogsPolicy.

LogsPolicy describes if and how a job's logs are preserved. Logs include information that is automatically written by the Batch service agent and any information that you configured the job's runnables to write to the stdout or stderr streams.

Inheritance

object > LogsPolicy

Namespace

Google.Cloud.Batch.V1

Assembly

Google.Cloud.Batch.V1.dll

Constructors

LogsPolicy()

public LogsPolicy()

LogsPolicy(LogsPolicy)

public LogsPolicy(LogsPolicy other)
Parameter
Name Description
other LogsPolicy

Properties

CloudLoggingOption

public LogsPolicy.Types.CloudLoggingOption CloudLoggingOption { get; set; }

Optional. When destination is set to CLOUD_LOGGING, you can optionally set this field to configure additional settings for Cloud Logging.

Property Value
Type Description
LogsPolicyTypesCloudLoggingOption

Destination

public LogsPolicy.Types.Destination Destination { get; set; }

If and where logs should be saved.

Property Value
Type Description
LogsPolicyTypesDestination

LogsPath

public string LogsPath { get; set; }

When destination is set to PATH, you must set this field to the path where you want logs to be saved. This path can point to a local directory on the VM or (if congifured) a directory under the mount path of any Cloud Storage bucket, network file system (NFS), or writable persistent disk that is mounted to the job. For example, if the job has a bucket with mountPath set to /mnt/disks/my-bucket, you can write logs to the root directory of the remotePath of that bucket by setting this field to /mnt/disks/my-bucket/.

Property Value
Type Description
string