Oracle GoldenGate · Schema
CreateDeploymentDetails
CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication
Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | |
| description | string | |
| compartmentId | string | |
| subnetId | string | |
| licenseModel | string | |
| fqdn | string | |
| cpuCoreCount | integer | |
| isAutoScalingEnabled | boolean | |
| isPublic | boolean | |
| oggData | object | |
| freeformTags | object | |
| definedTags | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateDeploymentDetails",
"title": "CreateDeploymentDetails",
"type": "object",
"required": [
"displayName",
"compartmentId",
"subnetId",
"licenseModel",
"cpuCoreCount",
"isAutoScalingEnabled"
],
"properties": {
"displayName": {
"type": "string",
"example": "example_value"
},
"description": {
"type": "string",
"example": "A sample description."
},
"compartmentId": {
"type": "string",
"example": "500123"
},
"subnetId": {
"type": "string",
"example": "500123"
},
"licenseModel": {
"type": "string",
"enum": [
"LICENSE_INCLUDED",
"BRING_YOUR_OWN_LICENSE"
],
"example": "LICENSE_INCLUDED"
},
"fqdn": {
"type": "string",
"example": "example_value"
},
"cpuCoreCount": {
"type": "integer",
"example": 10
},
"isAutoScalingEnabled": {
"type": "boolean",
"example": true
},
"isPublic": {
"type": "boolean",
"example": true
},
"oggData": {
"type": "object",
"required": [
"deploymentName",
"adminUsername",
"adminPassword"
],
"properties": {
"deploymentName": {
"type": "string"
},
"adminUsername": {
"type": "string"
},
"adminPassword": {
"type": "string",
"format": "password"
}
},
"example": "example_value"
},
"freeformTags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"example": "example_value"
},
"definedTags": {
"type": "object",
"additionalProperties": {
"type": "object"
},
"example": "example_value"
}
}
}