Struct google_appengine1_beta5::Application [] [src]

pub struct Application {
    pub default_hostname: Option<String>,
    pub name: Option<String>,
    pub code_bucket: Option<String>,
    pub default_bucket: Option<String>,
    pub dispatch_rules: Option<Vec<UrlDispatchRule>>,
    pub default_cookie_expiration: Option<String>,
    pub id: Option<String>,
    pub location: Option<String>,
    pub auth_domain: Option<String>,
    pub iap: Option<IdentityAwareProxy>,
}

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

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

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

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

A 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

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

HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent.@OutputOnly

Cookie expiration policy for this application.

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.

Location from which this application will be run. Application instances will run out of data centers in the chosen location, which is also where all of the application's end user content is stored.Defaults to us-central.Options are:us-central - Central USeurope-west - Western Europeus-east1 - Eastern US

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

no description provided

Trait Implementations

impl Default for Application
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for Application
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Application
[src]

[src]

Formats the value using the given formatter.

impl RequestValue for Application
[src]

impl ResponseResult for Application
[src]