Show / Hide Table of Contents

Class ComposeRequest.SourceObjectsData

The list of source objects that will be concatenated into a single object.

Inheritance
System.Object
ComposeRequest.SourceObjectsData
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 SourceObjectsData

Properties

Generation

The generation of this object to use as the source.

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

Name

The source object's name. All source objects must reside in the same bucket.

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

ObjectPreconditions

Conditions that must be met for this operation to execute.

Declaration
[JsonProperty("objectPreconditions")]
public virtual ComposeRequest.SourceObjectsData.ObjectPreconditionsData ObjectPreconditions { get; set; }
Property Value
Type Description
ComposeRequest.SourceObjectsData.ObjectPreconditionsData
In This Article
Back to top