Show / Hide Table of Contents

Class ApiConfigHandler

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

Inheritance
System.Object
ApiConfigHandler
Implements
IDirectResponseSchema
Inherited Members
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: Google.Apis.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class ApiConfigHandler : IDirectResponseSchema

Properties

AuthFailAction

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

Declaration
[JsonProperty("authFailAction")]
public virtual string AuthFailAction { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Login

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

Declaration
[JsonProperty("login")]
public virtual string Login { get; set; }
Property Value
Type Description
System.String

Script

Path to the script from the application root directory.

Declaration
[JsonProperty("script")]
public virtual string Script { get; set; }
Property Value
Type Description
System.String

SecurityLevel

Security (HTTPS) enforcement for this URL.

Declaration
[JsonProperty("securityLevel")]
public virtual string SecurityLevel { get; set; }
Property Value
Type Description
System.String

Url

URL to serve the endpoint at.

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top