Migration
Migration Service handles one-off connector and template migrations.
Triggers an async one-off update that adds provider_connectors to template YAMLs for templates in use.
Body
dry_runbooleanRequiredExample:
If true, simulate the migration without updating templates.
falseResponses
202
Accepted response.
application/json
messagestringRequiredExample:
Confirmation message
Migration job started successfully500
internal_error: Internal server error
application/vnd.goa.error
post/api/migrate/template-connectors
POST /api/migrate/template-connectors HTTP/1.1
Host: localhost:80
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"dry_run": false
}{
"message": "Migration job started successfully"
}Triggers an async one-off migration that moves connector data from workspaces into the provider_connectors table.
Body
dry_runbooleanRequiredExample:
If true, simulate the migration without modifying data.
falseResponses
202
Accepted response.
application/json
messagestringRequiredExample:
Confirmation message
Migration job started successfully500
internal_error: Internal server error
application/vnd.goa.error
post/api/migrate/workspace-connectors
POST /api/migrate/workspace-connectors HTTP/1.1
Host: localhost:80
Content-Type: application/json
Accept: */*
Content-Length: 17
{
"dry_run": false
}{
"message": "Migration job started successfully"
}Last updated
Was this helpful?