Method: urlMaps.validate

Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be run. Calling this method does NOT create the UrlMap.

HTTP request

POST https://compute.s3nsapis.fr/compute/v1/projects/{project}/global/urlMaps/{urlMap}/validate

The URL uses gRPC Transcoding syntax. To know more about valid error responses that can be thrown by this HTTP request, please refer to the service error catalog

Path parameters

Parameters
project

string

Project ID for this request.

urlMap

string

Name of the UrlMap resource to be validated as.

Request body

The request body contains data with the following structure:

JSON representation
{
  "resource": {
    object (UrlMap)
  },
  "loadBalancingSchemes": [
    enum (LoadBalancingScheme)
  ]
}
Fields
resource

object (UrlMap)

Content of the UrlMap to be validated.

loadBalancingSchemes[]

enum (LoadBalancingScheme)

Specifies the load balancer type(s) this validation request is for. Use

EXTERNAL_MANAGED

for global external Application Load Balancers and regional external Application Load Balancers. Use

EXTERNAL

for classic Application Load Balancers.

Use INTERNAL_MANAGED for internal Application Load Balancers. For more information, refer to Choosing a load balancer.

If unspecified, the load balancing scheme will be inferred from the backend service resources this URL map references. If that can not be inferred (for example, this URL map only references backend buckets, or this Url map is for rewrites and redirects only and doesn't reference any backends),

EXTERNAL

will be used as the default type.

If specified, the scheme(s) must not conflict with the load balancing scheme of the backend service resources this Url map references.

Response body

If successful, the response body contains an instance of UrlMapsValidateResponse.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/compute
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

In addition to any permissions specified on the fields above, authorization requires one or more of the following IAM permissions:

  • compute.urlMaps.validate

To find predefined roles that contain those permissions, see Compute Engine IAM Roles.

LoadBalancingScheme

Enums
LOAD_BALANCING_SCHEME_UNSPECIFIED

If unspecified, the validation will try to infer the scheme from the backend service resources this Url map references. If the inference is not possible,

EXTERNAL

will be used as the default type.

EXTERNAL Signifies that this will be used for classic Application Load Balancers.
EXTERNAL_MANAGED Signifies that this will be used for Envoy-based global external Application Load Balancers.