42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: compute alpha CallCredentials 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
|
|
callCredentialType:
|
|
description: |-
|
|
The type of call credentials to use for GRPC requests to the SDS server.
|
|
This field can be set to one of the following: -
|
|
type: string
|
|
enum:
|
|
- FROM_PLUGIN
|
|
- GCE_VM
|
|
- INVALID
|
|
fromPlugin:
|
|
description: |-
|
|
Custom authenticator credentials. Valid if callCredentialType is
|
|
FROM_PLUGIN.
|
|
$ref: MetadataCredentialsFromPlugin.yaml
|