Show / Hide Table of Contents

Class LocallyBuiltSource

The URI of an storage archive to use as the build source.

Inheritance
object
LocallyBuiltSource
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.FirebaseAppHosting.v1beta.Data
Assembly: Google.Apis.FirebaseAppHosting.v1beta.dll
Syntax
public class LocallyBuiltSource : IDirectResponseSchema

Properties

Description

Optional. An optional message that describes the uploaded version of the source code.

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

ETag

The ETag of the item.

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

Env

Optional. Supplied runtime environment variables for a specific build. Provided at Build creation time and immutable afterwards.

Declaration
[JsonProperty("env")]
public virtual IList<EnvironmentVariable> Env { get; set; }
Property Value
Type Description
IList<EnvironmentVariable>

RootDirectory

Optional. The directory relative to the root of the archive to use as the root for the deployed web app. Defaults to use the root of the repository if not provided. If deploying a monorepo, this should be the directory that contains the built source of the app.

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

RunCommand

Optional. The command to run to start the app. If provided, it will override apphosting's default run commands. See Override build and run scripts

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

RunConfig

Optional. Additional configuration of the Cloud Run service.

Declaration
[JsonProperty("runConfig")]
public virtual RunConfig RunConfig { get; set; }
Property Value
Type Description
RunConfig

UserStorageUri

URI to an archive in Cloud Storage. The object must be a gzipped archive file (.tar.gz) containing source to deploy.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX