REST Resource: projects.locations.authzExtensions

Resource: AuthzExtension

AuthzExtension is a resource that allows traffic forwarding to a callout backend service to make an authorization decision.

JSON representation
{
  "name": string,
  "createTime": string,
  "updateTime": string,
  "description": string,
  "labels": {
    string: string,
    ...
  },
  "loadBalancingScheme": enum (LoadBalancingScheme),
  "authority": string,
  "service": string,
  "timeout": string,
  "failOpen": boolean,
  "metadata": {
    object
  },
  "forwardHeaders": [
    string
  ],
  "wireFormat": enum (WireFormat)
}
Fields
name

string

Required. Identifier. Name of the AuthzExtension resource in the following format: projects/{project}/locations/{location}/authzExtensions/{authzExtension}.

createTime

string (Timestamp format)

Output only. The timestamp when the resource was created.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

updateTime

string (Timestamp format)

Output only. The timestamp when the resource was updated.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

description

string

Optional. A human-readable description of the resource.

labels

map (key: string, value: string)

Optional. Set of labels associated with the AuthzExtension resource.

The format must comply with the requirements for labels for Google Cloud resources.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

loadBalancingScheme

enum (LoadBalancingScheme)

Required. All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. Supported values: INTERNAL_MANAGED, EXTERNAL_MANAGED. For more information, refer to Backend services overview.

authority

string

Required. The :authority header in the gRPC request sent from Envoy to the extension service.

service

string

Required. The reference to the service that runs the extension.

To configure a callout extension, service must be a fully-qualified reference to a backend service in the format: https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/backendServices/{backendService} or https://www.googleapis.com/compute/v1/projects/{project}/global/backendServices/{backendService}.

timeout

string (Duration format)

Required. Specifies the timeout for each individual message on the stream. The timeout must be between 10-10000 milliseconds.

A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".

failOpen

boolean

Optional. Determines how the proxy behaves if the call to the extension fails or times out.

When set to TRUE, request or response processing continues without error. Any subsequent extensions in the extension chain are also executed. When set to FALSE or the default setting of FALSE is used, one of the following happens:

  • If response headers have not been delivered to the downstream client, a generic 500 error is returned to the client. The error response can be tailored by configuring a custom error response in the load balancer.

  • If response headers have been delivered, then the HTTP stream to the downstream client is reset.

metadata

object (Struct format)

Optional. The metadata provided here is included as part of the metadata_context (of type google.protobuf.Struct) in the ProcessingRequest message sent to the extension server. The metadata is available under the namespace com.google.authz_extension.<resourceName>. The following variables are supported in the metadata Struct:

{forwarding_rule_id} - substituted with the forwarding rule's fully qualified resource name.

forwardHeaders[]

string

Optional. List of the HTTP headers to forward to the extension (from the client). If omitted, all headers are sent. Each element is a string indicating the header name.

wireFormat

enum (WireFormat)

Optional. The format of communication supported by the callout extension. If not specified, the default is EXT_PROC_GRPC.

WireFormat

The format of communication supported by the extension.

Enums
WIRE_FORMAT_UNSPECIFIED Not specified.
EXT_PROC_GRPC The extension service uses ExtProc GRPC API.

Methods

create

Creates a new AuthzExtension resource in a given project and location.

delete

Deletes the specified AuthzExtension resource.

get

Gets details of the specified AuthzExtension resource.

list

Lists AuthzExtension resources in a given project and location.

patch

Updates the parameters of the specified AuthzExtension resource.