pub struct Application {
Show 16 fields pub auth_domain: Option<String>, pub code_bucket: Option<String>, pub database_type: Option<String>, pub default_bucket: Option<String>, pub default_cookie_expiration: Option<Duration>, pub default_hostname: Option<String>, pub dispatch_rules: Option<Vec<UrlDispatchRule>>, pub feature_settings: Option<FeatureSettings>, pub gcr_domain: Option<String>, pub generated_customer_metadata: Option<HashMap<String, Value>>, pub iap: Option<IdentityAwareProxy>, pub id: Option<String>, pub location_id: Option<String>, pub name: Option<String>, pub service_account: Option<String>, pub serving_status: Option<String>,
}
Expand description

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§

§auth_domain: Option<String>

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

§code_bucket: Option<String>

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

§database_type: Option<String>

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

§default_bucket: Option<String>

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

§default_cookie_expiration: Option<Duration>

Cookie expiration policy for this application.

§default_hostname: Option<String>

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

§dispatch_rules: Option<Vec<UrlDispatchRule>>

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.

§feature_settings: Option<FeatureSettings>

The feature specific settings to be used in the application.

§gcr_domain: Option<String>

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

§generated_customer_metadata: Option<HashMap<String, 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

§iap: Option<IdentityAwareProxy>

no description provided

§id: Option<String>

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_id: Option<String>

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).

§name: Option<String>

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

§service_account: Option<String>

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.

§serving_status: Option<String>

Serving status of this application.

Trait Implementations§

source§

impl Clone for Application

source§

fn clone(&self) -> Application

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Application

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Application

source§

fn default() -> Application

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Application

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for Application

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl RequestValue for Application

source§

impl ResponseResult for Application

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,