Class Application
An Application resource contains the top-level configuration of an App Engine application.
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
CodeBucket
Output only. 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
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
DefaultBucket
Output only. 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
DefaultCookieExpiration
Cookie expiration policy for this application.
Declaration
[JsonProperty("defaultCookieExpiration")]
public virtual object DefaultCookieExpiration { get; set; }
Property Value
DefaultHostname
Output only. Hostname used to reach this application, as resolved by App Engine.@OutputOnly
Declaration
[JsonProperty("defaultHostname")]
public virtual string DefaultHostname { get; set; }
Property Value
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
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
FeatureSettings
The feature specific settings to be used in the application.
Declaration
[JsonProperty("featureSettings")]
public virtual FeatureSettings FeatureSettings { get; set; }
Property Value
GcrDomain
Output only. 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
Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested
by setting the IncludeExtraData field in GetApplicationRequest
Declaration
[JsonProperty("generatedCustomerMetadata")]
public virtual IDictionary<string, object> GeneratedCustomerMetadata { get; set; }
Property Value
Iap
Declaration
[JsonProperty("iap")]
public virtual IdentityAwareProxy Iap { get; set; }
Property Value
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
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
Name
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
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
ServingStatus
Serving status of this application.
Declaration
[JsonProperty("servingStatus")]
public virtual string ServingStatus { get; set; }
Property Value
SslPolicy
The SSL policy that will be applied to the application. If set to Modern it will restrict traffic with TLS
< 1.2 and allow only Modern Ciphers suite
Declaration
[JsonProperty("sslPolicy")]
public virtual string SslPolicy { get; set; }
Property Value
Implements