45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: datastream v1 MysqlSslConfig 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
|
|
caCertificate:
|
|
description: |-
|
|
Input only. PEM-encoded certificate of the CA that signed the source
|
|
database server's certificate.
|
|
type: string
|
|
clientCertificate:
|
|
description: |-
|
|
Input only. PEM-encoded certificate that will be used by the replica to
|
|
authenticate against the source database server. If this field is used
|
|
then the 'client_key' and the 'ca_certificate' fields are mandatory.
|
|
type: string
|
|
clientKey:
|
|
description: |-
|
|
Input only. PEM-encoded private key associated with the Client
|
|
Certificate. If this field is used then the 'client_certificate' and the
|
|
'ca_certificate' fields are mandatory.
|
|
type: string
|