Show / Hide Table of Contents

Class Application

An Application resource contains the top-level configuration of an App Engine application.

Inheritance
System.Object
Application
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 Application : IDirectResponseSchema

Properties

AuthDomain

Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.

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

CodeBucket

Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.@OutputOnly

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

DatabaseType

The type of the Cloud Firestore or Cloud Datastore database associated with this application.

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

DefaultBucket

Google Cloud Storage bucket that can be used by this application to store content.@OutputOnly

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

DefaultCookieExpiration

Cookie expiration policy for this application.

Declaration
[JsonProperty("defaultCookieExpiration")]
public virtual object DefaultCookieExpiration { get; set; }
Property Value
Type Description
System.Object

DefaultHostname

Hostname used to reach this application, as resolved by App Engine.@OutputOnly

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

DispatchRules

HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.

Declaration
[JsonProperty("dispatchRules")]
public virtual IList<UrlDispatchRule> DispatchRules { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<UrlDispatchRule>

ETag

The ETag of the item.

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

FeatureSettings

The feature specific settings to be used in the application.

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

GcrDomain

The Google Container Registry domain used for storing managed build docker images for this application.

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

Iap

Declaration
[JsonProperty("iap")]
public virtual IdentityAwareProxy Iap { get; set; }
Property Value
Type Description
IdentityAwareProxy

Id

Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.

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

LocationId

Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).

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

Name

Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly

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

ServiceAccount

The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.

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

ServingStatus

Serving status of this application.

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

Implements

IDirectResponseSchema
In This Article
Back to top