1$schema: "http://json-schema.org/draft-06/schema#"
2
3title: compute beta ShieldedInstanceConfig 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  enableIntegrityMonitoring:
29    description: |-
30      Defines whether the instance has integrity monitoring enabled. Enabled by
31      default.
32    type: boolean
33  enableSecureBoot:
34    description: |-
35      Defines whether the instance has Secure Boot enabled. Disabled by default.
36    type: boolean
37  enableVtpm:
38    description: |-
39      Defines whether the instance has the vTPM enabled. Enabled by default.
40    type: boolean
41