@canonical/jujulib
Version:
Juju API client
119 lines (98 loc) • 2.72 kB
text/typescript
/**
Juju RetryStrategy 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 type { JujuRequest } from "../../../generator/interfaces.js";
import { ConnectionInfo, Transport } from "../../client.js";
import { Facade } from "../../types.js";
import { autoBind } from "../../utils.js";
export interface Entities {
entities: Entity[];
}
export interface Entity {
tag: string;
}
export interface Error {
code: string;
info?: AdditionalProperties;
message: string;
}
export interface NotifyWatchResult {
NotifyWatcherId: string;
error?: Error;
}
export interface NotifyWatchResults {
results: NotifyWatchResult[];
}
export interface RetryStrategy {
"jitter-retry-time": boolean;
"max-retry-time": number;
"min-retry-time": number;
"retry-time-factor": number;
"should-retry": boolean;
}
export interface RetryStrategyResult {
error?: Error;
result?: RetryStrategy;
}
export interface RetryStrategyResults {
results: RetryStrategyResult[];
}
export interface AdditionalProperties {
[key: string]: any;
}
/**
RetryStrategyAPI implements RetryStrategy
*/
class RetryStrategyV1 implements Facade {
static NAME = "RetryStrategy";
static VERSION = 1;
NAME = "RetryStrategy";
VERSION = 1;
_transport: Transport;
_info: ConnectionInfo;
constructor(transport: Transport, info: ConnectionInfo) {
this._transport = transport;
this._info = info;
// Automatically bind all methods to instances.
autoBind(this);
}
/**
RetryStrategy returns RetryStrategyResults that can be used by any code that uses
to configure the retry timer that's currently in juju utils.
*/
retryStrategy(params: Entities): Promise<RetryStrategyResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RetryStrategy",
request: "RetryStrategy",
version: 1,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
WatchRetryStrategy watches for changes to the model. Currently we only allow
changes to the boolean that determines whether retries should be attempted or not.
*/
watchRetryStrategy(params: Entities): Promise<NotifyWatchResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RetryStrategy",
request: "WatchRetryStrategy",
version: 1,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
}
export default RetryStrategyV1;