Struct google_appengine1::ApiConfigHandler[][src]

pub struct ApiConfigHandler {
    pub url: Option<String>,
    pub security_level: Option<String>,
    pub auth_fail_action: Option<String>,
    pub login: Option<String>,
    pub script: Option<String>,
}

Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/) configuration for API handlers.

This type is not used in any activity, and only used as part of another schema.

Fields

URL to serve the endpoint at.

Security (HTTPS) enforcement for this URL.

Action to take when users access resources that require authentication. Defaults to redirect.

Level of login required to access this resource. Defaults to optional.

Path to the script from the application root directory.

Trait Implementations

impl Default for ApiConfigHandler
[src]

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

impl Clone for ApiConfigHandler
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ApiConfigHandler
[src]

Formats the value using the given formatter. Read more

impl Part for ApiConfigHandler
[src]

Auto Trait Implementations