Show / Hide Table of Contents

Class GetBucketOptions

Options for GetBucket operations.

Inheritance
System.Object
GetBucketOptions
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.Storage.V1
Assembly: Google.Cloud.Storage.V1.dll
Syntax
public sealed class GetBucketOptions

Properties

IfMetagenerationMatch

Precondition for retrieval: the bucket is only fetched if its meta-generation matches the given value.

Declaration
public long? IfMetagenerationMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

IfMetagenerationNotMatch

Precondition for retrieval: the bucket is only fetched if its meta-generation does not match the given value.

Declaration
public long? IfMetagenerationNotMatch { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Projection

The projection to retrieve.

Declaration
public Projection? Projection { get; set; }
Property Value
Type Description
System.Nullable<Projection>

UserProject

If set, this is the ID of the project which will be billed for the request. The caller must have suitable permissions for the project being billed.

Declaration
public string UserProject { get; set; }
Property Value
Type Description
System.String
Back to top