Show / Hide Table of Contents

Class StorageSourceManifest

Location of the source manifest in Google Cloud Storage. This feature is in Preview.

Inheritance
System.Object
StorageSourceManifest
Implements
Google.Apis.Requests.IDirectResponseSchema
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.CloudBuild.v1.Data
Assembly: Google.Apis.CloudBuild.v1.dll
Syntax
public class StorageSourceManifest : IDirectResponseSchema

Properties

Bucket

Google Cloud Storage bucket containing the source manifest (see Bucket Name Requirements).

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Generation

Google Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.

Declaration
[JsonProperty("generation")]
public virtual long? Generation { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Object__

Google Cloud Storage object containing the source manifest. This object must be a JSON file.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top