1$schema: "http://json-schema.org/draft-06/schema#"
2
3title: compute alpha HttpFaultDelay export schema
4description: A gcloud export/import command YAML validation schema.
5type: object
6additionalProperties: false
7properties:
8  COMMENT:
9    type: object
10    description: User specified info ignored by gcloud import.
11    additionalProperties: false
12    properties:
13      template-id:
14        type: string
15      region:
16        type: string
17      description:
18        type: string
19      date:
20        type: string
21      version:
22        type: string
23  UNKNOWN:
24    type: array
25    description: Unknown API fields that cannot be imported.
26    items:
27      type: string
28  fixedDelay:
29    description: Specifies the value of the fixed delay interval.
30    $ref: Duration.yaml
31  percentage:
32    description: |-
33      The percentage of traffic (connections/operations/requests) on which delay
34      will be introduced as part of fault injection. The value must be between
35      0.0 and 100.0 inclusive.
36    type: number
37