@canonical/jujulib
Version:
Juju API client
29 lines (26 loc) • 748 B
TypeScript
/**
Juju Resumer version 2.
This facade is available on:
Controller-machine-agent
NOTE: This file was generated using the Juju schema
from Juju 3.0-beta1 at the git SHA 61c87ab7e1.
Do not manually edit this file.
*/
import { ConnectionInfo, Transport } from "../../client.js";
import { Facade } from "../../types.js";
/**
ResumerAPI implements the API used by the resumer worker.
*/
declare class ResumerV2 implements Facade {
static NAME: string;
static VERSION: number;
NAME: string;
VERSION: number;
_transport: Transport;
_info: ConnectionInfo;
constructor(transport: Transport, info: ConnectionInfo);
/**
*/
resumeTransactions(params: any): Promise<any>;
}
export default ResumerV2;