Struct google_appengine1_beta5::UrlMap[][src]

pub struct UrlMap {
    pub security_level: Option<String>,
    pub auth_fail_action: Option<String>,
    pub url_regex: Option<String>,
    pub script: Option<ScriptHandler>,
    pub static_files: Option<StaticFilesHandler>,
    pub api_endpoint: Option<ApiEndpointHandler>,
    pub redirect_http_response_code: Option<String>,
    pub login: Option<String>,
}

URL pattern and description of how the URL should be handled. App Engine can handle URLs by executing application code, or by serving static files uploaded with the version, such as images, CSS, or JavaScript.

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

Fields

Security (HTTPS) enforcement for this URL.

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

A URL prefix. Uses regular expression syntax, which means regexp special characters must be escaped, but should not contain groupings. All URLs that begin with this prefix are handled by this handler, using the portion of the URL after the prefix as part of the file path.

Executes a script to handle the request that matches this URL pattern.

Returns the contents of a file, such as an image, as the response.

Uses API Endpoints to handle requests.

30x code to use when performing redirects for the secure field. Defaults to 302.

Level of login required to access this resource.

Trait Implementations

impl Default for UrlMap
[src]

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

impl Clone for UrlMap
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UrlMap
[src]

Formats the value using the given formatter. Read more

impl Part for UrlMap
[src]

Auto Trait Implementations

impl Send for UrlMap

impl Sync for UrlMap