50 lines
1.6 KiB
YAML
50 lines
1.6 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: networkservices v1 HttpRouteQueryParameterMatch export schema
|
|
description: A gcloud export/import command YAML validation schema.
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
COMMENT:
|
|
type: object
|
|
description: User specified info ignored by gcloud import.
|
|
additionalProperties: false
|
|
properties:
|
|
template-id:
|
|
type: string
|
|
region:
|
|
type: string
|
|
description:
|
|
type: string
|
|
date:
|
|
type: string
|
|
version:
|
|
type: string
|
|
UNKNOWN:
|
|
type: array
|
|
description: Unknown API fields that cannot be imported.
|
|
items:
|
|
type: string
|
|
exactMatch:
|
|
description: |-
|
|
The value of the query parameter must exactly match the contents of
|
|
exact_match. Only one of exact_match, regex_match, or present_match must
|
|
be set.
|
|
type: string
|
|
presentMatch:
|
|
description: |-
|
|
Specifies that the QueryParameterMatcher matches if request contains query
|
|
parameter, irrespective of whether the parameter has a value or not. Only
|
|
one of exact_match, regex_match, or present_match must be set.
|
|
type: boolean
|
|
queryParameter:
|
|
description: The name of the query parameter to match.
|
|
type: string
|
|
regexMatch:
|
|
description: |-
|
|
The value of the query parameter must match the regular expression
|
|
specified by regex_match. For regular expression grammar, please see
|
|
https://github.com/google/re2/wiki/Syntax Only one of exact_match,
|
|
regex_match, or present_match must be set.
|
|
type: string
|