Show / Hide Table of Contents

Class FileInfo

Single source file that is part of the version to be deployed. Each source file that is deployed must be specified separately.

Inheritance
System.Object
FileInfo
Implements
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.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class FileInfo : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MimeType

The MIME type of the file.Defaults to the value from Google Cloud Storage.

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

Sha1Sum

The SHA1 hash of the file, in hex.

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

SourceUrl

URL source to use to fetch this file. Must be a URL to a resource in Google Cloud Storage in the form 'http(s)://storage.googleapis.com//'.

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

Implements

IDirectResponseSchema
In This Article
Back to top