google_api_app_engine v0.8.0 GoogleApi.AppEngine.V1.Model.UrlMap View Source
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.
Attributes
- apiEndpoint (GoogleApi.AppEngine.V1.Model.ApiEndpointHandler.t): Uses API Endpoints to handle requests. Defaults to
nil
. - authFailAction (String.t): Action to take when users access resources that require authentication. Defaults to redirect. Defaults to
nil
. - login (String.t): Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment. Defaults to
nil
. - redirectHttpResponseCode (String.t): 30x code to use when performing redirects for the secure field. Defaults to 302. Defaults to
nil
. - script (GoogleApi.AppEngine.V1.Model.ScriptHandler.t): Executes a script to handle the requests that match this URL pattern. Only the auto value is supported for Node.js in the App Engine standard environment, for example "script": "auto". Defaults to
nil
. - securityLevel (String.t): Security (HTTPS) enforcement for this URL. Defaults to
nil
. - staticFiles (GoogleApi.AppEngine.V1.Model.StaticFilesHandler.t): Returns the contents of a file, such as an image, as the response. Defaults to
nil
. - urlRegex (String.t): 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. Defaults to
nil
.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %GoogleApi.AppEngine.V1.Model.UrlMap{
apiEndpoint: GoogleApi.AppEngine.V1.Model.ApiEndpointHandler.t(),
authFailAction: String.t(),
login: String.t(),
redirectHttpResponseCode: String.t(),
script: GoogleApi.AppEngine.V1.Model.ScriptHandler.t(),
securityLevel: String.t(),
staticFiles: GoogleApi.AppEngine.V1.Model.StaticFilesHandler.t(),
urlRegex: String.t()
}
t() :: %GoogleApi.AppEngine.V1.Model.UrlMap{ apiEndpoint: GoogleApi.AppEngine.V1.Model.ApiEndpointHandler.t(), authFailAction: String.t(), login: String.t(), redirectHttpResponseCode: String.t(), script: GoogleApi.AppEngine.V1.Model.ScriptHandler.t(), securityLevel: String.t(), staticFiles: GoogleApi.AppEngine.V1.Model.StaticFilesHandler.t(), urlRegex: String.t() }
Link to this section Functions
Link to this function
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.