@canonical/jujulib
Version:
Juju API client
75 lines (74 loc) • 2.27 kB
JavaScript
/**
Juju UnitAssigner 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 { autoBind } from "../../utils.js";
/**
API implements the functionality for assigning units to machines.
*/
class UnitAssignerV1 {
constructor(transport, info) {
this.NAME = "UnitAssigner";
this.VERSION = 1;
this._transport = transport;
this._info = info;
// Automatically bind all methods to instances.
autoBind(this);
}
/**
AssignUnits assigns the units with the given ids to the correct machine. The
error results are returned in the same order as the given entities.
*/
assignUnits(params) {
return new Promise((resolve, reject) => {
const req = {
type: "UnitAssigner",
request: "AssignUnits",
version: 1,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
SetAgentStatus will set status for agents of Units passed in args, if one
of the args is not an Unit it will fail.
*/
setAgentStatus(params) {
return new Promise((resolve, reject) => {
const req = {
type: "UnitAssigner",
request: "SetAgentStatus",
version: 1,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
WatchUnitAssignments returns a strings watcher that is notified when new unit
assignments are added to the db.
*/
watchUnitAssignments(params) {
return new Promise((resolve, reject) => {
const req = {
type: "UnitAssigner",
request: "WatchUnitAssignments",
version: 1,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
}
UnitAssignerV1.NAME = "UnitAssigner";
UnitAssignerV1.VERSION = 1;
export default UnitAssignerV1;
//# sourceMappingURL=UnitAssignerV1.js.map