@stack-spot/portal-network 0.29.0 → 0.30.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,6 +9,36 @@ export declare const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders>;
9
9
  export declare const servers: {
10
10
  generatedServerUrl: string;
11
11
  };
12
+ export type WorkspaceVariableResponse = {
13
+ /** Workspace variable name. */
14
+ name: string;
15
+ /** Workspace variable value. */
16
+ value?: string;
17
+ /** Workspace variable description. */
18
+ description: string;
19
+ /** Workspace variable mandate flag. */
20
+ mandate: boolean;
21
+ /** Variable value source. */
22
+ source: string;
23
+ /** Workspace variable creation data */
24
+ createdAt: string;
25
+ };
26
+ export type ValidationDetails = {
27
+ code: string;
28
+ field?: string;
29
+ details?: string;
30
+ values?: string[];
31
+ };
32
+ export type ErrorResponse = {
33
+ code: string;
34
+ status: number;
35
+ details: string;
36
+ validationDetails?: ValidationDetails[];
37
+ };
38
+ export type UpsertWorkspaceVariableRequest = {
39
+ /** Workspace variable value. */
40
+ value: string;
41
+ };
12
42
  export type ContextAttributeDto = {
13
43
  key: string;
14
44
  value: object;
@@ -26,18 +56,6 @@ export type WorkflowContextResponse = {
26
56
  actionsBefore: ActionContextResponse[];
27
57
  actionsAfter: ActionContextResponse[];
28
58
  };
29
- export type ValidationDetails = {
30
- code: string;
31
- field?: string;
32
- details?: string;
33
- values?: string[];
34
- };
35
- export type ErrorResponse = {
36
- code: string;
37
- status: number;
38
- details: string;
39
- validationDetails?: ValidationDetails[];
40
- };
41
59
  export type ContextAttribute = {
42
60
  key: string;
43
61
  value: object;
@@ -51,20 +69,6 @@ export type WorkspaceWorkflowCreateRequest = {
51
69
  actionsBefore: WorkflowActionContextRequest[];
52
70
  actionsAfter: WorkflowActionContextRequest[];
53
71
  };
54
- export type WorkspaceVariableReadResponse = {
55
- /** Workspace variable name. */
56
- name: string;
57
- /** Workspace variable value. */
58
- value: string;
59
- /** Workspace variable description. */
60
- description: string;
61
- };
62
- export type UpdateWorkspaceVariableRequest = {
63
- /** Workspace variable value. */
64
- value: string;
65
- /** Workspace variable description. */
66
- description: string;
67
- };
68
72
  export type PluginAttribute = {
69
73
  key: string;
70
74
  value: object;
@@ -287,6 +291,26 @@ export type ActionsWorkflowSaveRequest = {
287
291
  actionsBefore: WorkflowActionRequest[];
288
292
  actionsAfter: WorkflowActionRequest[];
289
293
  };
294
+ export type AccountVariableResponse = {
295
+ /** Account variable name */
296
+ name: string;
297
+ /** Account variable value stored */
298
+ value?: string;
299
+ /** Account variable description */
300
+ description: string;
301
+ /** Account variable mandatory flag */
302
+ mandate: boolean;
303
+ /** Account variable creation data */
304
+ createdAt: string;
305
+ };
306
+ export type UpdateAccountVariableRequest = {
307
+ /** New account variable value */
308
+ value?: string;
309
+ /** New account variable description */
310
+ description: string;
311
+ /** New account variable mandatory flag */
312
+ mandate: boolean;
313
+ };
290
314
  export type AddAccountWorkflowStepRequest = {
291
315
  /** Workflow identifier. */
292
316
  identifier: string;
@@ -362,14 +386,6 @@ export type NewWorkspaceRequest = {
362
386
  /** Workspace manage runtime. */
363
387
  manageRuntime: boolean;
364
388
  };
365
- export type NewWorkspaceVariableRequest = {
366
- /** Workspace variable name. */
367
- name: string;
368
- /** Workspace variable value. */
369
- value: string;
370
- /** Workspace variable description. */
371
- description: string;
372
- };
373
389
  export type StackInWorkspaceReadResponse = {
374
390
  /** Stack version id. */
375
391
  stackVersionId: string;
@@ -607,9 +623,9 @@ export type ApplicationReadResponse = {
607
623
  /** Application repository base branch. */
608
624
  repoBaseBranch: string;
609
625
  /** Stack used to generate this application. */
610
- stackVersionId?: string;
626
+ stackVersionId: string;
611
627
  /** Starter used to generate this application. */
612
- starterId?: string;
628
+ starterId: string;
613
629
  /** Application status. */
614
630
  status: string;
615
631
  /** Application creator. */
@@ -631,9 +647,9 @@ export type CreateApplicationRequest = {
631
647
  /** Application repository base branch. */
632
648
  repoBaseBranch: string;
633
649
  /** Stack used to generate this application. */
634
- stackVersionId?: string;
650
+ stackVersionId: string;
635
651
  /** Starter used to generate this application. */
636
- starterId?: string;
652
+ starterId: string;
637
653
  };
638
654
  export type RecreateApplicationRequest = {
639
655
  /** Application name. */
@@ -859,6 +875,28 @@ export type AccountWorkflowCreateRequest = {
859
875
  actionsBefore: WorkflowActionWithContextRequest[];
860
876
  actionsAfter: WorkflowActionWithContextRequest[];
861
877
  };
878
+ export type PaginatedAccountVariableResponse = {
879
+ /** Current page requested */
880
+ currentPage: number;
881
+ /** Last page available */
882
+ lastPage: number;
883
+ /** Page size requested */
884
+ pageSize: number;
885
+ /** Total items found */
886
+ totalItems: number;
887
+ /** Account variables for current page */
888
+ items: AccountVariableResponse[];
889
+ };
890
+ export type CreateAccountVariableRequest = {
891
+ /** Account variable name */
892
+ name: string;
893
+ /** Account variable value */
894
+ value?: string;
895
+ /** Account variable description */
896
+ description: string;
897
+ /** Account variable mandatory flag */
898
+ mandate: boolean;
899
+ };
862
900
  export type AccountStackContextResponse = {
863
901
  /** List of stack version ids with pluginVersionId list with account context. */
864
902
  stackVersions: StackVersionResponse[];
@@ -930,6 +968,13 @@ export type EnvironmentUpdateRequest = {
930
968
  /** Environment description. */
931
969
  description?: string;
932
970
  };
971
+ export type PaginatedWorkspaceVariableResponse = {
972
+ currentPage: number;
973
+ pageSize: number;
974
+ lastPage: number;
975
+ totalItems: number;
976
+ items: WorkspaceVariableResponse[];
977
+ };
933
978
  export type AppliedConnectionInterface = {
934
979
  slug: string;
935
980
  "type": string;
@@ -1005,6 +1050,14 @@ export type ConnectionInterfaceInUseByTargetIdDetailsResponse = {
1005
1050
  environmentId: string;
1006
1051
  targets: PluginInUseResponse[];
1007
1052
  };
1053
+ export type WorkspaceVariableReadV1Response = {
1054
+ /** Workspace variable name. */
1055
+ name: string;
1056
+ /** Workspace variable value. */
1057
+ value: string;
1058
+ /** Workspace variable description. */
1059
+ description: string;
1060
+ };
1008
1061
  export type ConsolidatedAttr = {
1009
1062
  key: string;
1010
1063
  value: object;
@@ -1228,6 +1281,14 @@ export type GetApplicationResponse = {
1228
1281
  export type WorkflowActionUsageResponse = {
1229
1282
  versionRanges: string[];
1230
1283
  };
1284
+ export type AccountVariableUsageResponse = {
1285
+ /** How many plugins are using this account variable */
1286
+ pluginsInUse: number;
1287
+ /** How many actions are using this account variable */
1288
+ actionsInUse: number;
1289
+ /** How many contexts are using this account variable */
1290
+ contextsInUse: number;
1291
+ };
1231
1292
  export type AccountAttr = {
1232
1293
  key: string;
1233
1294
  value: object;
@@ -1254,10 +1315,26 @@ export type StacksByAccountResponse = {
1254
1315
  accountId: string;
1255
1316
  stacks: StackWorkflowResponse[];
1256
1317
  };
1318
+ /**
1319
+ * Get a workspace variable by name
1320
+ */
1321
+ export declare function workspaceVariableV2ControllerfindByName({ accountId, workspaceId, name }: {
1322
+ accountId?: string;
1323
+ workspaceId: string;
1324
+ name: string;
1325
+ }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceVariableResponse>;
1326
+ /**
1327
+ * Upsert workspace variable based on existing account variable
1328
+ */
1329
+ export declare function workspaceVariableV2Controllerupsert({ workspaceId, name, upsertWorkspaceVariableRequest }: {
1330
+ workspaceId: string;
1331
+ name: string;
1332
+ upsertWorkspaceVariableRequest: UpsertWorkspaceVariableRequest;
1333
+ }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1257
1334
  /**
1258
1335
  * List all configured context of an workflow by workspace and stack.
1259
1336
  */
1260
- export declare function listContextByWorkspaceStack({ workspaceId, workflowId, stackId }: {
1337
+ export declare function workflowWorkspaceControllerlistContextByWorkspaceStack({ workspaceId, workflowId, stackId }: {
1261
1338
  workspaceId: string;
1262
1339
  workflowId: string;
1263
1340
  stackId: string;
@@ -1265,38 +1342,16 @@ export declare function listContextByWorkspaceStack({ workspaceId, workflowId, s
1265
1342
  /**
1266
1343
  * Save workspace workflow context
1267
1344
  */
1268
- export declare function saveWorkspaceWorkflowContext({ workspaceId, workflowId, stackId, workspaceWorkflowCreateRequest }: {
1345
+ export declare function workflowWorkspaceControllersaveWorkspaceWorkflowContext({ workspaceId, workflowId, stackId, workspaceWorkflowCreateRequest }: {
1269
1346
  workspaceId: string;
1270
1347
  workflowId: string;
1271
1348
  stackId: string;
1272
1349
  workspaceWorkflowCreateRequest: WorkspaceWorkflowCreateRequest;
1273
1350
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1274
- /**
1275
- * Get a workspace's variable
1276
- */
1277
- export declare function getV1WorkspacesByWorkspaceIdVariablesAndName({ workspaceId, name }: {
1278
- workspaceId: string;
1279
- name: string;
1280
- }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceVariableReadResponse>;
1281
- /**
1282
- * Update a workspace's variable
1283
- */
1284
- export declare function update({ workspaceId, name, updateWorkspaceVariableRequest }: {
1285
- workspaceId: string;
1286
- name: string;
1287
- updateWorkspaceVariableRequest: UpdateWorkspaceVariableRequest;
1288
- }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceVariableReadResponse>;
1289
- /**
1290
- * Delete a workspace's variable
1291
- */
1292
- export declare function delete1({ workspaceId, name }: {
1293
- workspaceId: string;
1294
- name: string;
1295
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1296
1351
  /**
1297
1352
  * Add context to a typed element in a workspace's stack.
1298
1353
  */
1299
- export declare function addTypedContextInWorkspace({ workspaceId, stackVersionId, externalId, $type, addTypedContextRequest }: {
1354
+ export declare function contextControlleraddTypedContextInWorkspace({ workspaceId, stackVersionId, externalId, $type, addTypedContextRequest }: {
1300
1355
  workspaceId: string;
1301
1356
  stackVersionId: string;
1302
1357
  externalId: string;
@@ -1306,7 +1361,7 @@ export declare function addTypedContextInWorkspace({ workspaceId, stackVersionId
1306
1361
  /**
1307
1362
  * Get Workflow of a stack in a workspace.
1308
1363
  */
1309
- export declare function getWorkspaceWorkflow({ workspaceId, stackVersionId, identifier }: {
1364
+ export declare function workflowControllergetWorkspaceWorkflow({ workspaceId, stackVersionId, identifier }: {
1310
1365
  workspaceId: string;
1311
1366
  stackVersionId: string;
1312
1367
  identifier?: string;
@@ -1314,7 +1369,7 @@ export declare function getWorkspaceWorkflow({ workspaceId, stackVersionId, iden
1314
1369
  /**
1315
1370
  * Add step to a workflow belonging to a workspace.
1316
1371
  */
1317
- export declare function addWorkflowStepInWorkspace({ workspaceId, stackVersionId, addWorkspaceWorkflowStepRequest }: {
1372
+ export declare function workflowControlleraddWorkflowStepInWorkspace({ workspaceId, stackVersionId, addWorkspaceWorkflowStepRequest }: {
1318
1373
  workspaceId: string;
1319
1374
  stackVersionId: string;
1320
1375
  addWorkspaceWorkflowStepRequest: AddWorkspaceWorkflowStepRequest;
@@ -1322,7 +1377,7 @@ export declare function addWorkflowStepInWorkspace({ workspaceId, stackVersionId
1322
1377
  /**
1323
1378
  * Import context in a workspace's stack.
1324
1379
  */
1325
- export declare function importContextInWorkspace({ workspaceId, stackVersionId, body }: {
1380
+ export declare function contextControllerimportContextInWorkspace({ workspaceId, stackVersionId, body }: {
1326
1381
  workspaceId: string;
1327
1382
  stackVersionId: string;
1328
1383
  body: ImportContextRequest[];
@@ -1330,7 +1385,7 @@ export declare function importContextInWorkspace({ workspaceId, stackVersionId,
1330
1385
  /**
1331
1386
  * Update shared infrastructure status.
1332
1387
  */
1333
- export declare function updateStatus({ workspaceId, sharedInfraId, updateSharedInfraStatusRequest }: {
1388
+ export declare function sharedInfrastructureControllerupdateStatus({ workspaceId, sharedInfraId, updateSharedInfraStatusRequest }: {
1334
1389
  workspaceId: string;
1335
1390
  sharedInfraId: string;
1336
1391
  updateSharedInfraStatusRequest: UpdateSharedInfraStatusRequest;
@@ -1338,14 +1393,14 @@ export declare function updateStatus({ workspaceId, sharedInfraId, updateSharedI
1338
1393
  /**
1339
1394
  * Get shared infra links visibility
1340
1395
  */
1341
- export declare function getVisibleLinks({ workspaceId, sharedInfraId }: {
1396
+ export declare function sharedInfraLinkControllergetVisibleLinks({ workspaceId, sharedInfraId }: {
1342
1397
  workspaceId: string;
1343
1398
  sharedInfraId: string;
1344
1399
  }, opts?: Oazapfts.RequestOpts): Promise<SharedInfraVisibleLinksResponse[]>;
1345
1400
  /**
1346
1401
  * Update application links visibility
1347
1402
  */
1348
- export declare function updateLinksVisibility({ workspaceId, sharedInfraId, body }: {
1403
+ export declare function sharedInfraLinkControllerupdateLinksVisibility({ workspaceId, sharedInfraId, body }: {
1349
1404
  workspaceId: string;
1350
1405
  sharedInfraId: string;
1351
1406
  body: UpdateSharedInfraLinkVisibilityRequest[];
@@ -1353,7 +1408,7 @@ export declare function updateLinksVisibility({ workspaceId, sharedInfraId, body
1353
1408
  /**
1354
1409
  * Update activity status by workspace.
1355
1410
  */
1356
- export declare function updateRun({ accountId, workspaceId, runId, updateRunRequest }: {
1411
+ export declare function managerRunControllerupdateRun({ accountId, workspaceId, runId, updateRunRequest }: {
1357
1412
  accountId: string;
1358
1413
  workspaceId: string;
1359
1414
  runId: string;
@@ -1362,7 +1417,7 @@ export declare function updateRun({ accountId, workspaceId, runId, updateRunRequ
1362
1417
  /**
1363
1418
  * Update plugin status by workspace.
1364
1419
  */
1365
- export declare function runTask({ accountId, workspaceId, runId, runTaskRequest }: {
1420
+ export declare function managerRunControllerrunTask({ accountId, workspaceId, runId, runTaskRequest }: {
1366
1421
  accountId: string;
1367
1422
  workspaceId: string;
1368
1423
  runId: string;
@@ -1371,7 +1426,7 @@ export declare function runTask({ accountId, workspaceId, runId, runTaskRequest
1371
1426
  /**
1372
1427
  * Deployment tag register.
1373
1428
  */
1374
- export declare function deploymentTag({ accountId, workspaceId, runId, deploymentTagRequest }: {
1429
+ export declare function managerRunControllerdeploymentTag({ accountId, workspaceId, runId, deploymentTagRequest }: {
1375
1430
  accountId: string;
1376
1431
  workspaceId: string;
1377
1432
  runId: string;
@@ -1380,7 +1435,7 @@ export declare function deploymentTag({ accountId, workspaceId, runId, deploymen
1380
1435
  /**
1381
1436
  * Request to upsert connection interfaces attributes.
1382
1437
  */
1383
- export declare function updateConnectionInterfaceAttributes({ workspaceId, connectionInterfaceId, updateConnectionInterfaceAttributesRequest }: {
1438
+ export declare function connectionInterfaceControllerupdateConnectionInterfaceAttributes({ workspaceId, connectionInterfaceId, updateConnectionInterfaceAttributesRequest }: {
1384
1439
  workspaceId: string;
1385
1440
  connectionInterfaceId: string;
1386
1441
  updateConnectionInterfaceAttributesRequest: UpdateConnectionInterfaceAttributesRequest;
@@ -1388,14 +1443,14 @@ export declare function updateConnectionInterfaceAttributes({ workspaceId, conne
1388
1443
  /**
1389
1444
  * Request to upsert connection interfaces.
1390
1445
  */
1391
- export declare function upsertBatch({ workspaceId, body }: {
1446
+ export declare function connectionInterfaceControllerupsertBatch({ workspaceId, body }: {
1392
1447
  workspaceId: string;
1393
1448
  body: UpsertConnectionInterfaceRequest[];
1394
1449
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1395
1450
  /**
1396
1451
  * Update application status.
1397
1452
  */
1398
- export declare function updateStatus1({ workspaceId, applicationId, accountId, updateApplicationStatusRequest }: {
1453
+ export declare function applicationControllerupdateStatus({ workspaceId, applicationId, accountId, updateApplicationStatusRequest }: {
1399
1454
  workspaceId: string;
1400
1455
  applicationId: string;
1401
1456
  accountId?: string;
@@ -1404,14 +1459,14 @@ export declare function updateStatus1({ workspaceId, applicationId, accountId, u
1404
1459
  /**
1405
1460
  * Get application links visibility
1406
1461
  */
1407
- export declare function getVisibleLinks1({ workspaceId, applicationId }: {
1462
+ export declare function applicationLinkControllergetVisibleLinks({ workspaceId, applicationId }: {
1408
1463
  workspaceId: string;
1409
1464
  applicationId: string;
1410
1465
  }, opts?: Oazapfts.RequestOpts): Promise<ApplicationVisibleLinksResponse[]>;
1411
1466
  /**
1412
1467
  * Update application links visibility
1413
1468
  */
1414
- export declare function updateLinksVisibility1({ workspaceId, applicationId, body }: {
1469
+ export declare function applicationLinkControllerupdateLinksVisibility({ workspaceId, applicationId, body }: {
1415
1470
  workspaceId: string;
1416
1471
  applicationId: string;
1417
1472
  body: UpdateApplicationLinkVisibilityRequest[];
@@ -1419,46 +1474,66 @@ export declare function updateLinksVisibility1({ workspaceId, applicationId, bod
1419
1474
  /**
1420
1475
  * Get workflow settings with associated stacks.
1421
1476
  */
1422
- export declare function listSettingsByAccountWorkflow({ workflowId }: {
1477
+ export declare function workflowAccountControllerlistSettingsByAccountWorkflow({ workflowId }: {
1423
1478
  workflowId: string;
1424
1479
  }, opts?: Oazapfts.RequestOpts): Promise<WorkflowSettingsResponse>;
1425
1480
  /**
1426
1481
  * Update settings information of a workflow account.
1427
1482
  */
1428
- export declare function updateSettingsByAccountWorkflow({ workflowId, settingsWorkflowSaveRequest }: {
1483
+ export declare function workflowAccountControllerupdateSettingsByAccountWorkflow({ workflowId, settingsWorkflowSaveRequest }: {
1429
1484
  workflowId: string;
1430
1485
  settingsWorkflowSaveRequest: SettingsWorkflowSaveRequest;
1431
1486
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1432
1487
  /**
1433
1488
  * List all configured context of an workflow account.
1434
1489
  */
1435
- export declare function listContextByAccountWorkflow({ workflowId }: {
1490
+ export declare function workflowAccountControllerlistContextByAccountWorkflow({ workflowId }: {
1436
1491
  workflowId: string;
1437
1492
  }, opts?: Oazapfts.RequestOpts): Promise<WorkflowContextResponse>;
1438
1493
  /**
1439
1494
  * Update all context configurations of a workflow account.
1440
1495
  */
1441
- export declare function updateContextsByAccountWorkflow({ workflowId, contextsWorkflowSaveRequest }: {
1496
+ export declare function workflowAccountControllerupdateContextsByAccountWorkflow({ workflowId, contextsWorkflowSaveRequest }: {
1442
1497
  workflowId: string;
1443
1498
  contextsWorkflowSaveRequest: ContextsWorkflowSaveRequest;
1444
1499
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1445
1500
  /**
1446
1501
  * List all actions of an workflow account.
1447
1502
  */
1448
- export declare function listActionsByAccountWorkflow({ workflowId }: {
1503
+ export declare function workflowAccountControllerlistActionsByAccountWorkflow({ workflowId }: {
1449
1504
  workflowId: string;
1450
1505
  }, opts?: Oazapfts.RequestOpts): Promise<WorkflowActionsResponse>;
1451
1506
  /**
1452
1507
  * Update all actions associations with a workflow account.
1453
1508
  */
1454
- export declare function updateActionsByAccountWorkflow({ workflowId, actionsWorkflowSaveRequest }: {
1509
+ export declare function workflowAccountControllerupdateActionsByAccountWorkflow({ workflowId, actionsWorkflowSaveRequest }: {
1455
1510
  workflowId: string;
1456
1511
  actionsWorkflowSaveRequest: ActionsWorkflowSaveRequest;
1457
1512
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1513
+ /**
1514
+ * Get an account variable by name
1515
+ */
1516
+ export declare function accountVariableControllerfindByName({ accountId, name }: {
1517
+ accountId?: string;
1518
+ name: string;
1519
+ }, opts?: Oazapfts.RequestOpts): Promise<AccountVariableResponse>;
1520
+ /**
1521
+ * Update account variable
1522
+ */
1523
+ export declare function accountVariableControllerupdate({ name, updateAccountVariableRequest }: {
1524
+ name: string;
1525
+ updateAccountVariableRequest: UpdateAccountVariableRequest;
1526
+ }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1527
+ /**
1528
+ * Delete account variable
1529
+ */
1530
+ export declare function accountVariableControllerdelete({ name }: {
1531
+ name: string;
1532
+ }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1458
1533
  /**
1459
1534
  * Add context to a typed element in an account's stack.
1460
1535
  */
1461
- export declare function addTypedContextInAccount({ stackVersionId, externalId, $type, addTypedContextRequest }: {
1536
+ export declare function contextControlleraddTypedContextInAccount({ stackVersionId, externalId, $type, addTypedContextRequest }: {
1462
1537
  stackVersionId: string;
1463
1538
  externalId: string;
1464
1539
  $type: "plugin" | "action";
@@ -1467,28 +1542,28 @@ export declare function addTypedContextInAccount({ stackVersionId, externalId, $
1467
1542
  /**
1468
1543
  * Get Workflow of a stack in an account.
1469
1544
  */
1470
- export declare function getAccountWorkflow({ stackVersionId, identifier }: {
1545
+ export declare function workflowControllergetAccountWorkflow({ stackVersionId, identifier }: {
1471
1546
  stackVersionId: string;
1472
1547
  identifier?: string;
1473
1548
  }, opts?: Oazapfts.RequestOpts): Promise<WorkflowReadResponse[]>;
1474
1549
  /**
1475
1550
  * Add step to a workflow belonging to an account.
1476
1551
  */
1477
- export declare function addWorkflowStepInAccount({ stackVersionId, addAccountWorkflowStepRequest }: {
1552
+ export declare function workflowControlleraddWorkflowStepInAccount({ stackVersionId, addAccountWorkflowStepRequest }: {
1478
1553
  stackVersionId: string;
1479
1554
  addAccountWorkflowStepRequest: AddAccountWorkflowStepRequest;
1480
1555
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1481
1556
  /**
1482
1557
  * Import context in an account's stack.
1483
1558
  */
1484
- export declare function importContextInAccount({ stackVersionId, body }: {
1559
+ export declare function contextControllerimportContextInAccount({ stackVersionId, body }: {
1485
1560
  stackVersionId: string;
1486
1561
  body: ImportContextRequest[];
1487
1562
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1488
1563
  /**
1489
1564
  * Save stack workflow context
1490
1565
  */
1491
- export declare function saveStackWorkflowContext({ stackId, workflowId, stackWorkflowCreateRequest }: {
1566
+ export declare function workflowStackControllersaveStackWorkflowContext({ stackId, workflowId, stackWorkflowCreateRequest }: {
1492
1567
  stackId: string;
1493
1568
  workflowId: string;
1494
1569
  stackWorkflowCreateRequest: StackWorkflowCreateRequest;
@@ -1496,7 +1571,7 @@ export declare function saveStackWorkflowContext({ stackId, workflowId, stackWor
1496
1571
  /**
1497
1572
  * List specific shared infra or application usage by plugin list.
1498
1573
  */
1499
- export declare function listPluginUsageByTargetId({ accountId, targetType, targetId, body }: {
1574
+ export declare function usageInsightsControllerlistPluginUsageByTargetId({ accountId, targetType, targetId, body }: {
1500
1575
  accountId: string;
1501
1576
  targetType: "applications" | "shared_infra";
1502
1577
  targetId: string;
@@ -1505,7 +1580,7 @@ export declare function listPluginUsageByTargetId({ accountId, targetType, targe
1505
1580
  /**
1506
1581
  * List all shared infras or applications usage by plugin list.
1507
1582
  */
1508
- export declare function listAllPluginUsage({ accountId, targetType, body }: {
1583
+ export declare function usageInsightsControllerlistAllPluginUsage({ accountId, targetType, body }: {
1509
1584
  accountId: string;
1510
1585
  targetType: "applications" | "shared_infra";
1511
1586
  body: string[];
@@ -1513,7 +1588,7 @@ export declare function listAllPluginUsage({ accountId, targetType, body }: {
1513
1588
  /**
1514
1589
  * Get all workspaces
1515
1590
  */
1516
- export declare function getWorkspaces({ name, aclOnly, accountId }: {
1591
+ export declare function workspaceControllergetWorkspaces({ name, aclOnly, accountId }: {
1517
1592
  name?: string;
1518
1593
  aclOnly?: boolean;
1519
1594
  accountId?: string;
@@ -1521,47 +1596,33 @@ export declare function getWorkspaces({ name, aclOnly, accountId }: {
1521
1596
  /**
1522
1597
  * Create workspace
1523
1598
  */
1524
- export declare function save({ newWorkspaceRequest }: {
1599
+ export declare function workspaceControllersave({ newWorkspaceRequest }: {
1525
1600
  newWorkspaceRequest: NewWorkspaceRequest;
1526
1601
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
1527
- /**
1528
- * Get all workspace's variables
1529
- */
1530
- export declare function findAll({ workspaceId, filter }: {
1531
- workspaceId: string;
1532
- filter?: string;
1533
- }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceVariableReadResponse[]>;
1534
- /**
1535
- * Create a workspace's variable
1536
- */
1537
- export declare function save1({ workspaceId, newWorkspaceVariableRequest }: {
1538
- workspaceId: string;
1539
- newWorkspaceVariableRequest: NewWorkspaceVariableRequest;
1540
- }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceVariableReadResponse>;
1541
1602
  /**
1542
1603
  * Get all stacks in a workspace.
1543
1604
  */
1544
- export declare function getStacks({ workspaceId }: {
1605
+ export declare function workspaceStackControllergetStacks({ workspaceId }: {
1545
1606
  workspaceId: string;
1546
1607
  }, opts?: Oazapfts.RequestOpts): Promise<StackInWorkspaceReadResponse[]>;
1547
1608
  /**
1548
1609
  * Add a stack in a workspace.
1549
1610
  */
1550
- export declare function addStack({ workspaceId, addStackInWorkspaceRequest }: {
1611
+ export declare function workspaceStackControlleraddStack({ workspaceId, addStackInWorkspaceRequest }: {
1551
1612
  workspaceId: string;
1552
1613
  addStackInWorkspaceRequest: AddStackInWorkspaceRequest;
1553
1614
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1554
1615
  /**
1555
1616
  * Get all stacks with context in a workspace.
1556
1617
  */
1557
- export declare function getStacksWithContext({ workspaceId, body }: {
1618
+ export declare function workspaceStackControllergetStacksWithContext({ workspaceId, body }: {
1558
1619
  workspaceId: string;
1559
1620
  body: string[];
1560
1621
  }, opts?: Oazapfts.RequestOpts): Promise<StackWithWorkspaceContextResponse>;
1561
1622
  /**
1562
1623
  * Get all shared infrastructure of a workspace.
1563
1624
  */
1564
- export declare function getAllSharedInfrastructure({ workspaceId, name, stackVersionId }: {
1625
+ export declare function sharedInfrastructureControllergetAllSharedInfrastructure({ workspaceId, name, stackVersionId }: {
1565
1626
  workspaceId: string;
1566
1627
  name?: string;
1567
1628
  stackVersionId?: string;
@@ -1569,7 +1630,7 @@ export declare function getAllSharedInfrastructure({ workspaceId, name, stackVer
1569
1630
  /**
1570
1631
  * Create shared infrastructure in a workspace.
1571
1632
  */
1572
- export declare function save2({ workspaceId, fromPortal, createSharedInfraRequest }: {
1633
+ export declare function sharedInfrastructureControllersave({ workspaceId, fromPortal, createSharedInfraRequest }: {
1573
1634
  workspaceId: string;
1574
1635
  fromPortal?: boolean;
1575
1636
  createSharedInfraRequest: CreateSharedInfraRequest;
@@ -1577,14 +1638,14 @@ export declare function save2({ workspaceId, fromPortal, createSharedInfraReques
1577
1638
  /**
1578
1639
  * Get shared infrastructure of a workspace.
1579
1640
  */
1580
- export declare function getSharedInfrastructure({ workspaceId, sharedInfraId }: {
1641
+ export declare function sharedInfrastructureControllergetSharedInfrastructure({ workspaceId, sharedInfraId }: {
1581
1642
  workspaceId: string;
1582
1643
  sharedInfraId: string;
1583
1644
  }, opts?: Oazapfts.RequestOpts): Promise<SharedInfraDetailsResponse>;
1584
1645
  /**
1585
1646
  * Recreate a shared infrastructure in a workspace.
1586
1647
  */
1587
- export declare function recreate({ workspaceId, sharedInfraId, recreateSharedInfraRequest }: {
1648
+ export declare function sharedInfrastructureControllerrecreate({ workspaceId, sharedInfraId, recreateSharedInfraRequest }: {
1588
1649
  workspaceId: string;
1589
1650
  sharedInfraId: string;
1590
1651
  recreateSharedInfraRequest: RecreateSharedInfraRequest;
@@ -1592,14 +1653,14 @@ export declare function recreate({ workspaceId, sharedInfraId, recreateSharedInf
1592
1653
  /**
1593
1654
  * Delete infrastructure in a workspace.
1594
1655
  */
1595
- export declare function deleteSharedInfra({ workspaceId, sharedInfraId }: {
1656
+ export declare function sharedInfrastructureControllerdeleteSharedInfra({ workspaceId, sharedInfraId }: {
1596
1657
  workspaceId: string;
1597
1658
  sharedInfraId: string;
1598
1659
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1599
1660
  /**
1600
1661
  * Update shared infrastructure in a workspace.
1601
1662
  */
1602
- export declare function update2({ workspaceId, sharedInfraId, updateSharedInfraRequest }: {
1663
+ export declare function sharedInfrastructureControllerupdate({ workspaceId, sharedInfraId, updateSharedInfraRequest }: {
1603
1664
  workspaceId: string;
1604
1665
  sharedInfraId: string;
1605
1666
  updateSharedInfraRequest: UpdateSharedInfraRequest;
@@ -1607,7 +1668,7 @@ export declare function update2({ workspaceId, sharedInfraId, updateSharedInfraR
1607
1668
  /**
1608
1669
  * Get all shared infra links
1609
1670
  */
1610
- export declare function getSharedInfraLinks({ workspaceId, sharedInfraId, name }: {
1671
+ export declare function sharedInfraLinkControllergetSharedInfraLinks({ workspaceId, sharedInfraId, name }: {
1611
1672
  workspaceId: string;
1612
1673
  sharedInfraId: string;
1613
1674
  name?: string;
@@ -1615,7 +1676,7 @@ export declare function getSharedInfraLinks({ workspaceId, sharedInfraId, name }
1615
1676
  /**
1616
1677
  * Create shared infra link
1617
1678
  */
1618
- export declare function save3({ workspaceId, sharedInfraId, createSharedInfraLinkRequest }: {
1679
+ export declare function sharedInfraLinkControllersave({ workspaceId, sharedInfraId, createSharedInfraLinkRequest }: {
1619
1680
  workspaceId: string;
1620
1681
  sharedInfraId: string;
1621
1682
  createSharedInfraLinkRequest: CreateSharedInfraLinkRequest;
@@ -1623,14 +1684,14 @@ export declare function save3({ workspaceId, sharedInfraId, createSharedInfraLin
1623
1684
  /**
1624
1685
  * Has active deploy with type self hosted?
1625
1686
  */
1626
- export declare function hasActiveDeployWithTypeSelfHosted({ workspaceId, sharedInfraId }: {
1687
+ export declare function sharedInfrastructureControllerhasActiveDeployWithTypeSelfHosted({ workspaceId, sharedInfraId }: {
1627
1688
  workspaceId: string;
1628
1689
  sharedInfraId: string;
1629
1690
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1630
1691
  /**
1631
1692
  * Can the shared infra be destroyed?
1632
1693
  */
1633
- export declare function canBeDestroyed({ workspaceId, sharedInfraId, environmentId, accountId }: {
1694
+ export declare function sharedInfrastructureControllercanBeDestroyed({ workspaceId, sharedInfraId, environmentId, accountId }: {
1634
1695
  workspaceId: string;
1635
1696
  sharedInfraId: string;
1636
1697
  environmentId: string;
@@ -1639,7 +1700,7 @@ export declare function canBeDestroyed({ workspaceId, sharedInfraId, environment
1639
1700
  /**
1640
1701
  * Register the snapshot of a shared infrastructure's deploy.
1641
1702
  */
1642
- export declare function processDeploySnapshot({ workspaceId, sharedInfraId, sharedInfraDeploySnapshotRequest }: {
1703
+ export declare function sharedInfrastructureControllerprocessDeploySnapshot({ workspaceId, sharedInfraId, sharedInfraDeploySnapshotRequest }: {
1643
1704
  workspaceId: string;
1644
1705
  sharedInfraId: string;
1645
1706
  sharedInfraDeploySnapshotRequest: SharedInfraDeploySnapshotRequest;
@@ -1647,7 +1708,7 @@ export declare function processDeploySnapshot({ workspaceId, sharedInfraId, shar
1647
1708
  /**
1648
1709
  * Runs an orchestration in a workspace.
1649
1710
  */
1650
- export declare function startRun({ accountId, workspaceId, startRunRequest }: {
1711
+ export declare function managerRunControllerstartRun({ accountId, workspaceId, startRunRequest }: {
1651
1712
  accountId: string;
1652
1713
  workspaceId: string;
1653
1714
  startRunRequest: StartRunRequest;
@@ -1655,49 +1716,49 @@ export declare function startRun({ accountId, workspaceId, startRunRequest }: {
1655
1716
  /**
1656
1717
  * Get all workspace links
1657
1718
  */
1658
- export declare function getWorkspaceLinks({ workspaceId, name }: {
1719
+ export declare function workspaceLinkControllergetWorkspaceLinks({ workspaceId, name }: {
1659
1720
  workspaceId: string;
1660
1721
  name?: string;
1661
1722
  }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceLinkReadResponse[]>;
1662
1723
  /**
1663
1724
  * Create workspace
1664
1725
  */
1665
- export declare function save4({ workspaceId, createWorkspaceLinkRequest }: {
1726
+ export declare function workspaceLinkControllersave({ workspaceId, createWorkspaceLinkRequest }: {
1666
1727
  workspaceId: string;
1667
1728
  createWorkspaceLinkRequest: CreateWorkspaceLinkRequest;
1668
1729
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
1669
1730
  /**
1670
1731
  * Get all workspace embedded links
1671
1732
  */
1672
- export declare function getEmbeddedLinks({ workspaceId, name }: {
1733
+ export declare function workspaceEmbeddedLinkControllergetEmbeddedLinks({ workspaceId, name }: {
1673
1734
  workspaceId: string;
1674
1735
  name?: string;
1675
1736
  }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceEmbeddedLinkReadResponse[]>;
1676
1737
  /**
1677
1738
  * Create workspace embedded link
1678
1739
  */
1679
- export declare function save5({ workspaceId, createWorkspaceEmbeddedLinkRequest }: {
1740
+ export declare function workspaceEmbeddedLinkControllersave({ workspaceId, createWorkspaceEmbeddedLinkRequest }: {
1680
1741
  workspaceId: string;
1681
1742
  createWorkspaceEmbeddedLinkRequest: CreateWorkspaceEmbeddedLinkRequest;
1682
1743
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
1683
1744
  /**
1684
1745
  * List all connection interfaces of a workspace.
1685
1746
  */
1686
- export declare function getConnectionInterfaces({ workspaceId, typeId }: {
1747
+ export declare function connectionInterfaceControllergetConnectionInterfaces({ workspaceId, typeId }: {
1687
1748
  workspaceId: string;
1688
1749
  typeId?: string;
1689
1750
  }, opts?: Oazapfts.RequestOpts): Promise<ConnectionInterfaceSummaryResponse[]>;
1690
1751
  /**
1691
1752
  * Create a connection interface in a workspace.
1692
1753
  */
1693
- export declare function add({ workspaceId, createConnectionInterfaceRequest }: {
1754
+ export declare function connectionInterfaceControlleradd({ workspaceId, createConnectionInterfaceRequest }: {
1694
1755
  workspaceId: string;
1695
1756
  createConnectionInterfaceRequest: CreateConnectionInterfaceRequest;
1696
1757
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
1697
1758
  /**
1698
1759
  * Update the visibility of a connection interface.
1699
1760
  */
1700
- export declare function updateConnectionInterfaceVisibility({ workspaceId, connectionInterfaceId, updateConnectionInterfaceVisibilityRequest }: {
1761
+ export declare function connectionInterfaceControllerupdateConnectionInterfaceVisibility({ workspaceId, connectionInterfaceId, updateConnectionInterfaceVisibilityRequest }: {
1701
1762
  workspaceId: string;
1702
1763
  connectionInterfaceId: string;
1703
1764
  updateConnectionInterfaceVisibilityRequest: UpdateConnectionInterfaceVisibilityRequest;
@@ -1705,7 +1766,7 @@ export declare function updateConnectionInterfaceVisibility({ workspaceId, conne
1705
1766
  /**
1706
1767
  * Get all application of a workspace.
1707
1768
  */
1708
- export declare function getApplications({ workspaceId, name, stackVersionId }: {
1769
+ export declare function applicationControllergetApplications({ workspaceId, name, stackVersionId }: {
1709
1770
  workspaceId: string;
1710
1771
  name?: string;
1711
1772
  stackVersionId?: string;
@@ -1713,7 +1774,7 @@ export declare function getApplications({ workspaceId, name, stackVersionId }: {
1713
1774
  /**
1714
1775
  * Create application on workspace.
1715
1776
  */
1716
- export declare function save6({ workspaceId, fromPortal, createApplicationRequest }: {
1777
+ export declare function applicationControllersave({ workspaceId, fromPortal, createApplicationRequest }: {
1717
1778
  workspaceId: string;
1718
1779
  fromPortal?: boolean;
1719
1780
  createApplicationRequest: CreateApplicationRequest;
@@ -1721,14 +1782,14 @@ export declare function save6({ workspaceId, fromPortal, createApplicationReques
1721
1782
  /**
1722
1783
  * Get application of a workspace.
1723
1784
  */
1724
- export declare function getApplication({ workspaceId, applicationId }: {
1785
+ export declare function applicationControllergetApplication({ workspaceId, applicationId }: {
1725
1786
  workspaceId: string;
1726
1787
  applicationId: string;
1727
1788
  }, opts?: Oazapfts.RequestOpts): Promise<ApplicationReadResponse>;
1728
1789
  /**
1729
1790
  * Recreate an application in a workspace.
1730
1791
  */
1731
- export declare function recreate1({ workspaceId, applicationId, recreateApplicationRequest }: {
1792
+ export declare function applicationControllerrecreate({ workspaceId, applicationId, recreateApplicationRequest }: {
1732
1793
  workspaceId: string;
1733
1794
  applicationId: string;
1734
1795
  recreateApplicationRequest: RecreateApplicationRequest;
@@ -1736,7 +1797,7 @@ export declare function recreate1({ workspaceId, applicationId, recreateApplicat
1736
1797
  /**
1737
1798
  * Delete application of a workspace.
1738
1799
  */
1739
- export declare function deleteApplication({ workspaceId, applicationId, accountId }: {
1800
+ export declare function applicationControllerdeleteApplication({ workspaceId, applicationId, accountId }: {
1740
1801
  workspaceId: string;
1741
1802
  applicationId: string;
1742
1803
  accountId?: string;
@@ -1744,7 +1805,7 @@ export declare function deleteApplication({ workspaceId, applicationId, accountI
1744
1805
  /**
1745
1806
  * Update an application of a workspace.
1746
1807
  */
1747
- export declare function update6({ workspaceId, applicationId, updateApplicationRequest }: {
1808
+ export declare function applicationControllerupdate({ workspaceId, applicationId, updateApplicationRequest }: {
1748
1809
  workspaceId: string;
1749
1810
  applicationId: string;
1750
1811
  updateApplicationRequest: UpdateApplicationRequest;
@@ -1752,7 +1813,7 @@ export declare function update6({ workspaceId, applicationId, updateApplicationR
1752
1813
  /**
1753
1814
  * Get all application links
1754
1815
  */
1755
- export declare function getApplicationLinks({ workspaceId, applicationId, name }: {
1816
+ export declare function applicationLinkControllergetApplicationLinks({ workspaceId, applicationId, name }: {
1756
1817
  workspaceId: string;
1757
1818
  applicationId: string;
1758
1819
  name?: string;
@@ -1760,7 +1821,7 @@ export declare function getApplicationLinks({ workspaceId, applicationId, name }
1760
1821
  /**
1761
1822
  * Create application link
1762
1823
  */
1763
- export declare function save7({ workspaceId, applicationId, createApplicationLinkRequest }: {
1824
+ export declare function applicationLinkControllersave({ workspaceId, applicationId, createApplicationLinkRequest }: {
1764
1825
  workspaceId: string;
1765
1826
  applicationId: string;
1766
1827
  createApplicationLinkRequest: CreateApplicationLinkRequest;
@@ -1768,26 +1829,26 @@ export declare function save7({ workspaceId, applicationId, createApplicationLin
1768
1829
  /**
1769
1830
  * Has active deploy with type self hosted?
1770
1831
  */
1771
- export declare function hasActiveDeployWithTypeSelfHosted1({ workspaceId, applicationId }: {
1832
+ export declare function applicationControllerhasActiveDeployWithTypeSelfHosted({ workspaceId, applicationId }: {
1772
1833
  workspaceId: string;
1773
1834
  applicationId: string;
1774
1835
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1775
1836
  /**
1776
1837
  * Can the application be destroyed?
1777
1838
  */
1778
- export declare function canBeDestroyed1({ workspaceId, applicationId, environmentId, accountId }: {
1839
+ export declare function applicationControllercanBeDestroyed({ workspaceId, applicationId, environmentId, accountId }: {
1779
1840
  workspaceId: string;
1780
1841
  applicationId: string;
1781
1842
  environmentId: string;
1782
1843
  accountId: string;
1783
1844
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1784
- export declare function registryAppDestroy({ workspaceId, applicationId, environmentId, applicationDestroyRequest }: {
1845
+ export declare function applicationControllerregistryAppDestroy({ workspaceId, applicationId, environmentId, applicationDestroyRequest }: {
1785
1846
  workspaceId: string;
1786
1847
  applicationId: string;
1787
1848
  environmentId: string;
1788
1849
  applicationDestroyRequest: ApplicationDestroyRequest;
1789
1850
  }, opts?: Oazapfts.RequestOpts): Promise<never>;
1790
- export declare function registryAppDeploy({ workspaceId, applicationId, environmentId, applicationDeployRequest }: {
1851
+ export declare function applicationControllerregistryAppDeploy({ workspaceId, applicationId, environmentId, applicationDeployRequest }: {
1791
1852
  workspaceId: string;
1792
1853
  applicationId: string;
1793
1854
  environmentId: string;
@@ -1796,7 +1857,7 @@ export declare function registryAppDeploy({ workspaceId, applicationId, environm
1796
1857
  /**
1797
1858
  * Get all application embedded links
1798
1859
  */
1799
- export declare function getEmbeddedLinks1({ workspaceId, applicationId, name }: {
1860
+ export declare function applicationEmbeddedLinkControllergetEmbeddedLinks({ workspaceId, applicationId, name }: {
1800
1861
  workspaceId: string;
1801
1862
  applicationId: string;
1802
1863
  name?: string;
@@ -1804,7 +1865,7 @@ export declare function getEmbeddedLinks1({ workspaceId, applicationId, name }:
1804
1865
  /**
1805
1866
  * Create application embedded link
1806
1867
  */
1807
- export declare function save8({ workspaceId, applicationId, createApplicationEmbeddedLinkRequest }: {
1868
+ export declare function applicationEmbeddedLinkControllersave({ workspaceId, applicationId, createApplicationEmbeddedLinkRequest }: {
1808
1869
  workspaceId: string;
1809
1870
  applicationId: string;
1810
1871
  createApplicationEmbeddedLinkRequest: CreateApplicationEmbeddedLinkRequest;
@@ -1812,7 +1873,7 @@ export declare function save8({ workspaceId, applicationId, createApplicationEmb
1812
1873
  /**
1813
1874
  * Register the snapshot of an application's deploy.
1814
1875
  */
1815
- export declare function processDeploySnapshot1({ workspaceId, applicationId, applicationDeploySnapshotRequest }: {
1876
+ export declare function applicationControllerprocessDeploySnapshot({ workspaceId, applicationId, applicationDeploySnapshotRequest }: {
1816
1877
  workspaceId: string;
1817
1878
  applicationId: string;
1818
1879
  applicationDeploySnapshotRequest: ApplicationDeploySnapshotRequest;
@@ -1820,78 +1881,95 @@ export declare function processDeploySnapshot1({ workspaceId, applicationId, app
1820
1881
  /**
1821
1882
  * List all workspaces usage by stack version list.
1822
1883
  */
1823
- export declare function listAllStackUsage({ accountId, body }: {
1884
+ export declare function usageInsightsControllerlistAllStackUsage({ accountId, body }: {
1824
1885
  accountId: string;
1825
1886
  body: string[];
1826
1887
  }, opts?: Oazapfts.RequestOpts): Promise<StackUsageByWorkspaceResponse[]>;
1827
1888
  /**
1828
1889
  * Retrieve the amount of apps and shared infras that use the given plugin version id list
1829
1890
  */
1830
- export declare function findPluginUsageAmount({ accountId, body }: {
1891
+ export declare function usageInsightsControllerfindPluginUsageAmount({ accountId, body }: {
1831
1892
  accountId: string;
1832
1893
  body: string[];
1833
1894
  }, opts?: Oazapfts.RequestOpts): Promise<PluginUsageAmountConsolidatedResponse>;
1834
1895
  /**
1835
1896
  * Get environments
1836
1897
  */
1837
- export declare function getEnvironments({ accountId }: {
1898
+ export declare function environmentControllergetEnvironments({ accountId }: {
1838
1899
  accountId?: string;
1839
1900
  }, opts?: Oazapfts.RequestOpts): Promise<EnvironmentReadResponse[]>;
1840
1901
  /**
1841
1902
  * Save environment
1842
1903
  */
1843
- export declare function save9({ environmentSaveRequest }: {
1904
+ export declare function environmentControllersave({ environmentSaveRequest }: {
1844
1905
  environmentSaveRequest: EnvironmentSaveRequest;
1845
1906
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
1846
1907
  /**
1847
1908
  * Batch save environment
1848
1909
  */
1849
- export declare function saveBatch({ accountId, body }: {
1910
+ export declare function environmentControllersaveBatch({ accountId, body }: {
1850
1911
  accountId?: string;
1851
1912
  body: EnvironmentSaveRequest[];
1852
1913
  }, opts?: Oazapfts.RequestOpts): Promise<EnvironmentReadBatchResponse[]>;
1853
1914
  /**
1854
1915
  * List all workflows of an account.
1855
1916
  */
1856
- export declare function listAccountWorkflows({ $type, name }: {
1917
+ export declare function workflowAccountControllerlistAccountWorkflows({ $type, name }: {
1857
1918
  $type?: "CREATE_API" | "CREATE_APP" | "CREATE_INFRA";
1858
1919
  name?: string;
1859
1920
  }, opts?: Oazapfts.RequestOpts): Promise<WorkflowResponse[]>;
1860
1921
  /**
1861
1922
  * Create an account workflow
1862
1923
  */
1863
- export declare function saveAccountWorkflow({ accountWorkflowCreateRequest }: {
1924
+ export declare function workflowAccountControllersaveAccountWorkflow({ accountWorkflowCreateRequest }: {
1864
1925
  accountWorkflowCreateRequest: AccountWorkflowCreateRequest;
1865
1926
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
1927
+ /**
1928
+ * Find all account variables
1929
+ */
1930
+ export declare function accountVariableControllerfindAll({ accountId, name, page, size, sortBy, sortDir }: {
1931
+ accountId?: string;
1932
+ name?: string;
1933
+ page?: number;
1934
+ size?: number;
1935
+ sortBy?: "NAME" | "VALUE" | "CREATED_AT";
1936
+ sortDir?: "ASC" | "DESC";
1937
+ }, opts?: Oazapfts.RequestOpts): Promise<PaginatedAccountVariableResponse>;
1938
+ /**
1939
+ * Create account variable
1940
+ */
1941
+ export declare function accountVariableControllercreate({ createAccountVariableRequest }: {
1942
+ createAccountVariableRequest: CreateAccountVariableRequest;
1943
+ }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1866
1944
  /**
1867
1945
  * List all stacks with context for given account and given stackVersionId list.
1868
1946
  */
1869
- export declare function listStackVersionsWithAccountContext({ body }: {
1947
+ export declare function contextControllerlistStackVersionsWithAccountContext({ body }: {
1870
1948
  body: string[];
1871
1949
  }, opts?: Oazapfts.RequestOpts): Promise<AccountStackContextResponse>;
1872
1950
  /**
1873
1951
  * Get workspace by id
1874
1952
  */
1875
- export declare function getWorkspaceForId({ workspaceId }: {
1953
+ export declare function workspaceControllergetWorkspaceForId({ workspaceId }: {
1876
1954
  workspaceId: string;
1877
1955
  }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceReadResponse>;
1878
1956
  /**
1879
1957
  * Delete workspace.
1880
1958
  */
1881
- export declare function deleteV1WorkspacesByWorkspaceId({ workspaceId }: {
1959
+ export declare function workspaceControllerdelete({ workspaceId }: {
1882
1960
  workspaceId: string;
1883
1961
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1884
1962
  /**
1885
1963
  * Update workspace
1886
1964
  */
1887
- export declare function update1({ workspaceId, updateWorkspaceRequest }: {
1965
+ export declare function workspaceControllerupdate({ workspaceId, updateWorkspaceRequest }: {
1888
1966
  workspaceId: string;
1889
1967
  updateWorkspaceRequest: UpdateWorkspaceRequest;
1890
1968
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
1891
1969
  /**
1892
1970
  * Get shared infra links by id
1893
1971
  */
1894
- export declare function getSharedInfraLink({ workspaceId, sharedInfraId, linkId }: {
1972
+ export declare function sharedInfraLinkControllergetSharedInfraLink({ workspaceId, sharedInfraId, linkId }: {
1895
1973
  workspaceId: string;
1896
1974
  sharedInfraId: string;
1897
1975
  linkId: string;
@@ -1899,7 +1977,7 @@ export declare function getSharedInfraLink({ workspaceId, sharedInfraId, linkId
1899
1977
  /**
1900
1978
  * Delete shared infra links
1901
1979
  */
1902
- export declare function delete2({ workspaceId, sharedInfraId, linkId }: {
1980
+ export declare function sharedInfraLinkControllerdelete({ workspaceId, sharedInfraId, linkId }: {
1903
1981
  workspaceId: string;
1904
1982
  sharedInfraId: string;
1905
1983
  linkId: string;
@@ -1907,7 +1985,7 @@ export declare function delete2({ workspaceId, sharedInfraId, linkId }: {
1907
1985
  /**
1908
1986
  * Update shared infra links
1909
1987
  */
1910
- export declare function update3({ workspaceId, sharedInfraId, linkId, updateSharedInfraLinkRequest }: {
1988
+ export declare function sharedInfraLinkControllerupdate({ workspaceId, sharedInfraId, linkId, updateSharedInfraLinkRequest }: {
1911
1989
  workspaceId: string;
1912
1990
  sharedInfraId: string;
1913
1991
  linkId: string;
@@ -1916,21 +1994,21 @@ export declare function update3({ workspaceId, sharedInfraId, linkId, updateShar
1916
1994
  /**
1917
1995
  * Get workspace link by id
1918
1996
  */
1919
- export declare function getWorkspaceLink({ workspaceId, linkId }: {
1997
+ export declare function workspaceLinkControllergetWorkspaceLink({ workspaceId, linkId }: {
1920
1998
  workspaceId: string;
1921
1999
  linkId: string;
1922
2000
  }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceLinkReadResponse>;
1923
2001
  /**
1924
2002
  * Delete workspace links
1925
2003
  */
1926
- export declare function delete3({ workspaceId, linkId }: {
2004
+ export declare function workspaceLinkControllerdelete({ workspaceId, linkId }: {
1927
2005
  workspaceId: string;
1928
2006
  linkId: string;
1929
2007
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1930
2008
  /**
1931
2009
  * Update workspace links
1932
2010
  */
1933
- export declare function update4({ workspaceId, linkId, updateWorkspaceLinkRequest }: {
2011
+ export declare function workspaceLinkControllerupdate({ workspaceId, linkId, updateWorkspaceLinkRequest }: {
1934
2012
  workspaceId: string;
1935
2013
  linkId: string;
1936
2014
  updateWorkspaceLinkRequest: UpdateWorkspaceLinkRequest;
@@ -1938,21 +2016,21 @@ export declare function update4({ workspaceId, linkId, updateWorkspaceLinkReques
1938
2016
  /**
1939
2017
  * Get workspace embedded link by id
1940
2018
  */
1941
- export declare function getEmbeddedLink({ workspaceId, embeddedLinkId }: {
2019
+ export declare function workspaceEmbeddedLinkControllergetEmbeddedLink({ workspaceId, embeddedLinkId }: {
1942
2020
  workspaceId: string;
1943
2021
  embeddedLinkId: string;
1944
2022
  }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceEmbeddedLinkReadResponse>;
1945
2023
  /**
1946
2024
  * Delete workspace embedded link
1947
2025
  */
1948
- export declare function delete4({ workspaceId, embeddedLinkId }: {
2026
+ export declare function workspaceEmbeddedLinkControllerdelete({ workspaceId, embeddedLinkId }: {
1949
2027
  workspaceId: string;
1950
2028
  embeddedLinkId: string;
1951
2029
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1952
2030
  /**
1953
2031
  * Update workspace embedded link
1954
2032
  */
1955
- export declare function update5({ workspaceId, embeddedLinkId, updateWorkspaceEmbeddedLinkRequest }: {
2033
+ export declare function workspaceEmbeddedLinkControllerupdate({ workspaceId, embeddedLinkId, updateWorkspaceEmbeddedLinkRequest }: {
1956
2034
  workspaceId: string;
1957
2035
  embeddedLinkId: string;
1958
2036
  updateWorkspaceEmbeddedLinkRequest: UpdateWorkspaceEmbeddedLinkRequest;
@@ -1960,14 +2038,14 @@ export declare function update5({ workspaceId, embeddedLinkId, updateWorkspaceEm
1960
2038
  /**
1961
2039
  * Upsert workspace embedded link
1962
2040
  */
1963
- export declare function upsertBatch1({ workspaceId, body }: {
2041
+ export declare function workspaceEmbeddedLinkControllerupsertBatch({ workspaceId, body }: {
1964
2042
  workspaceId: string;
1965
2043
  body: UpsertWorkspaceEmbeddedLinkRequest[];
1966
2044
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
1967
2045
  /**
1968
2046
  * Get application link by id
1969
2047
  */
1970
- export declare function getApplicationLink({ workspaceId, applicationId, linkId }: {
2048
+ export declare function applicationLinkControllergetApplicationLink({ workspaceId, applicationId, linkId }: {
1971
2049
  workspaceId: string;
1972
2050
  applicationId: string;
1973
2051
  linkId: string;
@@ -1975,7 +2053,7 @@ export declare function getApplicationLink({ workspaceId, applicationId, linkId
1975
2053
  /**
1976
2054
  * Delete workspace links
1977
2055
  */
1978
- export declare function delete5({ workspaceId, applicationId, linkId }: {
2056
+ export declare function applicationLinkControllerdelete({ workspaceId, applicationId, linkId }: {
1979
2057
  workspaceId: string;
1980
2058
  applicationId: string;
1981
2059
  linkId: string;
@@ -1983,7 +2061,7 @@ export declare function delete5({ workspaceId, applicationId, linkId }: {
1983
2061
  /**
1984
2062
  * Update application links
1985
2063
  */
1986
- export declare function update7({ workspaceId, applicationId, linkId, updateApplicationLinkRequest }: {
2064
+ export declare function applicationLinkControllerupdate({ workspaceId, applicationId, linkId, updateApplicationLinkRequest }: {
1987
2065
  workspaceId: string;
1988
2066
  applicationId: string;
1989
2067
  linkId: string;
@@ -1992,7 +2070,7 @@ export declare function update7({ workspaceId, applicationId, linkId, updateAppl
1992
2070
  /**
1993
2071
  * Get application embedded link by id
1994
2072
  */
1995
- export declare function getEmbeddedLink1({ workspaceId, applicationId, embeddedLinkId }: {
2073
+ export declare function applicationEmbeddedLinkControllergetEmbeddedLink({ workspaceId, applicationId, embeddedLinkId }: {
1996
2074
  workspaceId: string;
1997
2075
  applicationId: string;
1998
2076
  embeddedLinkId: string;
@@ -2000,7 +2078,7 @@ export declare function getEmbeddedLink1({ workspaceId, applicationId, embeddedL
2000
2078
  /**
2001
2079
  * Delete application embedded link
2002
2080
  */
2003
- export declare function delete6({ workspaceId, applicationId, embeddedLinkId }: {
2081
+ export declare function applicationEmbeddedLinkControllerdelete({ workspaceId, applicationId, embeddedLinkId }: {
2004
2082
  workspaceId: string;
2005
2083
  applicationId: string;
2006
2084
  embeddedLinkId: string;
@@ -2008,7 +2086,7 @@ export declare function delete6({ workspaceId, applicationId, embeddedLinkId }:
2008
2086
  /**
2009
2087
  * Update application embedded link
2010
2088
  */
2011
- export declare function update8({ workspaceId, applicationId, embeddedLinkId, updateApplicationEmbeddedLinkRequest }: {
2089
+ export declare function applicationEmbeddedLinkControllerupdate({ workspaceId, applicationId, embeddedLinkId, updateApplicationEmbeddedLinkRequest }: {
2012
2090
  workspaceId: string;
2013
2091
  applicationId: string;
2014
2092
  embeddedLinkId: string;
@@ -2017,7 +2095,7 @@ export declare function update8({ workspaceId, applicationId, embeddedLinkId, up
2017
2095
  /**
2018
2096
  * Upsert application embedded link
2019
2097
  */
2020
- export declare function upsertBatch2({ workspaceId, applicationId, body }: {
2098
+ export declare function applicationEmbeddedLinkControllerupsertBatch({ workspaceId, applicationId, body }: {
2021
2099
  workspaceId: string;
2022
2100
  applicationId: string;
2023
2101
  body: UpsertApplicationEmbeddedLinkRequest[];
@@ -2025,27 +2103,41 @@ export declare function upsertBatch2({ workspaceId, applicationId, body }: {
2025
2103
  /**
2026
2104
  * Archive application from a workspace.
2027
2105
  */
2028
- export declare function archiveApplication({ workspaceId, applicationId }: {
2106
+ export declare function applicationControllerarchiveApplication({ workspaceId, applicationId }: {
2029
2107
  workspaceId: string;
2030
2108
  applicationId: string;
2031
2109
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
2032
2110
  /**
2033
2111
  * Get environment by id
2034
2112
  */
2035
- export declare function getEnvironment({ id }: {
2113
+ export declare function environmentControllergetEnvironment({ id }: {
2036
2114
  id: string;
2037
2115
  }, opts?: Oazapfts.RequestOpts): Promise<EnvironmentReadResponse>;
2038
2116
  /**
2039
2117
  * Update environment
2040
2118
  */
2041
- export declare function update9({ id, environmentUpdateRequest }: {
2119
+ export declare function environmentControllerupdate({ id, environmentUpdateRequest }: {
2042
2120
  id: string;
2043
2121
  environmentUpdateRequest: EnvironmentUpdateRequest;
2044
2122
  }, opts?: Oazapfts.RequestOpts): Promise<IdResponse>;
2123
+ /**
2124
+ * Find all workspace variables
2125
+ */
2126
+ export declare function workspaceVariableV2ControllerfindAll({ workspaceId, accountId, page, size, sortBy, sortDir, mandate, name, showEmptyValues }: {
2127
+ workspaceId: string;
2128
+ accountId?: string;
2129
+ page?: number;
2130
+ size?: number;
2131
+ sortBy?: "NAME" | "VALUE" | "CREATED_AT";
2132
+ sortDir?: "ASC" | "DESC";
2133
+ mandate?: boolean;
2134
+ name?: string;
2135
+ showEmptyValues?: boolean;
2136
+ }, opts?: Oazapfts.RequestOpts): Promise<PaginatedWorkspaceVariableResponse>;
2045
2137
  /**
2046
2138
  * Get plugins applied to a workspace's shared infrastructure.
2047
2139
  */
2048
- export declare function getAppliedPlugins({ workspaceId, sharedInfraId, environmentId }: {
2140
+ export declare function sharedInfrastructureV2ControllergetAppliedPlugins({ workspaceId, sharedInfraId, environmentId }: {
2049
2141
  workspaceId: string;
2050
2142
  sharedInfraId: string;
2051
2143
  environmentId: string;
@@ -2053,7 +2145,7 @@ export declare function getAppliedPlugins({ workspaceId, sharedInfraId, environm
2053
2145
  /**
2054
2146
  * List all available connection interfaces for a workspace.
2055
2147
  */
2056
- export declare function getAvailableConnectionInterfacesForAWorkspace({ workspaceId, typeId, automaticallyGenerated }: {
2148
+ export declare function availableConnectionInterfaceV2ControllergetAvailableConnectionInterfacesForAWorkspace({ workspaceId, typeId, automaticallyGenerated }: {
2057
2149
  workspaceId: string;
2058
2150
  typeId?: string;
2059
2151
  automaticallyGenerated?: boolean;
@@ -2061,7 +2153,7 @@ export declare function getAvailableConnectionInterfacesForAWorkspace({ workspac
2061
2153
  /**
2062
2154
  * Get available connection interface for a workspace by its slug.
2063
2155
  */
2064
- export declare function getAvailableConnectionInterfaceForAWorkspace({ workspaceId, slug, environmentId, accountId }: {
2156
+ export declare function availableConnectionInterfaceV2ControllergetAvailableConnectionInterfaceForAWorkspace({ workspaceId, slug, environmentId, accountId }: {
2065
2157
  workspaceId: string;
2066
2158
  slug: string;
2067
2159
  environmentId?: string;
@@ -2070,7 +2162,7 @@ export declare function getAvailableConnectionInterfaceForAWorkspace({ workspace
2070
2162
  /**
2071
2163
  * Get plugins applied to a workspace's application.
2072
2164
  */
2073
- export declare function getAppliedPlugins1({ workspaceId, applicationId, environmentId }: {
2165
+ export declare function applicationV2ControllergetAppliedPlugins({ workspaceId, applicationId, environmentId }: {
2074
2166
  workspaceId: string;
2075
2167
  applicationId: string;
2076
2168
  environmentId: string;
@@ -2078,7 +2170,7 @@ export declare function getAppliedPlugins1({ workspaceId, applicationId, environ
2078
2170
  /**
2079
2171
  * List all available connection interfaces for an application.
2080
2172
  */
2081
- export declare function getAvailableConnectionInterfacesForAnApplication({ applicationId, typeId, automaticallyGenerated }: {
2173
+ export declare function availableConnectionInterfaceV2ControllergetAvailableConnectionInterfacesForAnApplication({ applicationId, typeId, automaticallyGenerated }: {
2082
2174
  applicationId: string;
2083
2175
  typeId?: string;
2084
2176
  automaticallyGenerated?: boolean;
@@ -2086,7 +2178,7 @@ export declare function getAvailableConnectionInterfacesForAnApplication({ appli
2086
2178
  /**
2087
2179
  * Get available connection interface for an application by its slug.
2088
2180
  */
2089
- export declare function getAvailableConnectionInterfaceForAnApplication({ applicationId, slug, environmentId }: {
2181
+ export declare function availableConnectionInterfaceV2ControllergetAvailableConnectionInterfaceForAnApplication({ applicationId, slug, environmentId }: {
2090
2182
  applicationId: string;
2091
2183
  slug: string;
2092
2184
  environmentId?: string;
@@ -2094,7 +2186,7 @@ export declare function getAvailableConnectionInterfaceForAnApplication({ applic
2094
2186
  /**
2095
2187
  * Get connection interface in use by applicationId or sharedInfraId.
2096
2188
  */
2097
- export declare function getConnectionInterfaceInUseTargetId({ workspaceId, targetId, targetType, slug, accountId, environmentId }: {
2189
+ export declare function connectionInterfaceInUseControllergetConnectionInterfaceInUseTargetId({ workspaceId, targetId, targetType, slug, accountId, environmentId }: {
2098
2190
  workspaceId: string;
2099
2191
  targetId: string;
2100
2192
  targetType: "applications" | "shared_infra";
@@ -2102,24 +2194,31 @@ export declare function getConnectionInterfaceInUseTargetId({ workspaceId, targe
2102
2194
  accountId: string;
2103
2195
  environmentId?: string;
2104
2196
  }, opts?: Oazapfts.RequestOpts): Promise<ConnectionInterfaceInUseByTargetIdDetailsResponse[]>;
2197
+ /**
2198
+ * Get all workspace's variables v1
2199
+ */
2200
+ export declare function workspaceVariableV1ControllerfindAll({ workspaceId, filter }: {
2201
+ workspaceId: string;
2202
+ filter?: string;
2203
+ }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceVariableReadV1Response[]>;
2105
2204
  /**
2106
2205
  * Get stack in a workspace by stack version id.
2107
2206
  */
2108
- export declare function getStackById({ workspaceId, stackVersionId }: {
2207
+ export declare function workspaceStackControllergetStackById({ workspaceId, stackVersionId }: {
2109
2208
  workspaceId: string;
2110
2209
  stackVersionId: string;
2111
2210
  }, opts?: Oazapfts.RequestOpts): Promise<StackInWorkspaceReadResponse>;
2112
2211
  /**
2113
2212
  * Delete a stack from a workspace.
2114
2213
  */
2115
- export declare function deleteStack({ workspaceId, stackVersionId }: {
2214
+ export declare function workspaceStackControllerdeleteStack({ workspaceId, stackVersionId }: {
2116
2215
  workspaceId: string;
2117
2216
  stackVersionId: string;
2118
2217
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
2119
2218
  /**
2120
2219
  * List the consolidated input context of all stack elements for given type in a workspace.
2121
2220
  */
2122
- export declare function listConsolidatedContext({ workspaceId, stackVersionId, $type, environmentId, externalId }: {
2221
+ export declare function contextControllerlistConsolidatedContext({ workspaceId, stackVersionId, $type, environmentId, externalId }: {
2123
2222
  workspaceId: string;
2124
2223
  stackVersionId: string;
2125
2224
  $type: "plugin" | "action";
@@ -2129,7 +2228,7 @@ export declare function listConsolidatedContext({ workspaceId, stackVersionId, $
2129
2228
  /**
2130
2229
  * Get workflow settings with context by stack and workflowType
2131
2230
  */
2132
- export declare function listWorkflowByStackIdAndWorkflowType({ workspaceId, stackId, workflowType }: {
2231
+ export declare function workflowWorkspaceControllerlistWorkflowByStackIdAndWorkflowType({ workspaceId, stackId, workflowType }: {
2133
2232
  workspaceId: string;
2134
2233
  stackId: string;
2135
2234
  workflowType: "CREATE_API" | "CREATE_APP" | "CREATE_INFRA";
@@ -2137,7 +2236,7 @@ export declare function listWorkflowByStackIdAndWorkflowType({ workspaceId, stac
2137
2236
  /**
2138
2237
  * Get plugins applied to a workspace's shared infrastructure.
2139
2238
  */
2140
- export declare function getAppliedPlugins2({ workspaceId, sharedInfraId, environmentId, $type }: {
2239
+ export declare function sharedInfrastructureControllergetAppliedPlugins({ workspaceId, sharedInfraId, environmentId, $type }: {
2141
2240
  workspaceId: string;
2142
2241
  sharedInfraId: string;
2143
2242
  environmentId: string;
@@ -2146,7 +2245,7 @@ export declare function getAppliedPlugins2({ workspaceId, sharedInfraId, environ
2146
2245
  /**
2147
2246
  * List shared infrastructure's activities.
2148
2247
  */
2149
- export declare function listActivities({ workspaceId, sharedInfraId, environmentId, $type, page, size }: {
2248
+ export declare function sharedInfrastructureControllerlistActivities({ workspaceId, sharedInfraId, environmentId, $type, page, size }: {
2150
2249
  workspaceId: string;
2151
2250
  sharedInfraId: string;
2152
2251
  environmentId: string;
@@ -2157,14 +2256,14 @@ export declare function listActivities({ workspaceId, sharedInfraId, environment
2157
2256
  /**
2158
2257
  * Get all in use connection interface dependencies from the shared infra.
2159
2258
  */
2160
- export declare function getDependencyTree({ workspaceId, sharedInfraId }: {
2259
+ export declare function sharedInfrastructureControllergetDependencyTree({ workspaceId, sharedInfraId }: {
2161
2260
  workspaceId: string;
2162
2261
  sharedInfraId: string;
2163
2262
  }, opts?: Oazapfts.RequestOpts): Promise<AppAndInfraDependencyResponse>;
2164
2263
  /**
2165
2264
  * Get a connection interface by connection interface id.
2166
2265
  */
2167
- export declare function getConnectionInterface({ workspaceId, connectionInterfaceId, environmentId }: {
2266
+ export declare function connectionInterfaceControllergetConnectionInterface({ workspaceId, connectionInterfaceId, environmentId }: {
2168
2267
  workspaceId: string;
2169
2268
  connectionInterfaceId: string;
2170
2269
  environmentId?: string;
@@ -2172,14 +2271,14 @@ export declare function getConnectionInterface({ workspaceId, connectionInterfac
2172
2271
  /**
2173
2272
  * Get all connection interface in use.
2174
2273
  */
2175
- export declare function getAllConnectionInterfaceInUse({ workspaceId, accountId }: {
2274
+ export declare function connectionInterfaceInUseControllergetAllConnectionInterfaceInUse({ workspaceId, accountId }: {
2176
2275
  workspaceId: string;
2177
2276
  accountId?: string;
2178
2277
  }, opts?: Oazapfts.RequestOpts): Promise<ConnectionInterfaceInUseDetailsResponse[]>;
2179
2278
  /**
2180
2279
  * Get connection interface in use by slug.
2181
2280
  */
2182
- export declare function getConnectionInterfaceInUseBySlug({ workspaceId, slug, accountId }: {
2281
+ export declare function connectionInterfaceInUseControllergetConnectionInterfaceInUseBySlug({ workspaceId, slug, accountId }: {
2183
2282
  workspaceId: string;
2184
2283
  slug: string;
2185
2284
  accountId?: string;
@@ -2187,14 +2286,14 @@ export declare function getConnectionInterfaceInUseBySlug({ workspaceId, slug, a
2187
2286
  /**
2188
2287
  * List all available connection interfaces for a workspace.
2189
2288
  */
2190
- export declare function getAvailableConnectionInterfacesForAWorkspace1({ workspaceId, typeId }: {
2289
+ export declare function availableConnectionInterfaceControllergetAvailableConnectionInterfacesForAWorkspace({ workspaceId, typeId }: {
2191
2290
  workspaceId: string;
2192
2291
  typeId?: string;
2193
2292
  }, opts?: Oazapfts.RequestOpts): Promise<ConnectionInterfaceSummaryResponse[]>;
2194
2293
  /**
2195
2294
  * Get available connection interface for a workspace by its id.
2196
2295
  */
2197
- export declare function getAvailableConnectionInterfaceForAWorkspace1({ workspaceId, connectionInterfaceId, environmentId }: {
2296
+ export declare function availableConnectionInterfaceControllergetAvailableConnectionInterfaceForAWorkspace({ workspaceId, connectionInterfaceId, environmentId }: {
2198
2297
  workspaceId: string;
2199
2298
  connectionInterfaceId: string;
2200
2299
  environmentId?: string;
@@ -2202,13 +2301,13 @@ export declare function getAvailableConnectionInterfaceForAWorkspace1({ workspac
2202
2301
  /**
2203
2302
  * Get plugins applied to a workspace's application.
2204
2303
  */
2205
- export declare function getAppliedPlugins3({ workspaceId, applicationId, environmentId, $type }: {
2304
+ export declare function applicationControllergetAppliedPlugins({ workspaceId, applicationId, environmentId, $type }: {
2206
2305
  workspaceId: string;
2207
2306
  applicationId: string;
2208
2307
  environmentId: string;
2209
2308
  $type?: string;
2210
2309
  }, opts?: Oazapfts.RequestOpts): Promise<AppliedPluginResponse[]>;
2211
- export declare function getAppDeployInfo({ workspaceId, applicationId, environmentId, accountId, tenant }: {
2310
+ export declare function applicationControllergetAppDeployInfo({ workspaceId, applicationId, environmentId, accountId, tenant }: {
2212
2311
  workspaceId: string;
2213
2312
  applicationId: string;
2214
2313
  environmentId: string;
@@ -2218,7 +2317,7 @@ export declare function getAppDeployInfo({ workspaceId, applicationId, environme
2218
2317
  /**
2219
2318
  * List application's activities.
2220
2319
  */
2221
- export declare function listActivities1({ workspaceId, applicationId, environmentId, $type, page, size }: {
2320
+ export declare function applicationControllerlistActivities({ workspaceId, applicationId, environmentId, $type, page, size }: {
2222
2321
  workspaceId: string;
2223
2322
  applicationId: string;
2224
2323
  environmentId: string;
@@ -2229,14 +2328,14 @@ export declare function listActivities1({ workspaceId, applicationId, environmen
2229
2328
  /**
2230
2329
  * Get all in use connection interface dependencies from the application.
2231
2330
  */
2232
- export declare function getDependencyTree1({ workspaceId, applicationId }: {
2331
+ export declare function applicationControllergetDependencyTree({ workspaceId, applicationId }: {
2233
2332
  workspaceId: string;
2234
2333
  applicationId: string;
2235
2334
  }, opts?: Oazapfts.RequestOpts): Promise<AppAndInfraDependencyResponse>;
2236
2335
  /**
2237
2336
  * Can the application be destroyed?
2238
2337
  */
2239
- export declare function canBeDeleted({ workspaceId, applicationId, accountId, tenant }: {
2338
+ export declare function applicationControllercanBeDeleted({ workspaceId, applicationId, accountId, tenant }: {
2240
2339
  workspaceId: string;
2241
2340
  applicationId: string;
2242
2341
  accountId: string;
@@ -2245,52 +2344,52 @@ export declare function canBeDeleted({ workspaceId, applicationId, accountId, te
2245
2344
  /**
2246
2345
  * Get all workspaces within user permission
2247
2346
  */
2248
- export declare function getWorkspacesFromUserPermission({ resource, action }: {
2347
+ export declare function workspaceControllergetWorkspacesFromUserPermission({ resource, action }: {
2249
2348
  resource: string;
2250
2349
  action: string;
2251
2350
  }, opts?: Oazapfts.RequestOpts): Promise<WorkspaceReadResponse[]>;
2252
2351
  /**
2253
2352
  * Get shared infrastructure information by id.
2254
2353
  */
2255
- export declare function getSharedInfra({ id }: {
2354
+ export declare function getSharedInfraControllergetSharedInfra({ id }: {
2256
2355
  id: string;
2257
2356
  }, opts?: Oazapfts.RequestOpts): Promise<GetSharedInfraResponse>;
2258
2357
  /**
2259
2358
  * Check if there is/are any deployment active for the provided plugin
2260
2359
  */
2261
- export declare function checkPluginInUse({ pluginVersionId }: {
2360
+ export declare function pluginInUseControllercheckPluginInUse({ pluginVersionId }: {
2262
2361
  pluginVersionId: string;
2263
2362
  }, opts?: Oazapfts.RequestOpts): Promise<PluginInUseDetailsResponse[]>;
2264
2363
  /**
2265
2364
  * Check availability of connection slug in account.
2266
2365
  */
2267
- export declare function checkConnectionSlugAvailability({ slug }: {
2366
+ export declare function checkConnectionSlugAvailabilityControllercheckConnectionSlugAvailability({ slug }: {
2268
2367
  slug: string;
2269
2368
  }, opts?: Oazapfts.RequestOpts): Promise<CheckConnectionSlugAvailabilityResponse>;
2270
2369
  /**
2271
2370
  * Get an application list by repo url.
2272
2371
  */
2273
- export declare function getApplicationsByUrl({ accountId, repoUrl }: {
2372
+ export declare function getApplicationControllergetApplicationsByUrl({ accountId, repoUrl }: {
2274
2373
  accountId: string;
2275
2374
  repoUrl: string;
2276
2375
  }, opts?: Oazapfts.RequestOpts): Promise<ApplicationRepoUrlReadResponse[]>;
2277
2376
  /**
2278
2377
  * Get application information by id.
2279
2378
  */
2280
- export declare function getApplication1({ id }: {
2379
+ export declare function getApplicationControllergetApplication({ id }: {
2281
2380
  id: string;
2282
2381
  }, opts?: Oazapfts.RequestOpts): Promise<GetApplicationResponse>;
2283
2382
  /**
2284
2383
  * List all available connection interfaces for an application.
2285
2384
  */
2286
- export declare function getAvailableConnectionInterfacesForAnApplication1({ applicationId, typeId }: {
2385
+ export declare function availableConnectionInterfaceControllergetAvailableConnectionInterfacesForAnApplication({ applicationId, typeId }: {
2287
2386
  applicationId: string;
2288
2387
  typeId?: string;
2289
2388
  }, opts?: Oazapfts.RequestOpts): Promise<ConnectionInterfaceSummaryResponse[]>;
2290
2389
  /**
2291
2390
  * Get available connection interface for an application by its id.
2292
2391
  */
2293
- export declare function getAvailableConnectionInterfaceForAnApplication1({ applicationId, connectionInterfaceId, environmentId }: {
2392
+ export declare function availableConnectionInterfaceControllergetAvailableConnectionInterfaceForAnApplication({ applicationId, connectionInterfaceId, environmentId }: {
2294
2393
  applicationId: string;
2295
2394
  connectionInterfaceId: string;
2296
2395
  environmentId?: string;
@@ -2298,14 +2397,21 @@ export declare function getAvailableConnectionInterfaceForAnApplication1({ appli
2298
2397
  /**
2299
2398
  * Get action version ranges used in workflows given an actionId.
2300
2399
  */
2301
- export declare function listActionVersionRangesUsage({ accountId, actionId }: {
2400
+ export declare function workflowAccountControllerlistActionVersionRangesUsage({ accountId, actionId }: {
2302
2401
  accountId?: string;
2303
2402
  actionId: string;
2304
2403
  }, opts?: Oazapfts.RequestOpts): Promise<WorkflowActionUsageResponse>;
2404
+ /**
2405
+ * Get account variable usage
2406
+ */
2407
+ export declare function accountVariableControllerusage({ accountId, name }: {
2408
+ accountId?: string;
2409
+ name: string;
2410
+ }, opts?: Oazapfts.RequestOpts): Promise<AccountVariableUsageResponse>;
2305
2411
  /**
2306
2412
  * List the input context of all stack elements for given type in account.
2307
2413
  */
2308
- export declare function listAccountContext({ stackVersionId, $type, environmentId, externalId }: {
2414
+ export declare function contextControllerlistAccountContext({ stackVersionId, $type, environmentId, externalId }: {
2309
2415
  stackVersionId: string;
2310
2416
  $type: "plugin" | "action";
2311
2417
  environmentId?: string;
@@ -2314,35 +2420,35 @@ export declare function listAccountContext({ stackVersionId, $type, environmentI
2314
2420
  /**
2315
2421
  * Get workflow of a stackId by workflow type.
2316
2422
  */
2317
- export declare function listWorkflowByStackIdAndType({ stackId, workflowType }: {
2423
+ export declare function workflowStackControllerlistWorkflowByStackIdAndType({ stackId, workflowType }: {
2318
2424
  stackId: string;
2319
2425
  workflowType: "CREATE_API" | "CREATE_APP" | "CREATE_INFRA";
2320
2426
  }, opts?: Oazapfts.RequestOpts): Promise<AccountWorkflowResponse>;
2321
2427
  /**
2322
2428
  * Get workflows by a stackId.
2323
2429
  */
2324
- export declare function listWorkflowsByStackId({ stackId }: {
2430
+ export declare function workflowStackControllerlistWorkflowsByStackId({ stackId }: {
2325
2431
  stackId: string;
2326
2432
  }, opts?: Oazapfts.RequestOpts): Promise<AccountWorkflowResponse[]>;
2327
2433
  /**
2328
2434
  * List all stacks with workflow by account.
2329
2435
  */
2330
- export declare function listStacksWithWorkflow(opts?: Oazapfts.RequestOpts): Promise<StacksByAccountResponse>;
2436
+ export declare function accountStackControllerlistStacksWithWorkflow(opts?: Oazapfts.RequestOpts): Promise<StacksByAccountResponse>;
2331
2437
  /**
2332
2438
  * List all default workflows of an account.
2333
2439
  */
2334
- export declare function listDefaultAccountWorkflows(opts?: Oazapfts.RequestOpts): Promise<WorkflowResponse[]>;
2440
+ export declare function workflowAccountControllerlistDefaultAccountWorkflows(opts?: Oazapfts.RequestOpts): Promise<WorkflowResponse[]>;
2335
2441
  /**
2336
2442
  * Delete completely connection interfaces from all environments.
2337
2443
  */
2338
- export declare function deleteConnectionInterfaceFromAllEnvironments({ workspaceId, slug }: {
2444
+ export declare function connectionInterfaceControllerdeleteConnectionInterfaceFromAllEnvironments({ workspaceId, slug }: {
2339
2445
  workspaceId: string;
2340
2446
  slug: string;
2341
2447
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
2342
2448
  /**
2343
2449
  * Delete connection interfaces.
2344
2450
  */
2345
- export declare function deleteConnectionInterface({ workspaceId, slug, environmentId, accountId }: {
2451
+ export declare function connectionInterfaceControllerdeleteConnectionInterface({ workspaceId, slug, environmentId, accountId }: {
2346
2452
  workspaceId: string;
2347
2453
  slug: string;
2348
2454
  environmentId: string;
@@ -2351,7 +2457,7 @@ export declare function deleteConnectionInterface({ workspaceId, slug, environme
2351
2457
  /**
2352
2458
  * Delete connection interface attributes by environment.
2353
2459
  */
2354
- export declare function deleteConnectionInterfaceAttributesFromEnvironment({ workspaceId, slug, environmentId }: {
2460
+ export declare function connectionInterfaceControllerdeleteConnectionInterfaceAttributesFromEnvironment({ workspaceId, slug, environmentId }: {
2355
2461
  workspaceId: string;
2356
2462
  slug: string;
2357
2463
  environmentId: string;
@@ -2359,7 +2465,7 @@ export declare function deleteConnectionInterfaceAttributesFromEnvironment({ wor
2359
2465
  /**
2360
2466
  * Delete an account workflow.
2361
2467
  */
2362
- export declare function deleteAccountWorkflow({ workflowId }: {
2468
+ export declare function workflowAccountControllerdeleteAccountWorkflow({ workflowId }: {
2363
2469
  workflowId: string;
2364
2470
  }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
2365
2471
  //# sourceMappingURL=workspace.d.ts.map