44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: networkservices v1alpha1 GrpcRouteHeaderModifier 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
|
|
add:
|
|
description: |-
|
|
Add the headers with given map where key is the name of the header, value
|
|
is the value of the header.
|
|
$ref: AddValue.yaml
|
|
remove:
|
|
description: |-
|
|
Remove headers (matching by header names) specified in the list.
|
|
type: array
|
|
items:
|
|
type: string
|
|
set:
|
|
description: |-
|
|
Completely overwrite/replace the headers with given map where key is
|
|
the name of the header, value is the value of the header.
|
|
$ref: SetValue.yaml
|