Google Cloud Functions V2 Client - Class SecurityLevel (1.6.3)

Reference documentation and code samples for the Google Cloud Functions V2 Client class SecurityLevel.

Available security level settings.

This enforces security protocol on function URL. Security level is only configurable for 1st Gen functions, If unspecified, SECURE_OPTIONAL will be used. 2nd Gen functions are SECURE_ALWAYS ONLY.

Protobuf type google.cloud.functions.v2.ServiceConfig.SecurityLevel

Namespace

Google \ Cloud \ Functions \ V2 \ ServiceConfig

Methods

static::name

Parameter
Name Description
value mixed

static::value

Parameter
Name Description
name mixed

Constants

SECURITY_LEVEL_UNSPECIFIED

Value: 0

Unspecified.

Generated from protobuf enum SECURITY_LEVEL_UNSPECIFIED = 0;

SECURE_ALWAYS

Value: 1

Requests for a URL that match this handler that do not use HTTPS are automatically redirected to the HTTPS URL with the same path. Query parameters are reserved for the redirect.

Generated from protobuf enum SECURE_ALWAYS = 1;

SECURE_OPTIONAL

Value: 2

Both HTTP and HTTPS requests with URLs that match the handler succeed without redirects. The application can examine the request to determine which protocol was used and respond accordingly.

Generated from protobuf enum SECURE_OPTIONAL = 2;