63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: datastream v1 OracleProfile export schema
|
|
description: A gcloud export/import command YAML validation schema.
|
|
type: object
|
|
required:
|
|
- databaseService
|
|
- hostname
|
|
- username
|
|
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
|
|
connectionAttributes:
|
|
description: Connection string attributes
|
|
$ref: ConnectionAttributesValue.yaml
|
|
databaseService:
|
|
description: Database for the Oracle connection.
|
|
type: string
|
|
hostname:
|
|
description: Hostname for the Oracle connection.
|
|
type: string
|
|
oracleAsmConfig:
|
|
description: Configuration for Oracle ASM connection.
|
|
$ref: OracleAsmConfig.yaml
|
|
oracleSslConfig:
|
|
description: SSL configuration for the Oracle connection.
|
|
$ref: OracleSslConfig.yaml
|
|
password:
|
|
description: |-
|
|
Password for the Oracle connection. Mutually exclusive with the
|
|
`secret_manager_stored_password` field.
|
|
type: string
|
|
port:
|
|
description: Port for the Oracle connection, default value is 1521.
|
|
type: integer
|
|
secretManagerStoredPassword:
|
|
description: |-
|
|
A reference to a Secret Manager resource name storing the Oracle
|
|
connection password. Mutually exclusive with the `password` field.
|
|
type: string
|
|
username:
|
|
description: Username for the Oracle connection.
|
|
type: string
|