@canonical/jujulib
Version:
Juju API client
61 lines (58 loc) • 1.75 kB
TypeScript
/**
Juju MigrationMinion version 1.
This facade is available on:
Controller-machine-agent
Machine-agent
Unit-agent
Models
NOTE: This file was generated using the Juju schema
from Juju 3.3 at the git SHA 65fa4c1ee5.
Do not manually edit this file.
*/
import { ConnectionInfo, Transport } from "../../client.js";
import { Facade } from "../../types.js";
export interface Error {
code: string;
info?: AdditionalProperties;
message: string;
}
export interface MinionReport {
"migration-id": string;
phase: string;
success: boolean;
}
export interface NotifyWatchResult {
NotifyWatcherId: string;
error?: Error;
}
export interface AdditionalProperties {
[key: string]: any;
}
/**
API implements the API required for the model migration
master worker.
*/
declare class MigrationMinionV1 implements Facade {
static NAME: string;
static VERSION: number;
NAME: string;
VERSION: number;
_transport: Transport;
_info: ConnectionInfo;
constructor(transport: Transport, info: ConnectionInfo);
/**
Report allows a migration minion to submit whether it succeeded or
failed for a specific migration phase.
*/
report(params: MinionReport): Promise<any>;
/**
Watch starts watching for status updates for a migration attempt
for the model. It will report when a migration starts and when its
status changes (including when it finishes). An initial event will
be fired if there has ever been a migration attempt for the model.
The MigrationStatusWatcher facade must be used to receive events
from the watcher.
*/
watch(params: any): Promise<NotifyWatchResult>;
}
export default MigrationMinionV1;