Keboola · Schema

MigrateConfigurationSucceeded

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
message string
data object
warnings object
View JSON Schema on GitHub

JSON Schema

keboola-migrateconfigurationsucceeded.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MigrateConfigurationSucceeded",
  "type": "object",
  "items": {
    "type": "string"
  },
  "properties": {
    "message": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "properties": {
        "destinationStack": {
          "type": "string"
        },
        "componentId": {
          "type": "string"
        },
        "configId": {
          "type": "string"
        },
        "branchId": {
          "type": "string"
        }
      }
    },
    "warnings": {
      "items": {
        "type": "string"
      }
    }
  },
  "example": {
    "message": "Configuration with ID \"123\" successfully migrated to stack \"us-east4.gcp.keboola.com\".",
    "data": {
      "destinationStack": "us-east4.gcp.keboola.com",
      "componentId": "keboola.ex-gcalendar",
      "configId": "123",
      "branchId": "1"
    },
    "warnings": [
      "Cannot migrate OAuth credentials of component \"keboola.ex-gcalendar\"."
    ]
  }
}