Show / Hide Table of Contents

Class Bucket.LoggingData

The bucket's logging configuration, which defines the destination bucket and optional name prefix for the current bucket's logs.

Inheritance
System.Object
Bucket.LoggingData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Storage.v1.Data
Assembly: Google.Apis.Storage.v1.dll
Syntax
public class LoggingData

Properties

LogBucket

The destination bucket where the current bucket's logs should be placed.

Declaration
[JsonProperty("logBucket")]
public virtual string LogBucket { get; set; }
Property Value
Type Description
System.String

LogObjectPrefix

A prefix for log object names.

Declaration
[JsonProperty("logObjectPrefix")]
public virtual string LogObjectPrefix { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top