Show / Hide Table of Contents

Class GdataDiffChecksumsResponse

Backend response for a Diff get checksums response. For details on the Scotty Diff protocol, visit http://go/scotty-diff-protocol.

Inheritance
object
GdataDiffChecksumsResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.DiscoveryEngine.v1alpha.Data
Assembly: Google.Apis.DiscoveryEngine.v1alpha.dll
Syntax
public class GdataDiffChecksumsResponse : IDirectResponseSchema

Properties

ChecksumsLocation

Exactly one of these fields must be populated. If checksums_location is filled, the server will return the corresponding contents to the user. If object_location is filled, the server will calculate the checksums based on the content there and return that to the user. For details on the format of the checksums, see http://go/scotty-diff-protocol.

Declaration
[JsonProperty("checksumsLocation")]
public virtual GdataCompositeMedia ChecksumsLocation { get; set; }
Property Value
Type Description
GdataCompositeMedia

ChunkSizeBytes

The chunk size of checksums. Must be a multiple of 256KB.

Declaration
[JsonProperty("chunkSizeBytes")]
public virtual long? ChunkSizeBytes { get; set; }
Property Value
Type Description
long?

ETag

The ETag of the item.

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

ObjectLocation

If set, calculate the checksums based on the contents and return them to the caller.

Declaration
[JsonProperty("objectLocation")]
public virtual GdataCompositeMedia ObjectLocation { get; set; }
Property Value
Type Description
GdataCompositeMedia

ObjectSizeBytes

The total size of the server object.

Declaration
[JsonProperty("objectSizeBytes")]
public virtual long? ObjectSizeBytes { get; set; }
Property Value
Type Description
long?

ObjectVersion

The object version of the object the checksums are being returned for.

Declaration
[JsonProperty("objectVersion")]
public virtual string ObjectVersion { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX