Show / Hide Table of Contents

Class StandardAppVersionHandlerArgs

Inheritance
System.Object
InputArgs
ResourceArgs
StandardAppVersionHandlerArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.AppEngine.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class StandardAppVersionHandlerArgs : ResourceArgs

Constructors

View Source

StandardAppVersionHandlerArgs()

Declaration
public StandardAppVersionHandlerArgs()

Properties

View Source

AuthFailAction

Actions to take when the user is not logged in.

Declaration
public Input<string> AuthFailAction { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Login

Methods to restrict access to a URL based on login status.

Declaration
public Input<string> Login { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RedirectHttpResponseCode

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

Declaration
public Input<string> RedirectHttpResponseCode { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Script

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". Structure is documented below.

Declaration
public Input<StandardAppVersionHandlerScriptArgs> Script { get; set; }
Property Value
Type Description
Input<StandardAppVersionHandlerScriptArgs>
View Source

SecurityLevel

Security (HTTPS) enforcement for this URL.

Declaration
public Input<string> SecurityLevel { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StaticFiles

Files served directly to the user for a given URL, such as images, CSS stylesheets, or JavaScript source files. Static file handlers describe which files in the application directory are static files, and which URLs serve them. Structure is documented below.

Declaration
public Input<StandardAppVersionHandlerStaticFilesArgs> StaticFiles { get; set; }
Property Value
Type Description
Input<StandardAppVersionHandlerStaticFilesArgs>
View Source

UrlRegex

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.

Declaration
public Input<string> UrlRegex { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.