-
Notifications
You must be signed in to change notification settings - Fork 7
/
RemoteRelationsV2.ts
542 lines (462 loc) · 12.8 KB
/
RemoteRelationsV2.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
/**
Juju RemoteRelations version 2.
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 ControllerAPIInfoResult {
addresses: string[];
cacert: string;
error?: Error;
}
export interface ControllerAPIInfoResults {
results: ControllerAPIInfoResult[];
}
export interface ControllerConfigResult {
config: AdditionalProperties;
}
export interface Entities {
entities: Entity[];
}
export interface Entity {
tag: string;
}
export interface EntityMacaroonArg {
macaroon: Macaroon;
tag: string;
}
export interface EntityMacaroonArgs {
Args: EntityMacaroonArg[];
}
export interface EntityStatusArgs {
data: AdditionalProperties;
info: string;
status: string;
tag: string;
}
export interface Error {
code: string;
info?: AdditionalProperties;
message: string;
}
export interface ErrorResult {
error?: Error;
}
export interface ErrorResults {
results: ErrorResult[];
}
export interface ExternalControllerInfo {
addrs: string[];
"ca-cert": string;
"controller-alias": string;
"controller-tag": string;
}
export interface GetTokenArg {
tag: string;
}
export interface GetTokenArgs {
Args: GetTokenArg[];
}
export interface LatestSecretRevisionChanges {
changes: SecretRevisionChange[];
}
export interface Macaroon {
[key: string]: AdditionalProperties;
}
export interface RemoteApplication {
"consume-version"?: number;
"is-consumer-proxy": boolean;
life?: string;
macaroon?: Macaroon;
"model-uuid": string;
name: string;
"offer-uuid": string;
status?: string;
}
export interface RemoteApplicationResult {
error?: Error;
result?: RemoteApplication;
}
export interface RemoteApplicationResults {
results?: RemoteApplicationResult[];
}
export interface RemoteEndpoint {
interface: string;
limit: number;
name: string;
role: string;
}
export interface RemoteEntityTokenArg {
tag: string;
token?: string;
}
export interface RemoteEntityTokenArgs {
Args: RemoteEntityTokenArg[];
}
export interface RemoteRelation {
"application-name": string;
endpoint: RemoteEndpoint;
id: number;
key: string;
life: string;
"remote-application-name": string;
"remote-endpoint-name": string;
"source-model-uuid": string;
suspended: boolean;
"unit-count": number;
}
export interface RemoteRelationChangeEvent {
"application-settings"?: AdditionalProperties;
"application-token": string;
"bakery-version"?: number;
"changed-units"?: RemoteRelationUnitChange[];
"departed-units"?: number[];
"force-cleanup"?: boolean;
life: string;
macaroons?: Macaroon[];
"relation-token": string;
suspended?: boolean;
"suspended-reason"?: string;
"unit-count": number;
}
export interface RemoteRelationResult {
error?: Error;
result?: RemoteRelation;
}
export interface RemoteRelationResults {
results: RemoteRelationResult[];
}
export interface RemoteRelationUnitChange {
settings?: AdditionalProperties;
"unit-id": number;
}
export interface RemoteRelationWatchResult {
changes: RemoteRelationChangeEvent;
error?: Error;
"watcher-id": string;
}
export interface RemoteRelationWatchResults {
results: RemoteRelationWatchResult[];
}
export interface RemoteRelationsChanges {
changes?: RemoteRelationChangeEvent[];
}
export interface SecretRevisionChange {
revision: number;
uri: string;
}
export interface SetStatus {
entities: EntityStatusArgs[];
}
export interface StringResult {
error?: Error;
result: string;
}
export interface StringResults {
results: StringResult[];
}
export interface StringsWatchResult {
changes?: string[];
error?: Error;
"watcher-id": string;
}
export interface StringsWatchResults {
results: StringsWatchResult[];
}
export interface TokenResult {
error?: Error;
token?: string;
}
export interface TokenResults {
results?: TokenResult[];
}
export interface UpdateControllerForModel {
info: ExternalControllerInfo;
"model-tag": string;
}
export interface UpdateControllersForModelsParams {
changes: UpdateControllerForModel[];
}
export interface AdditionalProperties {
[key: string]: any;
}
/**
API provides access to the remote relations API facade.
*/
class RemoteRelationsV2 implements Facade {
static NAME = "RemoteRelations";
static VERSION = 2;
NAME = "RemoteRelations";
VERSION = 2;
_transport: Transport;
_info: ConnectionInfo;
constructor(transport: Transport, info: ConnectionInfo) {
this._transport = transport;
this._info = info;
// Automatically bind all methods to instances.
autoBind(this);
}
/**
ConsumeRemoteRelationChanges consumes changes to settings originating
from the remote/offering side of relations.
*/
consumeRemoteRelationChanges(
params: RemoteRelationsChanges
): Promise<ErrorResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "ConsumeRemoteRelationChanges",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
ConsumeRemoteSecretChanges updates the local model with secret revision changes
originating from the remote/offering model.
*/
consumeRemoteSecretChanges(
params: LatestSecretRevisionChanges
): Promise<ErrorResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "ConsumeRemoteSecretChanges",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
ControllerAPIInfoForModels returns the controller api connection details for the specified models.
*/
controllerAPIInfoForModels(
params: Entities
): Promise<ControllerAPIInfoResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "ControllerAPIInfoForModels",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
ControllerConfig returns the controller's configuration.
*/
controllerConfig(params: any): Promise<ControllerConfigResult> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "ControllerConfig",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
ExportEntities allocates unique, remote entity IDs for the given entities in the local model.
*/
exportEntities(params: Entities): Promise<TokenResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "ExportEntities",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
GetTokens returns the token associated with the entities with the given tags for the given models.
*/
getTokens(params: GetTokenArgs): Promise<StringResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "GetTokens",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
ImportRemoteEntities adds entities to the remote entities collection with the specified opaque tokens.
*/
importRemoteEntities(params: RemoteEntityTokenArgs): Promise<ErrorResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "ImportRemoteEntities",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
Relations returns information about the cross-model relations with the specified keys
in the local model.
*/
relations(params: Entities): Promise<RemoteRelationResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "Relations",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
RemoteApplications returns the current state of the remote applications with
the specified names in the local model.
*/
remoteApplications(params: Entities): Promise<RemoteApplicationResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "RemoteApplications",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
SaveMacaroons saves the macaroons for the given entities.
*/
saveMacaroons(params: EntityMacaroonArgs): Promise<ErrorResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "SaveMacaroons",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
SetRemoteApplicationsStatus sets the status for the specified remote applications.
*/
setRemoteApplicationsStatus(params: SetStatus): Promise<ErrorResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "SetRemoteApplicationsStatus",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
UpdateControllersForModels changes the external controller records for the
associated model entities. This is used when the remote relations worker gets
redirected following migration of an offering model.
*/
updateControllersForModels(
params: UpdateControllersForModelsParams
): Promise<ErrorResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "UpdateControllersForModels",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
WatchLocalRelationChanges starts a RemoteRelationWatcher for each
specified relation, returning the watcher IDs and initial values,
or an error if the remote relations couldn't be watched.
*/
watchLocalRelationChanges(
params: Entities
): Promise<RemoteRelationWatchResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "WatchLocalRelationChanges",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
WatchRemoteApplicationRelations starts a StringsWatcher for watching the relations of
each specified application in the local model, and returns the watcher IDs
and initial values, or an error if the services' relations could not be
watched.
*/
watchRemoteApplicationRelations(
params: Entities
): Promise<StringsWatchResults> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "WatchRemoteApplicationRelations",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
WatchRemoteApplications starts a strings watcher that notifies of the addition,
removal, and lifecycle changes of remote applications in the model; and
returns the watcher ID and initial IDs of remote applications, or an error if
watching failed.
*/
watchRemoteApplications(params: any): Promise<StringsWatchResult> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "WatchRemoteApplications",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
/**
WatchRemoteRelations starts a strings watcher that notifies of the addition,
removal, and lifecycle changes of remote relations in the model; and
returns the watcher ID and initial IDs of remote relations, or an error if
watching failed.
*/
watchRemoteRelations(params: any): Promise<StringsWatchResult> {
return new Promise((resolve, reject) => {
const req: JujuRequest = {
type: "RemoteRelations",
request: "WatchRemoteRelations",
version: 2,
params: params,
};
this._transport.write(req, resolve, reject);
});
}
}
export default RemoteRelationsV2;