Worker Script Migrations Args
data class WorkerScriptMigrationsArgs(val deletedClasses: Output<List<String>>? = null, val newClasses: Output<List<String>>? = null, val newSqliteClasses: Output<List<String>>? = null, val newTag: Output<String>? = null, val oldTag: Output<String>? = null, val renamedClasses: Output<List<WorkerScriptMigrationsRenamedClassArgs>>? = null, val steps: Output<List<WorkerScriptMigrationsStepArgs>>? = null, val transferredClasses: Output<List<WorkerScriptMigrationsTransferredClassArgs>>? = null) : ConvertibleToJava<WorkerScriptMigrationsArgs>
Constructors
Link copied to clipboard
constructor(deletedClasses: Output<List<String>>? = null, newClasses: Output<List<String>>? = null, newSqliteClasses: Output<List<String>>? = null, newTag: Output<String>? = null, oldTag: Output<String>? = null, renamedClasses: Output<List<WorkerScriptMigrationsRenamedClassArgs>>? = null, steps: Output<List<WorkerScriptMigrationsStepArgs>>? = null, transferredClasses: Output<List<WorkerScriptMigrationsTransferredClassArgs>>? = null)
Properties
Link copied to clipboard
A list of classes to delete Durable Object namespaces from.
Link copied to clipboard
A list of classes to create Durable Object namespaces from.
Link copied to clipboard
A list of classes to create Durable Object namespaces with SQLite from.
Link copied to clipboard
A list of classes with Durable Object namespaces that were renamed.
Link copied to clipboard
Migrations to apply in order.
Link copied to clipboard
A list of transfers for Durable Object namespaces from a different Worker and class to a class defined in this Worker.