hostctl 0.1.59 → 0.1.61
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.
- package/dist/bin/hostctl.js +1162 -1351
- package/dist/bin/hostctl.js.map +1 -1
- package/dist/index.d.ts +332 -269
- package/dist/index.js +1220 -927
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -933,7 +933,7 @@ declare class Cli {
|
|
|
933
933
|
}, cmd: cmdr.Command): Promise<void>;
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
-
declare const _default$
|
|
936
|
+
declare const _default$3T: TaskFn<{
|
|
937
937
|
path: string;
|
|
938
938
|
sudo?: boolean | undefined;
|
|
939
939
|
}, {
|
|
@@ -945,7 +945,7 @@ declare const _default$3P: TaskFn<{
|
|
|
945
945
|
error?: string | undefined;
|
|
946
946
|
}>;
|
|
947
947
|
|
|
948
|
-
declare const _default$
|
|
948
|
+
declare const _default$3S: TaskFn<{
|
|
949
949
|
from: string;
|
|
950
950
|
to: string;
|
|
951
951
|
mode?: string | undefined;
|
|
@@ -959,7 +959,7 @@ declare const _default$3O: TaskFn<{
|
|
|
959
959
|
error?: string | undefined;
|
|
960
960
|
}>;
|
|
961
961
|
|
|
962
|
-
declare const _default$
|
|
962
|
+
declare const _default$3R: TaskFn<{
|
|
963
963
|
path: string;
|
|
964
964
|
mode?: string | undefined;
|
|
965
965
|
owner?: string | undefined;
|
|
@@ -971,7 +971,7 @@ declare const _default$3N: TaskFn<{
|
|
|
971
971
|
error?: string | undefined;
|
|
972
972
|
}>;
|
|
973
973
|
|
|
974
|
-
declare const _default$
|
|
974
|
+
declare const _default$3Q: TaskFn<{
|
|
975
975
|
path: string;
|
|
976
976
|
sudo?: boolean | undefined;
|
|
977
977
|
all?: boolean | undefined;
|
|
@@ -980,7 +980,7 @@ declare const _default$3M: TaskFn<{
|
|
|
980
980
|
entries: string[];
|
|
981
981
|
}>;
|
|
982
982
|
|
|
983
|
-
declare const _default$
|
|
983
|
+
declare const _default$3P: TaskFn<{
|
|
984
984
|
path: string;
|
|
985
985
|
recursive?: boolean | undefined;
|
|
986
986
|
force?: boolean | undefined;
|
|
@@ -995,7 +995,7 @@ declare const _default$3L: TaskFn<{
|
|
|
995
995
|
}>;
|
|
996
996
|
|
|
997
997
|
declare namespace dir {
|
|
998
|
-
export { _default$
|
|
998
|
+
export { _default$3S as copy, _default$3R as create, _default$3P as delete, _default$3T as exists, _default$3Q as list };
|
|
999
999
|
}
|
|
1000
1000
|
|
|
1001
1001
|
declare const ChownInputSchema: z.ZodObject<{
|
|
@@ -1013,7 +1013,7 @@ declare const ChownOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1013
1013
|
error: z.ZodOptional<z.ZodString>;
|
|
1014
1014
|
}, z.z.core.$strip>]>;
|
|
1015
1015
|
type ChownResult = z.infer<typeof ChownOutputSchema>;
|
|
1016
|
-
declare const _default$
|
|
1016
|
+
declare const _default$3O: TaskFn<{
|
|
1017
1017
|
path: string;
|
|
1018
1018
|
owner: string;
|
|
1019
1019
|
group?: string | undefined;
|
|
@@ -1040,7 +1040,7 @@ declare const ChgrpOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1040
1040
|
error: z.ZodOptional<z.ZodString>;
|
|
1041
1041
|
}, z.z.core.$strip>]>;
|
|
1042
1042
|
type ChgrpResult = z.infer<typeof ChgrpOutputSchema>;
|
|
1043
|
-
declare const _default$
|
|
1043
|
+
declare const _default$3N: TaskFn<{
|
|
1044
1044
|
path: string;
|
|
1045
1045
|
group: string;
|
|
1046
1046
|
recursive?: boolean | undefined;
|
|
@@ -1066,7 +1066,7 @@ declare const ChmodOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1066
1066
|
error: z.ZodOptional<z.ZodString>;
|
|
1067
1067
|
}, z.z.core.$strip>]>;
|
|
1068
1068
|
type ChmodResult = z.infer<typeof ChmodOutputSchema>;
|
|
1069
|
-
declare const _default$
|
|
1069
|
+
declare const _default$3M: TaskFn<{
|
|
1070
1070
|
path: string;
|
|
1071
1071
|
mode: string | number;
|
|
1072
1072
|
recursive?: boolean | undefined;
|
|
@@ -1095,7 +1095,7 @@ declare const FileCopyOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1095
1095
|
error: z.ZodOptional<z.ZodString>;
|
|
1096
1096
|
}, z.z.core.$strip>]>;
|
|
1097
1097
|
type FileCopyResult = z.infer<typeof FileCopyOutputSchema>;
|
|
1098
|
-
declare const _default$
|
|
1098
|
+
declare const _default$3L: TaskFn<{
|
|
1099
1099
|
from: string;
|
|
1100
1100
|
to: string;
|
|
1101
1101
|
mode?: string | undefined;
|
|
@@ -1124,7 +1124,7 @@ declare const FileExistsOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1124
1124
|
error: z.ZodOptional<z.ZodString>;
|
|
1125
1125
|
}, z.z.core.$strip>]>;
|
|
1126
1126
|
type FileExistsResult = z.infer<typeof FileExistsOutputSchema>;
|
|
1127
|
-
declare const _default$
|
|
1127
|
+
declare const _default$3K: TaskFn<{
|
|
1128
1128
|
path: string;
|
|
1129
1129
|
sudo?: boolean | undefined;
|
|
1130
1130
|
}, {
|
|
@@ -1150,7 +1150,7 @@ declare const FileTouchOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1150
1150
|
error: z.ZodOptional<z.ZodString>;
|
|
1151
1151
|
}, z.z.core.$strip>]>;
|
|
1152
1152
|
type FileTouchResult = z.infer<typeof FileTouchOutputSchema>;
|
|
1153
|
-
declare const _default$
|
|
1153
|
+
declare const _default$3J: TaskFn<{
|
|
1154
1154
|
file: string;
|
|
1155
1155
|
mode?: string | undefined;
|
|
1156
1156
|
owner?: string | undefined;
|
|
@@ -1176,7 +1176,7 @@ declare const FileDeleteOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1176
1176
|
error: z.ZodOptional<z.ZodString>;
|
|
1177
1177
|
}, z.z.core.$strip>]>;
|
|
1178
1178
|
type FileDeleteResult = z.infer<typeof FileDeleteOutputSchema>;
|
|
1179
|
-
declare const _default$
|
|
1179
|
+
declare const _default$3I: TaskFn<{
|
|
1180
1180
|
path: string;
|
|
1181
1181
|
recursive?: boolean | undefined;
|
|
1182
1182
|
force?: boolean | undefined;
|
|
@@ -1204,7 +1204,7 @@ declare const FileLinkOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1204
1204
|
error: z.ZodOptional<z.ZodString>;
|
|
1205
1205
|
}, z.z.core.$strip>]>;
|
|
1206
1206
|
type FileLinkResult = z.infer<typeof FileLinkOutputSchema>;
|
|
1207
|
-
declare const _default$
|
|
1207
|
+
declare const _default$3H: TaskFn<{
|
|
1208
1208
|
target: string;
|
|
1209
1209
|
link: string;
|
|
1210
1210
|
force?: boolean | undefined;
|
|
@@ -1245,7 +1245,7 @@ declare const FileEditOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1245
1245
|
error: z.ZodOptional<z.ZodString>;
|
|
1246
1246
|
}, z.z.core.$strip>]>;
|
|
1247
1247
|
type FileEditResult = z.infer<typeof FileEditOutputSchema>;
|
|
1248
|
-
declare const _default$
|
|
1248
|
+
declare const _default$3G: TaskFn<{
|
|
1249
1249
|
file: string;
|
|
1250
1250
|
state?: "present" | "absent" | undefined;
|
|
1251
1251
|
backup?: boolean | undefined;
|
|
@@ -1296,7 +1296,7 @@ declare const FileGrepOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1296
1296
|
error: z.ZodOptional<z.ZodString>;
|
|
1297
1297
|
}, z.z.core.$strip>]>;
|
|
1298
1298
|
type FileGrepResult = z.infer<typeof FileGrepOutputSchema>;
|
|
1299
|
-
declare const _default$
|
|
1299
|
+
declare const _default$3F: TaskFn<{
|
|
1300
1300
|
file: string;
|
|
1301
1301
|
pattern: string;
|
|
1302
1302
|
ignore_case?: boolean | undefined;
|
|
@@ -1344,7 +1344,7 @@ type file_FileLinkResult = FileLinkResult;
|
|
|
1344
1344
|
type file_FileTouchParams = FileTouchParams;
|
|
1345
1345
|
type file_FileTouchResult = FileTouchResult;
|
|
1346
1346
|
declare namespace file {
|
|
1347
|
-
export { type file_ChgrpParams as ChgrpParams, type file_ChgrpResult as ChgrpResult, type file_ChmodParams as ChmodParams, type file_ChmodResult as ChmodResult, type file_ChownParams as ChownParams, type file_ChownResult as ChownResult, type file_FileCopyParams as FileCopyParams, type file_FileCopyResult as FileCopyResult, type file_FileDeleteParams as FileDeleteParams, type file_FileDeleteResult as FileDeleteResult, type file_FileEditParams as FileEditParams, type file_FileEditResult as FileEditResult, type file_FileExistsParams as FileExistsParams, type file_FileExistsResult as FileExistsResult, type file_FileGrepParams as FileGrepParams, type file_FileGrepResult as FileGrepResult, type file_FileLinkParams as FileLinkParams, type file_FileLinkResult as FileLinkResult, type file_FileTouchParams as FileTouchParams, type file_FileTouchResult as FileTouchResult, _default$
|
|
1347
|
+
export { type file_ChgrpParams as ChgrpParams, type file_ChgrpResult as ChgrpResult, type file_ChmodParams as ChmodParams, type file_ChmodResult as ChmodResult, type file_ChownParams as ChownParams, type file_ChownResult as ChownResult, type file_FileCopyParams as FileCopyParams, type file_FileCopyResult as FileCopyResult, type file_FileDeleteParams as FileDeleteParams, type file_FileDeleteResult as FileDeleteResult, type file_FileEditParams as FileEditParams, type file_FileEditResult as FileEditResult, type file_FileExistsParams as FileExistsParams, type file_FileExistsResult as FileExistsResult, type file_FileGrepParams as FileGrepParams, type file_FileGrepResult as FileGrepResult, type file_FileLinkParams as FileLinkParams, type file_FileLinkResult as FileLinkResult, type file_FileTouchParams as FileTouchParams, type file_FileTouchResult as FileTouchResult, _default$3N as chgrp, _default$3M as chmod, _default$3O as chown, _default$3L as copy, _default$3I as delete, _default$3G as edit, _default$3K as exists, _default$3F as grep, _default$3H as link, _default$3J as touch };
|
|
1348
1348
|
}
|
|
1349
1349
|
|
|
1350
1350
|
declare const GitCloneInputSchema: z.ZodObject<{
|
|
@@ -1359,7 +1359,7 @@ declare const GitCloneOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1359
1359
|
error: z.ZodOptional<z.ZodString>;
|
|
1360
1360
|
}, z.z.core.$strip>]>;
|
|
1361
1361
|
type GitCloneResult = z.infer<typeof GitCloneOutputSchema>;
|
|
1362
|
-
declare const _default$
|
|
1362
|
+
declare const _default$3E: TaskFn<{
|
|
1363
1363
|
repo: string;
|
|
1364
1364
|
dir: string;
|
|
1365
1365
|
}, {
|
|
@@ -1383,7 +1383,7 @@ declare const GitPullOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1383
1383
|
error: z.ZodOptional<z.ZodString>;
|
|
1384
1384
|
}, z.z.core.$strip>]>;
|
|
1385
1385
|
type GitPullResult = z.infer<typeof GitPullOutputSchema>;
|
|
1386
|
-
declare const _default$
|
|
1386
|
+
declare const _default$3D: TaskFn<{
|
|
1387
1387
|
directory: string;
|
|
1388
1388
|
rebase?: boolean | undefined;
|
|
1389
1389
|
remote?: string | undefined;
|
|
@@ -1408,7 +1408,7 @@ declare const GitCheckoutOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1408
1408
|
error: z.ZodOptional<z.ZodString>;
|
|
1409
1409
|
}, z.z.core.$strip>]>;
|
|
1410
1410
|
type GitCheckoutResult = z.infer<typeof GitCheckoutOutputSchema>;
|
|
1411
|
-
declare const _default$
|
|
1411
|
+
declare const _default$3C: TaskFn<{
|
|
1412
1412
|
directory: string;
|
|
1413
1413
|
target: string;
|
|
1414
1414
|
new_branch?: boolean | undefined;
|
|
@@ -1426,7 +1426,7 @@ type git_GitCloneResult = GitCloneResult;
|
|
|
1426
1426
|
type git_GitPullParams = GitPullParams;
|
|
1427
1427
|
type git_GitPullResult = GitPullResult;
|
|
1428
1428
|
declare namespace git {
|
|
1429
|
-
export { type git_GitCheckoutParams as GitCheckoutParams, type git_GitCheckoutResult as GitCheckoutResult, type git_GitCloneParams as GitCloneParams, type git_GitCloneResult as GitCloneResult, type git_GitPullParams as GitPullParams, type git_GitPullResult as GitPullResult, _default$
|
|
1429
|
+
export { type git_GitCheckoutParams as GitCheckoutParams, type git_GitCheckoutResult as GitCheckoutResult, type git_GitCloneParams as GitCloneParams, type git_GitCloneResult as GitCloneResult, type git_GitPullParams as GitPullParams, type git_GitPullResult as GitPullResult, _default$3C as checkout, _default$3E as clone, _default$3D as pull };
|
|
1430
1430
|
}
|
|
1431
1431
|
|
|
1432
1432
|
declare const GroupCreateInputSchema: z.ZodObject<{
|
|
@@ -1441,7 +1441,7 @@ declare const GroupCreateOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1441
1441
|
error: z.ZodOptional<z.ZodString>;
|
|
1442
1442
|
}, z.z.core.$strip>]>;
|
|
1443
1443
|
type GroupCreateResult = z.infer<typeof GroupCreateOutputSchema>;
|
|
1444
|
-
declare const _default$
|
|
1444
|
+
declare const _default$3B: TaskFn<{
|
|
1445
1445
|
group: string;
|
|
1446
1446
|
sudo?: boolean | undefined;
|
|
1447
1447
|
}, {
|
|
@@ -1464,7 +1464,7 @@ declare const GroupDeleteOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1464
1464
|
error: z.ZodOptional<z.ZodString>;
|
|
1465
1465
|
}, z.z.core.$strip>]>;
|
|
1466
1466
|
type GroupDeleteResult = z.infer<typeof GroupDeleteOutputSchema>;
|
|
1467
|
-
declare const _default$
|
|
1467
|
+
declare const _default$3A: TaskFn<{
|
|
1468
1468
|
group: string;
|
|
1469
1469
|
sudo?: boolean | undefined;
|
|
1470
1470
|
}, {
|
|
@@ -1483,7 +1483,7 @@ declare const GroupExistsOutputSchema: z.ZodObject<{
|
|
|
1483
1483
|
exists: z.ZodBoolean;
|
|
1484
1484
|
}, z.z.core.$strip>;
|
|
1485
1485
|
type GroupExistsResult = z.infer<typeof GroupExistsOutputSchema>;
|
|
1486
|
-
declare const _default$
|
|
1486
|
+
declare const _default$3z: TaskFn<{
|
|
1487
1487
|
group: string;
|
|
1488
1488
|
}, {
|
|
1489
1489
|
exists: boolean;
|
|
@@ -1504,7 +1504,7 @@ declare const GroupListOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1504
1504
|
groups: z.ZodArray<z.ZodType<GroupInfo, unknown, z.z.core.$ZodTypeInternals<GroupInfo, unknown>>>;
|
|
1505
1505
|
}, z.z.core.$strip>]>;
|
|
1506
1506
|
type GroupListResult = z.infer<typeof GroupListOutputSchema>;
|
|
1507
|
-
declare const _default$
|
|
1507
|
+
declare const _default$3y: TaskFn<Record<string, never>, {
|
|
1508
1508
|
success: true;
|
|
1509
1509
|
groups: GroupInfo[];
|
|
1510
1510
|
} | {
|
|
@@ -1530,7 +1530,7 @@ declare const GroupModifyOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1530
1530
|
error: z.ZodOptional<z.ZodString>;
|
|
1531
1531
|
}, z.z.core.$strip>]>;
|
|
1532
1532
|
type GroupModifyResult = z.infer<typeof GroupModifyOutputSchema>;
|
|
1533
|
-
declare const _default$
|
|
1533
|
+
declare const _default$3x: TaskFn<{
|
|
1534
1534
|
group: string;
|
|
1535
1535
|
new_name?: string | undefined;
|
|
1536
1536
|
gid?: number | undefined;
|
|
@@ -1557,7 +1557,7 @@ type group_GroupListResult = GroupListResult;
|
|
|
1557
1557
|
type group_GroupModifyParams = GroupModifyParams;
|
|
1558
1558
|
type group_GroupModifyResult = GroupModifyResult;
|
|
1559
1559
|
declare namespace group {
|
|
1560
|
-
export { type group_GroupCreateParams as GroupCreateParams, type group_GroupCreateResult as GroupCreateResult, type group_GroupDeleteParams as GroupDeleteParams, type group_GroupDeleteResult as GroupDeleteResult, type group_GroupExistsParams as GroupExistsParams, type group_GroupExistsResult as GroupExistsResult, type group_GroupInfo as GroupInfo, type group_GroupListParams as GroupListParams, type group_GroupListResult as GroupListResult, type group_GroupModifyParams as GroupModifyParams, type group_GroupModifyResult as GroupModifyResult, _default$
|
|
1560
|
+
export { type group_GroupCreateParams as GroupCreateParams, type group_GroupCreateResult as GroupCreateResult, type group_GroupDeleteParams as GroupDeleteParams, type group_GroupDeleteResult as GroupDeleteResult, type group_GroupExistsParams as GroupExistsParams, type group_GroupExistsResult as GroupExistsResult, type group_GroupInfo as GroupInfo, type group_GroupListParams as GroupListParams, type group_GroupListResult as GroupListResult, type group_GroupModifyParams as GroupModifyParams, type group_GroupModifyResult as GroupModifyResult, _default$3B as create, _default$3A as delete, _default$3z as exists, _default$3y as list, _default$3x as modify };
|
|
1561
1561
|
}
|
|
1562
1562
|
|
|
1563
1563
|
interface OSInfo {
|
|
@@ -1598,7 +1598,7 @@ declare const HostInfoOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1598
1598
|
error: z.ZodOptional<z.ZodString>;
|
|
1599
1599
|
}, z.z.core.$strip>]>;
|
|
1600
1600
|
type HostInfoResult = z.infer<typeof HostInfoOutputSchema>;
|
|
1601
|
-
declare const _default$
|
|
1601
|
+
declare const _default$3w: TaskFn<Record<string, never>, {
|
|
1602
1602
|
success: true;
|
|
1603
1603
|
host: HostInfo;
|
|
1604
1604
|
} | {
|
|
@@ -1616,7 +1616,7 @@ declare const HostSummaryOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1616
1616
|
error: z.ZodOptional<z.ZodString>;
|
|
1617
1617
|
}, z.z.core.$strip>]>;
|
|
1618
1618
|
type HostSummaryResult = z.infer<typeof HostSummaryOutputSchema>;
|
|
1619
|
-
declare const _default$
|
|
1619
|
+
declare const _default$3v: TaskFn<Record<string, never>, {
|
|
1620
1620
|
success: true;
|
|
1621
1621
|
host: HostSummary;
|
|
1622
1622
|
} | {
|
|
@@ -1653,7 +1653,7 @@ type OsDetailsResult = z.infer<typeof OsDetailsOutputSchema>;
|
|
|
1653
1653
|
* Determines the operating system family, specific OS, variant, and version.
|
|
1654
1654
|
* @returns {OsDetailsResult}
|
|
1655
1655
|
*/
|
|
1656
|
-
declare const _default$
|
|
1656
|
+
declare const _default$3u: TaskFn<Record<string, never>, {
|
|
1657
1657
|
success: true;
|
|
1658
1658
|
family: "darwin" | "linux" | "unknown" | "bsd" | "solaris" | "windows";
|
|
1659
1659
|
os: string;
|
|
@@ -1683,7 +1683,7 @@ declare const HostnameOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1683
1683
|
}, z.z.core.$strip>]>;
|
|
1684
1684
|
type HostnameParams = z.infer<typeof HostnameInputSchema>;
|
|
1685
1685
|
type HostnameResult = z.infer<typeof HostnameOutputSchema>;
|
|
1686
|
-
declare const _default$
|
|
1686
|
+
declare const _default$3t: TaskFn<{
|
|
1687
1687
|
new_name?: string | undefined;
|
|
1688
1688
|
}, {
|
|
1689
1689
|
success: true;
|
|
@@ -1724,7 +1724,7 @@ declare const BootstrapServiceAccountOutputSchema: z.ZodObject<{
|
|
|
1724
1724
|
trace: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1725
1725
|
}, z.z.core.$strip>;
|
|
1726
1726
|
type BootstrapServiceAccountResult = z.infer<typeof BootstrapServiceAccountOutputSchema>;
|
|
1727
|
-
declare const _default$
|
|
1727
|
+
declare const _default$3s: TaskFn<{
|
|
1728
1728
|
username: string;
|
|
1729
1729
|
password: string;
|
|
1730
1730
|
public_key: string;
|
|
@@ -1763,7 +1763,7 @@ type host_LSCPUChild = LSCPUChild;
|
|
|
1763
1763
|
type host_OSInfo = OSInfo;
|
|
1764
1764
|
type host_OsDetailsResult = OsDetailsResult;
|
|
1765
1765
|
declare namespace host {
|
|
1766
|
-
export { type host_BootstrapServiceAccountParams as BootstrapServiceAccountParams, type host_BootstrapServiceAccountResult as BootstrapServiceAccountResult, type host_HostInfo as HostInfo, type host_HostInfoResult as HostInfoResult, type host_HostSummary as HostSummary, type host_HostSummaryResult as HostSummaryResult, type host_HostnameParams as HostnameParams, type host_HostnameResult as HostnameResult, type host_LSBRelease as LSBRelease, type host_LSCPUChild as LSCPUChild, type host_OSInfo as OSInfo, type host_OsDetailsResult as OsDetailsResult, _default$
|
|
1766
|
+
export { type host_BootstrapServiceAccountParams as BootstrapServiceAccountParams, type host_BootstrapServiceAccountResult as BootstrapServiceAccountResult, type host_HostInfo as HostInfo, type host_HostInfoResult as HostInfoResult, type host_HostSummary as HostSummary, type host_HostSummaryResult as HostSummaryResult, type host_HostnameParams as HostnameParams, type host_HostnameResult as HostnameResult, type host_LSBRelease as LSBRelease, type host_LSCPUChild as LSCPUChild, type host_OSInfo as OSInfo, type host_OsDetailsResult as OsDetailsResult, _default$3s as bootstrapServiceAccount, _default$3t as hostname, _default$3w as info, _default$3u as os, _default$3v as summary };
|
|
1767
1767
|
}
|
|
1768
1768
|
|
|
1769
1769
|
interface AbstractPkgParams {
|
|
@@ -1812,7 +1812,7 @@ interface AbstractPkgInstallParams extends AbstractPkgParams {
|
|
|
1812
1812
|
}
|
|
1813
1813
|
interface AbstractPkgInstallResult extends AbstractPkgResult {
|
|
1814
1814
|
}
|
|
1815
|
-
declare const _default$
|
|
1815
|
+
declare const _default$3r: TaskFn<AbstractPkgInstallParams, AbstractPkgInstallResult>;
|
|
1816
1816
|
|
|
1817
1817
|
declare const AbstractPkgUninstallParamsSchema: z.ZodObject<{
|
|
1818
1818
|
sudo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1834,7 +1834,7 @@ declare const AbstractPkgUninstallResultSchema: z.ZodObject<{
|
|
|
1834
1834
|
failed: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1835
1835
|
}, z.z.core.$strip>;
|
|
1836
1836
|
type AbstractPkgUninstallResult = z.infer<typeof AbstractPkgUninstallResultSchema>;
|
|
1837
|
-
declare const _default$
|
|
1837
|
+
declare const _default$3q: TaskFn<{
|
|
1838
1838
|
package: string | string[];
|
|
1839
1839
|
sudo?: boolean | undefined;
|
|
1840
1840
|
packageManager?: string | undefined;
|
|
@@ -1871,7 +1871,7 @@ declare const AbstractPkgUpdateResultSchema: z.ZodObject<{
|
|
|
1871
1871
|
failed: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1872
1872
|
}, z.z.core.$strip>;
|
|
1873
1873
|
type AbstractPkgUpdateResult = z.infer<typeof AbstractPkgUpdateResultSchema>;
|
|
1874
|
-
declare const _default$
|
|
1874
|
+
declare const _default$3p: TaskFn<{
|
|
1875
1875
|
sudo?: boolean | undefined;
|
|
1876
1876
|
input?: Record<string, string> | undefined;
|
|
1877
1877
|
packageManager?: string | undefined;
|
|
@@ -1902,7 +1902,7 @@ declare const PkgInfoOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1902
1902
|
error: z.ZodOptional<z.ZodString>;
|
|
1903
1903
|
}, z.z.core.$strip>]>;
|
|
1904
1904
|
type PkgInfoResult = z.infer<typeof PkgInfoOutputSchema>;
|
|
1905
|
-
declare const _default$
|
|
1905
|
+
declare const _default$3o: TaskFn<{
|
|
1906
1906
|
package: string;
|
|
1907
1907
|
}, {
|
|
1908
1908
|
installed: boolean;
|
|
@@ -1954,11 +1954,11 @@ interface PkgIsInstalledResult {
|
|
|
1954
1954
|
error?: string;
|
|
1955
1955
|
}
|
|
1956
1956
|
|
|
1957
|
-
declare const _default$
|
|
1957
|
+
declare const _default$3n: TaskFn<PkgIsInstalledParams, PkgIsInstalledResult>;
|
|
1958
1958
|
|
|
1959
1959
|
declare const install: TaskFn<PkgInstallParams, PkgInstallResult>;
|
|
1960
1960
|
|
|
1961
|
-
declare const _default$
|
|
1961
|
+
declare const _default$3m: TaskFn<PkgRemoveParams, PkgRemoveResult>;
|
|
1962
1962
|
|
|
1963
1963
|
declare const AbstractPkgUpgradeParamsSchema: z.ZodObject<{
|
|
1964
1964
|
sudo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1978,7 +1978,7 @@ declare const AbstractPkgUpgradeResultSchema: z.ZodObject<{
|
|
|
1978
1978
|
failed: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1979
1979
|
}, z.z.core.$strip>;
|
|
1980
1980
|
type AbstractPkgUpgradeResult = z.infer<typeof AbstractPkgUpgradeResultSchema>;
|
|
1981
|
-
declare const _default$
|
|
1981
|
+
declare const _default$3l: TaskFn<{
|
|
1982
1982
|
sudo?: boolean | undefined;
|
|
1983
1983
|
packageManager?: string | undefined;
|
|
1984
1984
|
extraArgs?: string | undefined;
|
|
@@ -2011,7 +2011,7 @@ declare const AbstractPkgSearchResultSchema: z.ZodObject<{
|
|
|
2011
2011
|
failed: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2012
2012
|
}, z.z.core.$strip>;
|
|
2013
2013
|
type AbstractPkgSearchResult = z.infer<typeof AbstractPkgSearchResultSchema>;
|
|
2014
|
-
declare const _default$
|
|
2014
|
+
declare const _default$3k: TaskFn<{
|
|
2015
2015
|
query: string;
|
|
2016
2016
|
packageManager?: string | undefined;
|
|
2017
2017
|
}, {
|
|
@@ -2042,7 +2042,7 @@ declare const AbstractPkgListResultSchema: z.ZodObject<{
|
|
|
2042
2042
|
failed: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2043
2043
|
}, z.z.core.$strip>;
|
|
2044
2044
|
type AbstractPkgListResult = z.infer<typeof AbstractPkgListResultSchema>;
|
|
2045
|
-
declare const _default$
|
|
2045
|
+
declare const _default$3j: TaskFn<{
|
|
2046
2046
|
packageManager?: string | undefined;
|
|
2047
2047
|
}, {
|
|
2048
2048
|
success: boolean;
|
|
@@ -2056,7 +2056,7 @@ declare const _default$3f: TaskFn<{
|
|
|
2056
2056
|
failed?: string[] | undefined;
|
|
2057
2057
|
}>;
|
|
2058
2058
|
|
|
2059
|
-
declare const _default$
|
|
2059
|
+
declare const _default$3i: TaskFn<AbstractPkgCleanParams, AbstractPkgCleanResult>;
|
|
2060
2060
|
|
|
2061
2061
|
interface AptBaseParams extends AbstractPkgParams {
|
|
2062
2062
|
/** Force use of apt package manager (always true for apt-specific tasks) */
|
|
@@ -2242,27 +2242,27 @@ interface AptAddRepositoryResult {
|
|
|
2242
2242
|
error?: string;
|
|
2243
2243
|
}
|
|
2244
2244
|
|
|
2245
|
-
declare const _default$
|
|
2245
|
+
declare const _default$3h: TaskFn<AptInstallParams, AptInstallResult>;
|
|
2246
2246
|
|
|
2247
|
-
declare const _default$
|
|
2247
|
+
declare const _default$3g: TaskFn<AptUninstallParams, AptUninstallResult>;
|
|
2248
2248
|
|
|
2249
|
-
declare const _default$
|
|
2249
|
+
declare const _default$3f: TaskFn<AptUpdateParams, AptUpdateResult>;
|
|
2250
2250
|
|
|
2251
|
-
declare const _default$
|
|
2251
|
+
declare const _default$3e: TaskFn<AptUpgradeParams, AptUpgradeResult>;
|
|
2252
2252
|
|
|
2253
|
-
declare const _default$
|
|
2253
|
+
declare const _default$3d: TaskFn<AptSearchParams, AptSearchResult>;
|
|
2254
2254
|
|
|
2255
|
-
declare const _default$
|
|
2255
|
+
declare const _default$3c: TaskFn<AptListParams, AptListResult>;
|
|
2256
2256
|
|
|
2257
|
-
declare const _default$
|
|
2257
|
+
declare const _default$3b: TaskFn<AptCleanParams, AptCleanResult>;
|
|
2258
2258
|
|
|
2259
|
-
declare const _default$
|
|
2259
|
+
declare const _default$3a: TaskFn<AptIsInstalledParams, AptIsInstalledResult>;
|
|
2260
2260
|
|
|
2261
|
-
declare const _default$
|
|
2261
|
+
declare const _default$39: TaskFn<AptInfoParams, AptInfoResult>;
|
|
2262
2262
|
|
|
2263
|
-
declare const _default$
|
|
2263
|
+
declare const _default$38: TaskFn<AptAddKeyParams, AptAddKeyResult>;
|
|
2264
2264
|
|
|
2265
|
-
declare const _default$
|
|
2265
|
+
declare const _default$37: TaskFn<AptAddRepositoryParams, AptAddRepositoryResult>;
|
|
2266
2266
|
|
|
2267
2267
|
type index$3_AptAddKeyParams = AptAddKeyParams;
|
|
2268
2268
|
type index$3_AptAddKeyResult = AptAddKeyResult;
|
|
@@ -2287,7 +2287,7 @@ type index$3_AptUpdateResult = AptUpdateResult;
|
|
|
2287
2287
|
type index$3_AptUpgradeParams = AptUpgradeParams;
|
|
2288
2288
|
type index$3_AptUpgradeResult = AptUpgradeResult;
|
|
2289
2289
|
declare namespace index$3 {
|
|
2290
|
-
export { type index$3_AptAddKeyParams as AptAddKeyParams, type index$3_AptAddKeyResult as AptAddKeyResult, type index$3_AptAddRepositoryParams as AptAddRepositoryParams, type index$3_AptAddRepositoryResult as AptAddRepositoryResult, type index$3_AptCleanParams as AptCleanParams, type index$3_AptCleanResult as AptCleanResult, type index$3_AptInfoParams as AptInfoParams, type index$3_AptInfoResult as AptInfoResult, type index$3_AptInstallParams as AptInstallParams, type index$3_AptInstallResult as AptInstallResult, type index$3_AptIsInstalledParams as AptIsInstalledParams, type index$3_AptIsInstalledResult as AptIsInstalledResult, type index$3_AptListParams as AptListParams, type index$3_AptListResult as AptListResult, type index$3_AptSearchParams as AptSearchParams, type index$3_AptSearchResult as AptSearchResult, type index$3_AptUninstallParams as AptUninstallParams, type index$3_AptUninstallResult as AptUninstallResult, type index$3_AptUpdateParams as AptUpdateParams, type index$3_AptUpdateResult as AptUpdateResult, type index$3_AptUpgradeParams as AptUpgradeParams, type index$3_AptUpgradeResult as AptUpgradeResult, _default$
|
|
2290
|
+
export { type index$3_AptAddKeyParams as AptAddKeyParams, type index$3_AptAddKeyResult as AptAddKeyResult, type index$3_AptAddRepositoryParams as AptAddRepositoryParams, type index$3_AptAddRepositoryResult as AptAddRepositoryResult, type index$3_AptCleanParams as AptCleanParams, type index$3_AptCleanResult as AptCleanResult, type index$3_AptInfoParams as AptInfoParams, type index$3_AptInfoResult as AptInfoResult, type index$3_AptInstallParams as AptInstallParams, type index$3_AptInstallResult as AptInstallResult, type index$3_AptIsInstalledParams as AptIsInstalledParams, type index$3_AptIsInstalledResult as AptIsInstalledResult, type index$3_AptListParams as AptListParams, type index$3_AptListResult as AptListResult, type index$3_AptSearchParams as AptSearchParams, type index$3_AptSearchResult as AptSearchResult, type index$3_AptUninstallParams as AptUninstallParams, type index$3_AptUninstallResult as AptUninstallResult, type index$3_AptUpdateParams as AptUpdateParams, type index$3_AptUpdateResult as AptUpdateResult, type index$3_AptUpgradeParams as AptUpgradeParams, type index$3_AptUpgradeResult as AptUpgradeResult, _default$38 as add_key, _default$37 as add_repository, _default$3b as clean, _default$39 as info, _default$3h as install, _default$3a as isInstalled, _default$3c as list, _default$3d as search, _default$3g as uninstall, _default$3f as update, _default$3e as upgrade };
|
|
2291
2291
|
}
|
|
2292
2292
|
|
|
2293
2293
|
interface DnfBaseParams extends AbstractPkgParams {
|
|
@@ -2460,23 +2460,23 @@ interface DnfInfoResult extends AbstractPkgResult {
|
|
|
2460
2460
|
installed?: boolean;
|
|
2461
2461
|
}
|
|
2462
2462
|
|
|
2463
|
-
declare const _default$
|
|
2463
|
+
declare const _default$36: TaskFn<DnfInstallParams, DnfInstallResult>;
|
|
2464
2464
|
|
|
2465
|
-
declare const _default$
|
|
2465
|
+
declare const _default$35: TaskFn<DnfUninstallParams, DnfUninstallResult>;
|
|
2466
2466
|
|
|
2467
|
-
declare const _default$
|
|
2467
|
+
declare const _default$34: TaskFn<DnfUpdateParams, DnfUpdateResult>;
|
|
2468
2468
|
|
|
2469
|
-
declare const _default$
|
|
2469
|
+
declare const _default$33: TaskFn<DnfUpgradeParams, DnfUpgradeResult>;
|
|
2470
2470
|
|
|
2471
|
-
declare const _default$
|
|
2471
|
+
declare const _default$32: TaskFn<DnfSearchParams, DnfSearchResult>;
|
|
2472
2472
|
|
|
2473
|
-
declare const _default$
|
|
2473
|
+
declare const _default$31: TaskFn<DnfListParams, DnfListResult>;
|
|
2474
2474
|
|
|
2475
|
-
declare const _default$
|
|
2475
|
+
declare const _default$30: TaskFn<DnfCleanParams, DnfCleanResult>;
|
|
2476
2476
|
|
|
2477
|
-
declare const _default$
|
|
2477
|
+
declare const _default$2$: TaskFn<DnfIsInstalledParams, DnfIsInstalledResult>;
|
|
2478
2478
|
|
|
2479
|
-
declare const _default$
|
|
2479
|
+
declare const _default$2_: TaskFn<DnfInfoParams, DnfInfoResult>;
|
|
2480
2480
|
|
|
2481
2481
|
type index$2_DnfCleanParams = DnfCleanParams;
|
|
2482
2482
|
type index$2_DnfCleanResult = DnfCleanResult;
|
|
@@ -2497,7 +2497,7 @@ type index$2_DnfUpdateResult = DnfUpdateResult;
|
|
|
2497
2497
|
type index$2_DnfUpgradeParams = DnfUpgradeParams;
|
|
2498
2498
|
type index$2_DnfUpgradeResult = DnfUpgradeResult;
|
|
2499
2499
|
declare namespace index$2 {
|
|
2500
|
-
export { type index$2_DnfCleanParams as DnfCleanParams, type index$2_DnfCleanResult as DnfCleanResult, type index$2_DnfInfoParams as DnfInfoParams, type index$2_DnfInfoResult as DnfInfoResult, type index$2_DnfInstallParams as DnfInstallParams, type index$2_DnfInstallResult as DnfInstallResult, type index$2_DnfIsInstalledParams as DnfIsInstalledParams, type index$2_DnfIsInstalledResult as DnfIsInstalledResult, type index$2_DnfListParams as DnfListParams, type index$2_DnfListResult as DnfListResult, type index$2_DnfSearchParams as DnfSearchParams, type index$2_DnfSearchResult as DnfSearchResult, type index$2_DnfUninstallParams as DnfUninstallParams, type index$2_DnfUninstallResult as DnfUninstallResult, type index$2_DnfUpdateParams as DnfUpdateParams, type index$2_DnfUpdateResult as DnfUpdateResult, type index$2_DnfUpgradeParams as DnfUpgradeParams, type index$2_DnfUpgradeResult as DnfUpgradeResult, _default$
|
|
2500
|
+
export { type index$2_DnfCleanParams as DnfCleanParams, type index$2_DnfCleanResult as DnfCleanResult, type index$2_DnfInfoParams as DnfInfoParams, type index$2_DnfInfoResult as DnfInfoResult, type index$2_DnfInstallParams as DnfInstallParams, type index$2_DnfInstallResult as DnfInstallResult, type index$2_DnfIsInstalledParams as DnfIsInstalledParams, type index$2_DnfIsInstalledResult as DnfIsInstalledResult, type index$2_DnfListParams as DnfListParams, type index$2_DnfListResult as DnfListResult, type index$2_DnfSearchParams as DnfSearchParams, type index$2_DnfSearchResult as DnfSearchResult, type index$2_DnfUninstallParams as DnfUninstallParams, type index$2_DnfUninstallResult as DnfUninstallResult, type index$2_DnfUpdateParams as DnfUpdateParams, type index$2_DnfUpdateResult as DnfUpdateResult, type index$2_DnfUpgradeParams as DnfUpgradeParams, type index$2_DnfUpgradeResult as DnfUpgradeResult, _default$30 as clean, _default$2_ as info, _default$36 as install, _default$2$ as isInstalled, _default$31 as list, _default$32 as search, _default$35 as uninstall, _default$34 as update, _default$33 as upgrade };
|
|
2501
2501
|
}
|
|
2502
2502
|
|
|
2503
2503
|
interface YumBaseParams extends AbstractPkgParams {
|
|
@@ -2662,23 +2662,23 @@ interface YumInfoResult extends AbstractPkgResult {
|
|
|
2662
2662
|
installed?: boolean;
|
|
2663
2663
|
}
|
|
2664
2664
|
|
|
2665
|
-
declare const _default$
|
|
2665
|
+
declare const _default$2Z: TaskFn<YumInstallParams, YumInstallResult>;
|
|
2666
2666
|
|
|
2667
|
-
declare const _default$
|
|
2667
|
+
declare const _default$2Y: TaskFn<YumUninstallParams, YumUninstallResult>;
|
|
2668
2668
|
|
|
2669
|
-
declare const _default$
|
|
2669
|
+
declare const _default$2X: TaskFn<YumUpdateParams, YumUpdateResult>;
|
|
2670
2670
|
|
|
2671
|
-
declare const _default$
|
|
2671
|
+
declare const _default$2W: TaskFn<YumUpgradeParams, YumUpgradeResult>;
|
|
2672
2672
|
|
|
2673
|
-
declare const _default$
|
|
2673
|
+
declare const _default$2V: TaskFn<YumSearchParams, YumSearchResult>;
|
|
2674
2674
|
|
|
2675
|
-
declare const _default$
|
|
2675
|
+
declare const _default$2U: TaskFn<YumListParams, YumListResult>;
|
|
2676
2676
|
|
|
2677
|
-
declare const _default$
|
|
2677
|
+
declare const _default$2T: TaskFn<YumCleanParams, YumCleanResult>;
|
|
2678
2678
|
|
|
2679
|
-
declare const _default$
|
|
2679
|
+
declare const _default$2S: TaskFn<YumIsInstalledParams, YumIsInstalledResult>;
|
|
2680
2680
|
|
|
2681
|
-
declare const _default$
|
|
2681
|
+
declare const _default$2R: TaskFn<YumInfoParams, YumInfoResult>;
|
|
2682
2682
|
|
|
2683
2683
|
type index$1_YumCleanParams = YumCleanParams;
|
|
2684
2684
|
type index$1_YumCleanResult = YumCleanResult;
|
|
@@ -2699,7 +2699,7 @@ type index$1_YumUpdateResult = YumUpdateResult;
|
|
|
2699
2699
|
type index$1_YumUpgradeParams = YumUpgradeParams;
|
|
2700
2700
|
type index$1_YumUpgradeResult = YumUpgradeResult;
|
|
2701
2701
|
declare namespace index$1 {
|
|
2702
|
-
export { type index$1_YumCleanParams as YumCleanParams, type index$1_YumCleanResult as YumCleanResult, type index$1_YumInfoParams as YumInfoParams, type index$1_YumInfoResult as YumInfoResult, type index$1_YumInstallParams as YumInstallParams, type index$1_YumInstallResult as YumInstallResult, type index$1_YumIsInstalledParams as YumIsInstalledParams, type index$1_YumIsInstalledResult as YumIsInstalledResult, type index$1_YumListParams as YumListParams, type index$1_YumListResult as YumListResult, type index$1_YumSearchParams as YumSearchParams, type index$1_YumSearchResult as YumSearchResult, type index$1_YumUninstallParams as YumUninstallParams, type index$1_YumUninstallResult as YumUninstallResult, type index$1_YumUpdateParams as YumUpdateParams, type index$1_YumUpdateResult as YumUpdateResult, type index$1_YumUpgradeParams as YumUpgradeParams, type index$1_YumUpgradeResult as YumUpgradeResult, _default$
|
|
2702
|
+
export { type index$1_YumCleanParams as YumCleanParams, type index$1_YumCleanResult as YumCleanResult, type index$1_YumInfoParams as YumInfoParams, type index$1_YumInfoResult as YumInfoResult, type index$1_YumInstallParams as YumInstallParams, type index$1_YumInstallResult as YumInstallResult, type index$1_YumIsInstalledParams as YumIsInstalledParams, type index$1_YumIsInstalledResult as YumIsInstalledResult, type index$1_YumListParams as YumListParams, type index$1_YumListResult as YumListResult, type index$1_YumSearchParams as YumSearchParams, type index$1_YumSearchResult as YumSearchResult, type index$1_YumUninstallParams as YumUninstallParams, type index$1_YumUninstallResult as YumUninstallResult, type index$1_YumUpdateParams as YumUpdateParams, type index$1_YumUpdateResult as YumUpdateResult, type index$1_YumUpgradeParams as YumUpgradeParams, type index$1_YumUpgradeResult as YumUpgradeResult, _default$2T as clean, _default$2R as info, _default$2Z as install, _default$2S as isInstalled, _default$2U as list, _default$2V as search, _default$2Y as uninstall, _default$2X as update, _default$2W as upgrade };
|
|
2703
2703
|
}
|
|
2704
2704
|
|
|
2705
2705
|
interface PacmanBaseParams extends AbstractPkgParams {
|
|
@@ -2880,25 +2880,25 @@ interface PacmanInfoResult extends AbstractPkgResult {
|
|
|
2880
2880
|
};
|
|
2881
2881
|
}
|
|
2882
2882
|
|
|
2883
|
-
declare const _default$
|
|
2883
|
+
declare const _default$2Q: TaskFn<PacmanInstallParams, PacmanInstallResult>;
|
|
2884
2884
|
|
|
2885
|
-
declare const _default$
|
|
2885
|
+
declare const _default$2P: TaskFn<PacmanUninstallParams, PacmanUninstallResult>;
|
|
2886
2886
|
|
|
2887
|
-
declare const _default$
|
|
2887
|
+
declare const _default$2O: TaskFn<PacmanUpdateParams, PacmanUpdateResult>;
|
|
2888
2888
|
|
|
2889
|
-
declare const _default$
|
|
2889
|
+
declare const _default$2N: TaskFn<PacmanUpgradeParams, PacmanUpgradeResult>;
|
|
2890
2890
|
|
|
2891
|
-
declare const _default$
|
|
2891
|
+
declare const _default$2M: TaskFn<PacmanSearchParams, PacmanSearchResult>;
|
|
2892
2892
|
|
|
2893
|
-
declare const _default$
|
|
2893
|
+
declare const _default$2L: TaskFn<PacmanListParams, PacmanListResult>;
|
|
2894
2894
|
|
|
2895
|
-
declare const _default$
|
|
2895
|
+
declare const _default$2K: TaskFn<PacmanCleanParams, PacmanCleanResult>;
|
|
2896
2896
|
|
|
2897
|
-
declare const _default$
|
|
2897
|
+
declare const _default$2J: TaskFn<PacmanIsInstalledParams, PacmanIsInstalledResult>;
|
|
2898
2898
|
|
|
2899
|
-
declare const _default$
|
|
2899
|
+
declare const _default$2I: TaskFn<PacmanInfoParams, PacmanInfoResult>;
|
|
2900
2900
|
|
|
2901
|
-
declare const _default$
|
|
2901
|
+
declare const _default$2H: TaskFn<PacmanKeyringRepairParams, PacmanKeyringRepairResult>;
|
|
2902
2902
|
|
|
2903
2903
|
type index_PacmanCleanParams = PacmanCleanParams;
|
|
2904
2904
|
type index_PacmanCleanResult = PacmanCleanResult;
|
|
@@ -2921,7 +2921,7 @@ type index_PacmanUpdateResult = PacmanUpdateResult;
|
|
|
2921
2921
|
type index_PacmanUpgradeParams = PacmanUpgradeParams;
|
|
2922
2922
|
type index_PacmanUpgradeResult = PacmanUpgradeResult;
|
|
2923
2923
|
declare namespace index {
|
|
2924
|
-
export { type index_PacmanCleanParams as PacmanCleanParams, type index_PacmanCleanResult as PacmanCleanResult, type index_PacmanInfoParams as PacmanInfoParams, type index_PacmanInfoResult as PacmanInfoResult, type index_PacmanInstallParams as PacmanInstallParams, type index_PacmanInstallResult as PacmanInstallResult, type index_PacmanIsInstalledParams as PacmanIsInstalledParams, type index_PacmanIsInstalledResult as PacmanIsInstalledResult, type index_PacmanKeyringRepairParams as PacmanKeyringRepairParams, type index_PacmanKeyringRepairResult as PacmanKeyringRepairResult, type index_PacmanListParams as PacmanListParams, type index_PacmanListResult as PacmanListResult, type index_PacmanSearchParams as PacmanSearchParams, type index_PacmanSearchResult as PacmanSearchResult, type index_PacmanUninstallParams as PacmanUninstallParams, type index_PacmanUninstallResult as PacmanUninstallResult, type index_PacmanUpdateParams as PacmanUpdateParams, type index_PacmanUpdateResult as PacmanUpdateResult, type index_PacmanUpgradeParams as PacmanUpgradeParams, type index_PacmanUpgradeResult as PacmanUpgradeResult, _default$
|
|
2924
|
+
export { type index_PacmanCleanParams as PacmanCleanParams, type index_PacmanCleanResult as PacmanCleanResult, type index_PacmanInfoParams as PacmanInfoParams, type index_PacmanInfoResult as PacmanInfoResult, type index_PacmanInstallParams as PacmanInstallParams, type index_PacmanInstallResult as PacmanInstallResult, type index_PacmanIsInstalledParams as PacmanIsInstalledParams, type index_PacmanIsInstalledResult as PacmanIsInstalledResult, type index_PacmanKeyringRepairParams as PacmanKeyringRepairParams, type index_PacmanKeyringRepairResult as PacmanKeyringRepairResult, type index_PacmanListParams as PacmanListParams, type index_PacmanListResult as PacmanListResult, type index_PacmanSearchParams as PacmanSearchParams, type index_PacmanSearchResult as PacmanSearchResult, type index_PacmanUninstallParams as PacmanUninstallParams, type index_PacmanUninstallResult as PacmanUninstallResult, type index_PacmanUpdateParams as PacmanUpdateParams, type index_PacmanUpdateResult as PacmanUpdateResult, type index_PacmanUpgradeParams as PacmanUpgradeParams, type index_PacmanUpgradeResult as PacmanUpgradeResult, _default$2K as clean, _default$2I as info, _default$2Q as install, _default$2J as isInstalled, _default$2L as list, _default$2H as repair_keyring, _default$2M as search, _default$2P as uninstall, _default$2O as update, _default$2N as upgrade };
|
|
2925
2925
|
}
|
|
2926
2926
|
|
|
2927
2927
|
type pkg_AbstractPkgCleanParams = AbstractPkgCleanParams;
|
|
@@ -2951,7 +2951,7 @@ type pkg_PkgRemoveResult = PkgRemoveResult;
|
|
|
2951
2951
|
type pkg_PkgUpdateParams = PkgUpdateParams;
|
|
2952
2952
|
type pkg_PkgUpdateResult = PkgUpdateResult;
|
|
2953
2953
|
declare namespace pkg {
|
|
2954
|
-
export { type pkg_AbstractPkgCleanParams as AbstractPkgCleanParams, type pkg_AbstractPkgCleanResult as AbstractPkgCleanResult, type pkg_AbstractPkgInstallParams as AbstractPkgInstallParams, type pkg_AbstractPkgInstallResult as AbstractPkgInstallResult, type pkg_AbstractPkgListParams as AbstractPkgListParams, type pkg_AbstractPkgListResult as AbstractPkgListResult, type pkg_AbstractPkgParams as AbstractPkgParams, type pkg_AbstractPkgResult as AbstractPkgResult, type pkg_AbstractPkgSearchParams as AbstractPkgSearchParams, type pkg_AbstractPkgSearchResult as AbstractPkgSearchResult, type pkg_AbstractPkgUninstallParams as AbstractPkgUninstallParams, type pkg_AbstractPkgUninstallResult as AbstractPkgUninstallResult, type pkg_AbstractPkgUpdateParams as AbstractPkgUpdateParams, type pkg_AbstractPkgUpdateResult as AbstractPkgUpdateResult, type pkg_AbstractPkgUpgradeParams as AbstractPkgUpgradeParams, type pkg_AbstractPkgUpgradeResult as AbstractPkgUpgradeResult, type pkg_PkgInfoParams as PkgInfoParams, type pkg_PkgInfoResult as PkgInfoResult, type pkg_PkgInstallParams as PkgInstallParams, type pkg_PkgInstallResult as PkgInstallResult, type pkg_PkgIsInstalledParams as PkgIsInstalledParams, type pkg_PkgIsInstalledResult as PkgIsInstalledResult, type pkg_PkgRemoveParams as PkgRemoveParams, type pkg_PkgRemoveResult as PkgRemoveResult, type pkg_PkgUpdateParams as PkgUpdateParams, type pkg_PkgUpdateResult as PkgUpdateResult, index$3 as apt, _default$
|
|
2954
|
+
export { type pkg_AbstractPkgCleanParams as AbstractPkgCleanParams, type pkg_AbstractPkgCleanResult as AbstractPkgCleanResult, type pkg_AbstractPkgInstallParams as AbstractPkgInstallParams, type pkg_AbstractPkgInstallResult as AbstractPkgInstallResult, type pkg_AbstractPkgListParams as AbstractPkgListParams, type pkg_AbstractPkgListResult as AbstractPkgListResult, type pkg_AbstractPkgParams as AbstractPkgParams, type pkg_AbstractPkgResult as AbstractPkgResult, type pkg_AbstractPkgSearchParams as AbstractPkgSearchParams, type pkg_AbstractPkgSearchResult as AbstractPkgSearchResult, type pkg_AbstractPkgUninstallParams as AbstractPkgUninstallParams, type pkg_AbstractPkgUninstallResult as AbstractPkgUninstallResult, type pkg_AbstractPkgUpdateParams as AbstractPkgUpdateParams, type pkg_AbstractPkgUpdateResult as AbstractPkgUpdateResult, type pkg_AbstractPkgUpgradeParams as AbstractPkgUpgradeParams, type pkg_AbstractPkgUpgradeResult as AbstractPkgUpgradeResult, type pkg_PkgInfoParams as PkgInfoParams, type pkg_PkgInfoResult as PkgInfoResult, type pkg_PkgInstallParams as PkgInstallParams, type pkg_PkgInstallResult as PkgInstallResult, type pkg_PkgIsInstalledParams as PkgIsInstalledParams, type pkg_PkgIsInstalledResult as PkgIsInstalledResult, type pkg_PkgRemoveParams as PkgRemoveParams, type pkg_PkgRemoveResult as PkgRemoveResult, type pkg_PkgUpdateParams as PkgUpdateParams, type pkg_PkgUpdateResult as PkgUpdateResult, index$3 as apt, _default$3i as clean, index$2 as dnf, _default$3o as info, _default$3r as install, install as installCp, _default$3n as isInstalled, _default$3j as list, index as pacman, _default$3q as remove, _default$3m as removeCp, _default$3k as search, _default$3p as update, _default$3l as upgrade, index$1 as yum };
|
|
2955
2955
|
}
|
|
2956
2956
|
|
|
2957
2957
|
declare const K3supInstallInputSchema: z.ZodObject<{
|
|
@@ -2986,7 +2986,7 @@ declare const K3supInstallOutputSchema: z.ZodObject<{
|
|
|
2986
2986
|
executedCommand: z.ZodOptional<z.ZodString>;
|
|
2987
2987
|
}, z.z.core.$strip>;
|
|
2988
2988
|
type K3supInstallResult = z.infer<typeof K3supInstallOutputSchema>;
|
|
2989
|
-
declare const _default$
|
|
2989
|
+
declare const _default$2G: TaskFn<{
|
|
2990
2990
|
cluster?: boolean | undefined;
|
|
2991
2991
|
context?: string | undefined;
|
|
2992
2992
|
datastore?: string | undefined;
|
|
@@ -3019,7 +3019,7 @@ declare const _default$2C: TaskFn<{
|
|
|
3019
3019
|
type k3s_K3supInstallParams = K3supInstallParams;
|
|
3020
3020
|
type k3s_K3supInstallResult = K3supInstallResult;
|
|
3021
3021
|
declare namespace k3s {
|
|
3022
|
-
export { type k3s_K3supInstallParams as K3supInstallParams, type k3s_K3supInstallResult as K3supInstallResult, _default$
|
|
3022
|
+
export { type k3s_K3supInstallParams as K3supInstallParams, type k3s_K3supInstallResult as K3supInstallResult, _default$2G as k3supInstall };
|
|
3023
3023
|
}
|
|
3024
3024
|
|
|
3025
3025
|
declare const DockerInstallInputSchema: z.ZodObject<{
|
|
@@ -3038,7 +3038,7 @@ declare const DockerInstallOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3038
3038
|
error: z.ZodOptional<z.ZodString>;
|
|
3039
3039
|
}, z.z.core.$strip>]>;
|
|
3040
3040
|
type DockerInstallResult = z.infer<typeof DockerInstallOutputSchema>;
|
|
3041
|
-
declare const _default$
|
|
3041
|
+
declare const _default$2F: TaskFn<{
|
|
3042
3042
|
users?: string[] | undefined;
|
|
3043
3043
|
install_compose_plugin?: boolean | undefined;
|
|
3044
3044
|
install_compose_standalone?: boolean | undefined;
|
|
@@ -3064,7 +3064,7 @@ declare const AddUsersOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3064
3064
|
error: z.ZodOptional<z.ZodString>;
|
|
3065
3065
|
}, z.z.core.$strip>]>;
|
|
3066
3066
|
type AddUsersResult = z.infer<typeof AddUsersOutputSchema>;
|
|
3067
|
-
declare const _default$
|
|
3067
|
+
declare const _default$2E: TaskFn<{
|
|
3068
3068
|
users: string[];
|
|
3069
3069
|
}, {
|
|
3070
3070
|
success: true;
|
|
@@ -3087,7 +3087,7 @@ declare const InstallComposeOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3087
3087
|
error: z.ZodOptional<z.ZodString>;
|
|
3088
3088
|
}, z.z.core.$strip>]>;
|
|
3089
3089
|
type InstallComposeResult = z.infer<typeof InstallComposeOutputSchema>;
|
|
3090
|
-
declare const _default$
|
|
3090
|
+
declare const _default$2D: TaskFn<{
|
|
3091
3091
|
version?: string | undefined;
|
|
3092
3092
|
path?: string | undefined;
|
|
3093
3093
|
}, {
|
|
@@ -3136,7 +3136,7 @@ declare const DockerRunContainerOutputSchema: z.ZodObject<{
|
|
|
3136
3136
|
error: z.ZodOptional<z.ZodString>;
|
|
3137
3137
|
}, z.z.core.$strip>;
|
|
3138
3138
|
type DockerRunContainerResult = z.infer<typeof DockerRunContainerOutputSchema>;
|
|
3139
|
-
declare const _default$
|
|
3139
|
+
declare const _default$2C: TaskFn<{
|
|
3140
3140
|
image: string;
|
|
3141
3141
|
name?: string | undefined;
|
|
3142
3142
|
env?: Record<string, string> | undefined;
|
|
@@ -3202,7 +3202,7 @@ declare const DockerRunDetachedOutputSchema: z.ZodObject<{
|
|
|
3202
3202
|
error: z.ZodOptional<z.ZodString>;
|
|
3203
3203
|
}, z.z.core.$strip>;
|
|
3204
3204
|
type DockerRunDetachedResult = z.infer<typeof DockerRunDetachedOutputSchema>;
|
|
3205
|
-
declare const _default$
|
|
3205
|
+
declare const _default$2B: TaskFn<DockerRunCommonParams, {
|
|
3206
3206
|
success: boolean;
|
|
3207
3207
|
stdout: string;
|
|
3208
3208
|
stderr: string;
|
|
@@ -3222,10 +3222,10 @@ type docker_DockerRunDetachedResult = DockerRunDetachedResult;
|
|
|
3222
3222
|
type docker_InstallComposeParams = InstallComposeParams;
|
|
3223
3223
|
type docker_InstallComposeResult = InstallComposeResult;
|
|
3224
3224
|
declare namespace docker {
|
|
3225
|
-
export { type docker_AddUsersParams as AddUsersParams, type docker_AddUsersResult as AddUsersResult, type docker_DockerInstallParams as DockerInstallParams, type docker_DockerInstallResult as DockerInstallResult, type docker_DockerRunContainerParams as DockerRunContainerParams, type docker_DockerRunContainerResult as DockerRunContainerResult, type docker_DockerRunDetachedParams as DockerRunDetachedParams, type docker_DockerRunDetachedResult as DockerRunDetachedResult, type docker_InstallComposeParams as InstallComposeParams, type docker_InstallComposeResult as InstallComposeResult, _default$
|
|
3225
|
+
export { type docker_AddUsersParams as AddUsersParams, type docker_AddUsersResult as AddUsersResult, type docker_DockerInstallParams as DockerInstallParams, type docker_DockerInstallResult as DockerInstallResult, type docker_DockerRunContainerParams as DockerRunContainerParams, type docker_DockerRunContainerResult as DockerRunContainerResult, type docker_DockerRunDetachedParams as DockerRunDetachedParams, type docker_DockerRunDetachedResult as DockerRunDetachedResult, type docker_InstallComposeParams as InstallComposeParams, type docker_InstallComposeResult as InstallComposeResult, _default$2E as addUsers, _default$2F as install, _default$2D as installCompose, _default$2C as runContainer, _default$2B as runContainerDetached };
|
|
3226
3226
|
}
|
|
3227
3227
|
|
|
3228
|
-
declare const _default$
|
|
3228
|
+
declare const _default$2A: TaskFn<{
|
|
3229
3229
|
public_key: string;
|
|
3230
3230
|
user?: string | undefined;
|
|
3231
3231
|
sudo?: boolean | undefined;
|
|
@@ -3239,10 +3239,10 @@ declare const _default$2w: TaskFn<{
|
|
|
3239
3239
|
}>;
|
|
3240
3240
|
|
|
3241
3241
|
declare namespace ssh {
|
|
3242
|
-
export { _default$
|
|
3242
|
+
export { _default$2A as copy_id };
|
|
3243
3243
|
}
|
|
3244
3244
|
|
|
3245
|
-
declare const _default$
|
|
3245
|
+
declare const _default$2z: TaskFn<{
|
|
3246
3246
|
file?: string | undefined;
|
|
3247
3247
|
}, {
|
|
3248
3248
|
success: true;
|
|
@@ -3251,7 +3251,7 @@ declare const _default$2v: TaskFn<{
|
|
|
3251
3251
|
error?: string | undefined;
|
|
3252
3252
|
}>;
|
|
3253
3253
|
|
|
3254
|
-
declare const _default$
|
|
3254
|
+
declare const _default$2y: TaskFn<{
|
|
3255
3255
|
user: string;
|
|
3256
3256
|
name?: string | undefined;
|
|
3257
3257
|
}, {
|
|
@@ -3265,7 +3265,7 @@ declare const _default$2u: TaskFn<{
|
|
|
3265
3265
|
error?: string | undefined;
|
|
3266
3266
|
}>;
|
|
3267
3267
|
|
|
3268
|
-
declare const _default$
|
|
3268
|
+
declare const _default$2x: TaskFn<{
|
|
3269
3269
|
user: string;
|
|
3270
3270
|
name?: string | undefined;
|
|
3271
3271
|
}, {
|
|
@@ -3281,7 +3281,7 @@ declare const _default$2t: TaskFn<{
|
|
|
3281
3281
|
}>;
|
|
3282
3282
|
|
|
3283
3283
|
declare namespace sudoers {
|
|
3284
|
-
export { _default$
|
|
3284
|
+
export { _default$2z as check, _default$2y as grantNopasswd, _default$2x as revokeNopasswd };
|
|
3285
3285
|
}
|
|
3286
3286
|
|
|
3287
3287
|
declare const ProcessListInputSchema: z.ZodObject<{
|
|
@@ -3334,7 +3334,7 @@ declare const ProcessListOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3334
3334
|
error: z.ZodOptional<z.ZodString>;
|
|
3335
3335
|
}, z.z.core.$strip>]>;
|
|
3336
3336
|
type ProcessListResult = z.infer<typeof ProcessListOutputSchema>;
|
|
3337
|
-
declare const _default$
|
|
3337
|
+
declare const _default$2w: TaskFn<{
|
|
3338
3338
|
user?: string | undefined;
|
|
3339
3339
|
command?: string | undefined;
|
|
3340
3340
|
limit?: number | undefined;
|
|
@@ -3428,7 +3428,7 @@ declare const ProcessSearchOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3428
3428
|
error: z.ZodOptional<z.ZodString>;
|
|
3429
3429
|
}, z.z.core.$strip>]>;
|
|
3430
3430
|
type ProcessSearchResult = z.infer<typeof ProcessSearchOutputSchema>;
|
|
3431
|
-
declare const _default$
|
|
3431
|
+
declare const _default$2v: TaskFn<{
|
|
3432
3432
|
name?: string | undefined;
|
|
3433
3433
|
user?: string | undefined;
|
|
3434
3434
|
pid?: number | undefined;
|
|
@@ -3497,7 +3497,7 @@ declare const ProcessKillOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3497
3497
|
error: z.ZodOptional<z.ZodString>;
|
|
3498
3498
|
}, z.z.core.$strip>]>;
|
|
3499
3499
|
type ProcessKillResult = z.infer<typeof ProcessKillOutputSchema>;
|
|
3500
|
-
declare const _default$
|
|
3500
|
+
declare const _default$2u: TaskFn<{
|
|
3501
3501
|
pid?: number | number[] | undefined;
|
|
3502
3502
|
user?: string | undefined;
|
|
3503
3503
|
command?: string | undefined;
|
|
@@ -3528,7 +3528,7 @@ declare const ProcessSignalOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3528
3528
|
error: z.ZodOptional<z.ZodString>;
|
|
3529
3529
|
}, z.z.core.$strip>]>;
|
|
3530
3530
|
type ProcessSignalResult = z.infer<typeof ProcessSignalOutputSchema>;
|
|
3531
|
-
declare const _default$
|
|
3531
|
+
declare const _default$2t: TaskFn<{
|
|
3532
3532
|
pid: number;
|
|
3533
3533
|
signal?: string | undefined;
|
|
3534
3534
|
sudo?: boolean | undefined;
|
|
@@ -3566,7 +3566,7 @@ declare const ProcessInfoOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3566
3566
|
error: z.ZodOptional<z.ZodString>;
|
|
3567
3567
|
}, z.z.core.$strip>]>;
|
|
3568
3568
|
type ProcessInfoResult = z.infer<typeof ProcessInfoOutputSchema>;
|
|
3569
|
-
declare const _default$
|
|
3569
|
+
declare const _default$2s: TaskFn<{
|
|
3570
3570
|
pid: number;
|
|
3571
3571
|
}, {
|
|
3572
3572
|
success: true;
|
|
@@ -3677,7 +3677,7 @@ declare const ProcessTopOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3677
3677
|
timestamp: z.ZodString;
|
|
3678
3678
|
}, z.z.core.$strip>]>;
|
|
3679
3679
|
type ProcessTopResult = z.infer<typeof ProcessTopOutputSchema>;
|
|
3680
|
-
declare const _default$
|
|
3680
|
+
declare const _default$2r: TaskFn<{
|
|
3681
3681
|
limit?: number | undefined;
|
|
3682
3682
|
sort?: "pid" | "cpu" | "command" | "mem" | "time" | undefined;
|
|
3683
3683
|
user?: string | undefined;
|
|
@@ -3836,7 +3836,7 @@ declare const ProcessStatsOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3836
3836
|
timestamp: z.ZodString;
|
|
3837
3837
|
}, z.z.core.$strip>]>;
|
|
3838
3838
|
type ProcessStatsResult = z.infer<typeof ProcessStatsOutputSchema>;
|
|
3839
|
-
declare const _default$
|
|
3839
|
+
declare const _default$2q: TaskFn<{
|
|
3840
3840
|
includeUsers?: boolean | undefined;
|
|
3841
3841
|
includeStates?: boolean | undefined;
|
|
3842
3842
|
includeCommands?: boolean | undefined;
|
|
@@ -3950,7 +3950,7 @@ declare const ProcessChildrenOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3950
3950
|
error: z.ZodOptional<z.ZodString>;
|
|
3951
3951
|
}, z.z.core.$strip>]>;
|
|
3952
3952
|
type ProcessChildrenResult = z.infer<typeof ProcessChildrenOutputSchema>;
|
|
3953
|
-
declare const _default$
|
|
3953
|
+
declare const _default$2p: TaskFn<{
|
|
3954
3954
|
pid: number;
|
|
3955
3955
|
recursive?: boolean | undefined;
|
|
3956
3956
|
maxDepth?: number | undefined;
|
|
@@ -4000,7 +4000,7 @@ type process_ProcessStatsResult = ProcessStatsResult;
|
|
|
4000
4000
|
type process_ProcessTopParams = ProcessTopParams;
|
|
4001
4001
|
type process_ProcessTopResult = ProcessTopResult;
|
|
4002
4002
|
declare namespace process {
|
|
4003
|
-
export { type process_ProcessChildrenParams as ProcessChildrenParams, type process_ProcessChildrenResult as ProcessChildrenResult, type process_ProcessInfoParams as ProcessInfoParams, type process_ProcessInfoResult as ProcessInfoResult, type process_ProcessKillParams as ProcessKillParams, type process_ProcessKillResult as ProcessKillResult, type process_ProcessListParams as ProcessListParams, type process_ProcessListResult as ProcessListResult, type process_ProcessSearchParams as ProcessSearchParams, type process_ProcessSearchResult as ProcessSearchResult, type process_ProcessSignalParams as ProcessSignalParams, type process_ProcessSignalResult as ProcessSignalResult, type process_ProcessStatsParams as ProcessStatsParams, type process_ProcessStatsResult as ProcessStatsResult, type process_ProcessTopParams as ProcessTopParams, type process_ProcessTopResult as ProcessTopResult, _default$
|
|
4003
|
+
export { type process_ProcessChildrenParams as ProcessChildrenParams, type process_ProcessChildrenResult as ProcessChildrenResult, type process_ProcessInfoParams as ProcessInfoParams, type process_ProcessInfoResult as ProcessInfoResult, type process_ProcessKillParams as ProcessKillParams, type process_ProcessKillResult as ProcessKillResult, type process_ProcessListParams as ProcessListParams, type process_ProcessListResult as ProcessListResult, type process_ProcessSearchParams as ProcessSearchParams, type process_ProcessSearchResult as ProcessSearchResult, type process_ProcessSignalParams as ProcessSignalParams, type process_ProcessSignalResult as ProcessSignalResult, type process_ProcessStatsParams as ProcessStatsParams, type process_ProcessStatsResult as ProcessStatsResult, type process_ProcessTopParams as ProcessTopParams, type process_ProcessTopResult as ProcessTopResult, _default$2p as children, _default$2s as info, _default$2u as kill, _default$2w as list, _default$2v as search, _default$2t as signal, _default$2q as stats, _default$2r as top };
|
|
4004
4004
|
}
|
|
4005
4005
|
|
|
4006
4006
|
declare const RebootInputSchema: z.ZodObject<{
|
|
@@ -4015,7 +4015,7 @@ declare const RebootOutputSchema: z.ZodObject<{
|
|
|
4015
4015
|
status: z.ZodString;
|
|
4016
4016
|
}, z.z.core.$strip>;
|
|
4017
4017
|
type RebootResult = z.infer<typeof RebootOutputSchema>;
|
|
4018
|
-
declare const _default$
|
|
4018
|
+
declare const _default$2o: TaskFn<{
|
|
4019
4019
|
message?: string | undefined;
|
|
4020
4020
|
time?: string | undefined;
|
|
4021
4021
|
sudo?: boolean | undefined;
|
|
@@ -4037,7 +4037,7 @@ declare const ShutdownOutputSchema: z.ZodObject<{
|
|
|
4037
4037
|
status: z.ZodString;
|
|
4038
4038
|
}, z.z.core.$strip>;
|
|
4039
4039
|
type ShutdownResult = z.infer<typeof ShutdownOutputSchema>;
|
|
4040
|
-
declare const _default$
|
|
4040
|
+
declare const _default$2n: TaskFn<{
|
|
4041
4041
|
message?: string | undefined;
|
|
4042
4042
|
time?: string | undefined;
|
|
4043
4043
|
sudo?: boolean | undefined;
|
|
@@ -4058,7 +4058,7 @@ declare const RebootNeededOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4058
4058
|
error: z.ZodOptional<z.ZodString>;
|
|
4059
4059
|
}, z.z.core.$strip>]>;
|
|
4060
4060
|
type RebootNeededResult = z.infer<typeof RebootNeededOutputSchema>;
|
|
4061
|
-
declare const _default$
|
|
4061
|
+
declare const _default$2m: TaskFn<Record<string, never>, {
|
|
4062
4062
|
reboot_needed: boolean;
|
|
4063
4063
|
success: true;
|
|
4064
4064
|
} | {
|
|
@@ -4081,7 +4081,7 @@ declare const RebootIfNeededOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4081
4081
|
error: z.ZodOptional<z.ZodString>;
|
|
4082
4082
|
}, z.z.core.$strip>]>;
|
|
4083
4083
|
type RebootIfNeededResult = z.infer<typeof RebootIfNeededOutputSchema>;
|
|
4084
|
-
declare const _default$
|
|
4084
|
+
declare const _default$2l: TaskFn<{
|
|
4085
4085
|
delay?: number | undefined;
|
|
4086
4086
|
message?: string | undefined;
|
|
4087
4087
|
}, {
|
|
@@ -4104,7 +4104,7 @@ declare const SystemUptimeOutputSchema: z.ZodObject<{
|
|
|
4104
4104
|
}, z.z.core.$strip>;
|
|
4105
4105
|
type SystemUptimeParams = z.infer<typeof SystemUptimeInputSchema>;
|
|
4106
4106
|
type SystemUptimeResult = z.infer<typeof SystemUptimeOutputSchema>;
|
|
4107
|
-
declare const _default$
|
|
4107
|
+
declare const _default$2k: TaskFn<{
|
|
4108
4108
|
sudo?: boolean | undefined;
|
|
4109
4109
|
}, {
|
|
4110
4110
|
success: boolean;
|
|
@@ -4130,7 +4130,7 @@ declare const SystemDatetimeOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4130
4130
|
error: z.ZodOptional<z.ZodString>;
|
|
4131
4131
|
}, z.z.core.$strip>]>;
|
|
4132
4132
|
type SystemDatetimeResult = z.infer<typeof SystemDatetimeOutputSchema>;
|
|
4133
|
-
declare const _default$
|
|
4133
|
+
declare const _default$2j: TaskFn<{
|
|
4134
4134
|
sudo?: boolean | undefined;
|
|
4135
4135
|
}, {
|
|
4136
4136
|
success: true;
|
|
@@ -4164,7 +4164,7 @@ declare const SystemHardwareOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4164
4164
|
error: z.ZodOptional<z.ZodString>;
|
|
4165
4165
|
}, z.z.core.$strip>]>;
|
|
4166
4166
|
type SystemHardwareResult = z.infer<typeof SystemHardwareOutputSchema>;
|
|
4167
|
-
declare const _default$
|
|
4167
|
+
declare const _default$2i: TaskFn<{
|
|
4168
4168
|
sudo?: boolean | undefined;
|
|
4169
4169
|
}, {
|
|
4170
4170
|
success: true;
|
|
@@ -4196,10 +4196,10 @@ type system_SystemHardwareResult = SystemHardwareResult;
|
|
|
4196
4196
|
type system_SystemUptimeParams = SystemUptimeParams;
|
|
4197
4197
|
type system_SystemUptimeResult = SystemUptimeResult;
|
|
4198
4198
|
declare namespace system {
|
|
4199
|
-
export { type system_RebootIfNeededParams as RebootIfNeededParams, type system_RebootIfNeededResult as RebootIfNeededResult, type system_RebootNeededParams as RebootNeededParams, type system_RebootNeededResult as RebootNeededResult, type system_RebootParams as RebootParams, type system_RebootResult as RebootResult, type system_ShutdownParams as ShutdownParams, type system_ShutdownResult as ShutdownResult, type system_SystemDatetimeParams as SystemDatetimeParams, type system_SystemDatetimeResult as SystemDatetimeResult, type system_SystemHardwareParams as SystemHardwareParams, type system_SystemHardwareResult as SystemHardwareResult, type system_SystemUptimeParams as SystemUptimeParams, type system_SystemUptimeResult as SystemUptimeResult, _default$
|
|
4199
|
+
export { type system_RebootIfNeededParams as RebootIfNeededParams, type system_RebootIfNeededResult as RebootIfNeededResult, type system_RebootNeededParams as RebootNeededParams, type system_RebootNeededResult as RebootNeededResult, type system_RebootParams as RebootParams, type system_RebootResult as RebootResult, type system_ShutdownParams as ShutdownParams, type system_ShutdownResult as ShutdownResult, type system_SystemDatetimeParams as SystemDatetimeParams, type system_SystemDatetimeResult as SystemDatetimeResult, type system_SystemHardwareParams as SystemHardwareParams, type system_SystemHardwareResult as SystemHardwareResult, type system_SystemUptimeParams as SystemUptimeParams, type system_SystemUptimeResult as SystemUptimeResult, _default$2j as datetime, _default$2i as hardware, _default$2o as reboot, _default$2l as rebootIfNeeded, _default$2m as rebootNeeded, _default$2n as shutdown, _default$2k as uptime };
|
|
4200
4200
|
}
|
|
4201
4201
|
|
|
4202
|
-
declare const _default$
|
|
4202
|
+
declare const _default$2h: TaskFn<{
|
|
4203
4203
|
service: string;
|
|
4204
4204
|
sudo?: boolean | undefined;
|
|
4205
4205
|
}, {
|
|
@@ -4209,7 +4209,7 @@ declare const _default$2d: TaskFn<{
|
|
|
4209
4209
|
error?: string | undefined;
|
|
4210
4210
|
}>;
|
|
4211
4211
|
|
|
4212
|
-
declare const _default$
|
|
4212
|
+
declare const _default$2g: TaskFn<{
|
|
4213
4213
|
service: string;
|
|
4214
4214
|
sudo?: boolean | undefined;
|
|
4215
4215
|
}, {
|
|
@@ -4219,7 +4219,7 @@ declare const _default$2c: TaskFn<{
|
|
|
4219
4219
|
error?: string | undefined;
|
|
4220
4220
|
}>;
|
|
4221
4221
|
|
|
4222
|
-
declare const _default$
|
|
4222
|
+
declare const _default$2f: TaskFn<{
|
|
4223
4223
|
service: string;
|
|
4224
4224
|
sudo?: boolean | undefined;
|
|
4225
4225
|
}, {
|
|
@@ -4229,7 +4229,7 @@ declare const _default$2b: TaskFn<{
|
|
|
4229
4229
|
error?: string | undefined;
|
|
4230
4230
|
}>;
|
|
4231
4231
|
|
|
4232
|
-
declare const _default$
|
|
4232
|
+
declare const _default$2e: TaskFn<{
|
|
4233
4233
|
service: string;
|
|
4234
4234
|
sudo?: boolean | undefined;
|
|
4235
4235
|
}, {
|
|
@@ -4239,7 +4239,7 @@ declare const _default$2a: TaskFn<{
|
|
|
4239
4239
|
error?: string | undefined;
|
|
4240
4240
|
}>;
|
|
4241
4241
|
|
|
4242
|
-
declare const _default$
|
|
4242
|
+
declare const _default$2d: TaskFn<{
|
|
4243
4243
|
service: string;
|
|
4244
4244
|
sudo?: boolean | undefined;
|
|
4245
4245
|
}, {
|
|
@@ -4249,7 +4249,7 @@ declare const _default$29: TaskFn<{
|
|
|
4249
4249
|
error?: string | undefined;
|
|
4250
4250
|
}>;
|
|
4251
4251
|
|
|
4252
|
-
declare const _default$
|
|
4252
|
+
declare const _default$2c: TaskFn<{
|
|
4253
4253
|
service: string;
|
|
4254
4254
|
sudo?: boolean | undefined;
|
|
4255
4255
|
}, {
|
|
@@ -4259,7 +4259,7 @@ declare const _default$28: TaskFn<{
|
|
|
4259
4259
|
error?: string | undefined;
|
|
4260
4260
|
}>;
|
|
4261
4261
|
|
|
4262
|
-
declare const _default$
|
|
4262
|
+
declare const _default$2b: TaskFn<{
|
|
4263
4263
|
service: string;
|
|
4264
4264
|
sudo?: boolean | undefined;
|
|
4265
4265
|
}, {
|
|
@@ -4272,10 +4272,10 @@ declare const _default$27: TaskFn<{
|
|
|
4272
4272
|
}>;
|
|
4273
4273
|
|
|
4274
4274
|
declare namespace systemd {
|
|
4275
|
-
export { _default$
|
|
4275
|
+
export { _default$2h as disable, _default$2g as enable, _default$2c as reload, _default$2f as restart, _default$2e as start, _default$2b as status, _default$2d as stop };
|
|
4276
4276
|
}
|
|
4277
4277
|
|
|
4278
|
-
declare const _default$
|
|
4278
|
+
declare const _default$2a: TaskFn<{
|
|
4279
4279
|
variables: Record<string, any>;
|
|
4280
4280
|
to: string;
|
|
4281
4281
|
template?: string | undefined;
|
|
@@ -4290,10 +4290,10 @@ declare const _default$26: TaskFn<{
|
|
|
4290
4290
|
}>;
|
|
4291
4291
|
|
|
4292
4292
|
declare namespace template {
|
|
4293
|
-
export { _default$
|
|
4293
|
+
export { _default$2a as write };
|
|
4294
4294
|
}
|
|
4295
4295
|
|
|
4296
|
-
declare const _default$
|
|
4296
|
+
declare const _default$29: TaskFn<{
|
|
4297
4297
|
port: string | number;
|
|
4298
4298
|
proto?: "tcp" | "udp" | undefined;
|
|
4299
4299
|
from?: string | undefined;
|
|
@@ -4305,7 +4305,7 @@ declare const _default$25: TaskFn<{
|
|
|
4305
4305
|
error?: string | undefined;
|
|
4306
4306
|
}>;
|
|
4307
4307
|
|
|
4308
|
-
declare const _default$
|
|
4308
|
+
declare const _default$28: TaskFn<{
|
|
4309
4309
|
port: string | number;
|
|
4310
4310
|
proto?: "tcp" | "udp" | undefined;
|
|
4311
4311
|
from?: string | undefined;
|
|
@@ -4317,7 +4317,7 @@ declare const _default$24: TaskFn<{
|
|
|
4317
4317
|
error?: string | undefined;
|
|
4318
4318
|
}>;
|
|
4319
4319
|
|
|
4320
|
-
declare const _default$
|
|
4320
|
+
declare const _default$27: TaskFn<{
|
|
4321
4321
|
rule_number: number;
|
|
4322
4322
|
}, {
|
|
4323
4323
|
success: true;
|
|
@@ -4326,24 +4326,24 @@ declare const _default$23: TaskFn<{
|
|
|
4326
4326
|
error?: string | undefined;
|
|
4327
4327
|
}>;
|
|
4328
4328
|
|
|
4329
|
-
declare const _default$
|
|
4329
|
+
declare const _default$26: TaskFn<Record<string, never>, {
|
|
4330
4330
|
success: boolean;
|
|
4331
4331
|
error?: string | undefined;
|
|
4332
4332
|
}>;
|
|
4333
4333
|
|
|
4334
|
-
declare const _default$
|
|
4334
|
+
declare const _default$25: TaskFn<Record<string, never>, {
|
|
4335
4335
|
success: boolean;
|
|
4336
4336
|
error?: string | undefined;
|
|
4337
4337
|
}>;
|
|
4338
4338
|
|
|
4339
|
-
declare const _default$
|
|
4339
|
+
declare const _default$24: TaskFn<Record<string, never>, {
|
|
4340
4340
|
success: true;
|
|
4341
4341
|
} | {
|
|
4342
4342
|
success: false;
|
|
4343
4343
|
error?: string | undefined;
|
|
4344
4344
|
}>;
|
|
4345
4345
|
|
|
4346
|
-
declare const _default$
|
|
4346
|
+
declare const _default$23: TaskFn<{
|
|
4347
4347
|
level: "full" | "on" | "off" | "low" | "medium" | "high";
|
|
4348
4348
|
}, {
|
|
4349
4349
|
success: true;
|
|
@@ -4353,14 +4353,14 @@ declare const _default$1$: TaskFn<{
|
|
|
4353
4353
|
error?: string | undefined;
|
|
4354
4354
|
}>;
|
|
4355
4355
|
|
|
4356
|
-
declare const _default$
|
|
4356
|
+
declare const _default$22: TaskFn<Record<string, never>, {
|
|
4357
4357
|
success: true;
|
|
4358
4358
|
} | {
|
|
4359
4359
|
success: false;
|
|
4360
4360
|
error?: string | undefined;
|
|
4361
4361
|
}>;
|
|
4362
4362
|
|
|
4363
|
-
declare const _default$
|
|
4363
|
+
declare const _default$21: TaskFn<Record<string, never>, {
|
|
4364
4364
|
success: true;
|
|
4365
4365
|
error?: string | undefined;
|
|
4366
4366
|
} | {
|
|
@@ -4368,7 +4368,7 @@ declare const _default$1Z: TaskFn<Record<string, never>, {
|
|
|
4368
4368
|
error?: string | undefined;
|
|
4369
4369
|
}>;
|
|
4370
4370
|
|
|
4371
|
-
declare const _default$
|
|
4371
|
+
declare const _default$20: TaskFn<Record<string, never>, {
|
|
4372
4372
|
success: boolean;
|
|
4373
4373
|
status?: string | undefined;
|
|
4374
4374
|
rules?: {
|
|
@@ -4383,7 +4383,7 @@ declare const _default$1Y: TaskFn<Record<string, never>, {
|
|
|
4383
4383
|
}>;
|
|
4384
4384
|
|
|
4385
4385
|
declare namespace ufw {
|
|
4386
|
-
export { _default$
|
|
4386
|
+
export { _default$29 as allow, _default$27 as delete, _default$28 as deny, _default$26 as disable, _default$25 as enable, _default$24 as install, _default$23 as logging, _default$22 as reload, _default$21 as reset, _default$20 as status };
|
|
4387
4387
|
}
|
|
4388
4388
|
|
|
4389
4389
|
declare const AddGroupsInputSchema: z.ZodObject<{
|
|
@@ -4399,7 +4399,7 @@ declare const AddGroupsOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4399
4399
|
error: z.ZodOptional<z.ZodString>;
|
|
4400
4400
|
}, z.z.core.$strip>]>;
|
|
4401
4401
|
type AddGroupsResult = z.infer<typeof AddGroupsOutputSchema>;
|
|
4402
|
-
declare const _default$
|
|
4402
|
+
declare const _default$1$: TaskFn<{
|
|
4403
4403
|
user: string;
|
|
4404
4404
|
groups?: string | string[] | undefined;
|
|
4405
4405
|
sudo?: boolean | undefined;
|
|
@@ -4425,7 +4425,7 @@ declare const CreateUserOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4425
4425
|
error: z.ZodOptional<z.ZodString>;
|
|
4426
4426
|
}, z.z.core.$strip>]>;
|
|
4427
4427
|
type CreateUserResult = z.infer<typeof CreateUserOutputSchema>;
|
|
4428
|
-
declare const _default$
|
|
4428
|
+
declare const _default$1_: TaskFn<{
|
|
4429
4429
|
user: string;
|
|
4430
4430
|
create_home?: boolean | undefined;
|
|
4431
4431
|
create_group?: boolean | undefined;
|
|
@@ -4446,7 +4446,7 @@ declare const UserExistsOutputSchema: z.ZodObject<{
|
|
|
4446
4446
|
exists: z.ZodBoolean;
|
|
4447
4447
|
}, z.z.core.$strip>;
|
|
4448
4448
|
type UserExistsResult = z.infer<typeof UserExistsOutputSchema>;
|
|
4449
|
-
declare const _default$
|
|
4449
|
+
declare const _default$1Z: TaskFn<{
|
|
4450
4450
|
user: string;
|
|
4451
4451
|
}, {
|
|
4452
4452
|
exists: boolean;
|
|
@@ -4464,7 +4464,7 @@ declare const GetGidOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4464
4464
|
gid: z.ZodOptional<z.ZodString>;
|
|
4465
4465
|
}, z.z.core.$strip>]>;
|
|
4466
4466
|
type GetGidResult = z.infer<typeof GetGidOutputSchema>;
|
|
4467
|
-
declare const _default$
|
|
4467
|
+
declare const _default$1Y: TaskFn<{
|
|
4468
4468
|
user: string;
|
|
4469
4469
|
}, {
|
|
4470
4470
|
success: true;
|
|
@@ -4486,7 +4486,7 @@ declare const GetGroupsOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4486
4486
|
groups: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4487
4487
|
}, z.z.core.$strip>]>;
|
|
4488
4488
|
type GetGroupsResult = z.infer<typeof GetGroupsOutputSchema>;
|
|
4489
|
-
declare const _default$
|
|
4489
|
+
declare const _default$1X: TaskFn<{
|
|
4490
4490
|
user: string;
|
|
4491
4491
|
}, {
|
|
4492
4492
|
success: true;
|
|
@@ -4508,7 +4508,7 @@ declare const GetUidOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4508
4508
|
uid: z.ZodOptional<z.ZodString>;
|
|
4509
4509
|
}, z.z.core.$strip>]>;
|
|
4510
4510
|
type GetUidResult = z.infer<typeof GetUidOutputSchema>;
|
|
4511
|
-
declare const _default$
|
|
4511
|
+
declare const _default$1W: TaskFn<{
|
|
4512
4512
|
user: string;
|
|
4513
4513
|
}, {
|
|
4514
4514
|
success: true;
|
|
@@ -4526,7 +4526,7 @@ declare const GetUsernameOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4526
4526
|
username: z.ZodString;
|
|
4527
4527
|
}, z.z.core.$strip>]>;
|
|
4528
4528
|
type GetUsernameResult = z.infer<typeof GetUsernameOutputSchema>;
|
|
4529
|
-
declare const _default$
|
|
4529
|
+
declare const _default$1V: TaskFn<Record<string, never>, {
|
|
4530
4530
|
success: true;
|
|
4531
4531
|
username: string;
|
|
4532
4532
|
} | {
|
|
@@ -4550,7 +4550,7 @@ declare const UserHomeDirOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4550
4550
|
error: z.ZodOptional<z.ZodString>;
|
|
4551
4551
|
}, z.z.core.$strip>]>;
|
|
4552
4552
|
type UserHomeDirResult = z.infer<typeof UserHomeDirOutputSchema>;
|
|
4553
|
-
declare const _default$
|
|
4553
|
+
declare const _default$1U: TaskFn<{
|
|
4554
4554
|
user: string;
|
|
4555
4555
|
sudo?: boolean | undefined;
|
|
4556
4556
|
}, {
|
|
@@ -4577,7 +4577,7 @@ declare const SetUserPasswordOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4577
4577
|
error: z.ZodOptional<z.ZodString>;
|
|
4578
4578
|
}, z.z.core.$strip>]>;
|
|
4579
4579
|
type SetUserPasswordResult = z.infer<typeof SetUserPasswordOutputSchema>;
|
|
4580
|
-
declare const _default$
|
|
4580
|
+
declare const _default$1T: TaskFn<{
|
|
4581
4581
|
user: string;
|
|
4582
4582
|
password: string;
|
|
4583
4583
|
sudo?: boolean | undefined;
|
|
@@ -4601,7 +4601,7 @@ declare const SetUserGroupsOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4601
4601
|
error: z.ZodOptional<z.ZodString>;
|
|
4602
4602
|
}, z.z.core.$strip>]>;
|
|
4603
4603
|
type SetUserGroupsResult = z.infer<typeof SetUserGroupsOutputSchema>;
|
|
4604
|
-
declare const _default$
|
|
4604
|
+
declare const _default$1S: TaskFn<{
|
|
4605
4605
|
user: string;
|
|
4606
4606
|
groups?: string | string[] | undefined;
|
|
4607
4607
|
sudo?: boolean | undefined;
|
|
@@ -4625,7 +4625,7 @@ declare const SetUserShellOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4625
4625
|
error: z.ZodOptional<z.ZodString>;
|
|
4626
4626
|
}, z.z.core.$strip>]>;
|
|
4627
4627
|
type SetUserShellResult = z.infer<typeof SetUserShellOutputSchema>;
|
|
4628
|
-
declare const _default$
|
|
4628
|
+
declare const _default$1R: TaskFn<{
|
|
4629
4629
|
user: string;
|
|
4630
4630
|
shell: string;
|
|
4631
4631
|
sudo?: boolean | undefined;
|
|
@@ -4647,7 +4647,7 @@ declare const UserDeleteOutputSchema: z.ZodObject<{
|
|
|
4647
4647
|
error: z.ZodOptional<z.ZodString>;
|
|
4648
4648
|
}, z.z.core.$strip>;
|
|
4649
4649
|
type UserDeleteResult = z.infer<typeof UserDeleteOutputSchema>;
|
|
4650
|
-
declare const _default$
|
|
4650
|
+
declare const _default$1Q: TaskFn<{
|
|
4651
4651
|
user: string;
|
|
4652
4652
|
remove?: boolean | undefined;
|
|
4653
4653
|
sudo?: boolean | undefined;
|
|
@@ -4656,7 +4656,7 @@ declare const _default$1M: TaskFn<{
|
|
|
4656
4656
|
error?: string | undefined;
|
|
4657
4657
|
}>;
|
|
4658
4658
|
|
|
4659
|
-
declare const _default$
|
|
4659
|
+
declare const _default$1P: TaskFn<{
|
|
4660
4660
|
user: string;
|
|
4661
4661
|
comment?: string | undefined;
|
|
4662
4662
|
home?: string | undefined;
|
|
@@ -4699,7 +4699,7 @@ declare const EnsureUserOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4699
4699
|
trace: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4700
4700
|
}, z.z.core.$strip>]>;
|
|
4701
4701
|
type EnsureUserResult = z.infer<typeof EnsureUserOutputSchema>;
|
|
4702
|
-
declare const _default$
|
|
4702
|
+
declare const _default$1O: TaskFn<{
|
|
4703
4703
|
user: string;
|
|
4704
4704
|
password?: string | undefined;
|
|
4705
4705
|
create_home?: boolean | undefined;
|
|
@@ -4745,7 +4745,7 @@ type user_UserExistsResult = UserExistsResult;
|
|
|
4745
4745
|
type user_UserHomeDirParams = UserHomeDirParams;
|
|
4746
4746
|
type user_UserHomeDirResult = UserHomeDirResult;
|
|
4747
4747
|
declare namespace user {
|
|
4748
|
-
export { type user_AddGroupsParams as AddGroupsParams, type user_AddGroupsResult as AddGroupsResult, type user_CreateUserParams as CreateUserParams, type user_CreateUserResult as CreateUserResult, type user_EnsureUserParams as EnsureUserParams, type user_EnsureUserResult as EnsureUserResult, type user_GetGidParams as GetGidParams, type user_GetGidResult as GetGidResult, type user_GetGroupsParams as GetGroupsParams, type user_GetGroupsResult as GetGroupsResult, type user_GetUidParams as GetUidParams, type user_GetUidResult as GetUidResult, type user_GetUsernameResult as GetUsernameResult, type user_SetUserGroupsParams as SetUserGroupsParams, type user_SetUserGroupsResult as SetUserGroupsResult, type user_SetUserPasswordParams as SetUserPasswordParams, type user_SetUserPasswordResult as SetUserPasswordResult, type user_SetUserShellParams as SetUserShellParams, type user_SetUserShellResult as SetUserShellResult, type user_UserDeleteParams as UserDeleteParams, type user_UserDeleteResult as UserDeleteResult, type user_UserExistsParams as UserExistsParams, type user_UserExistsResult as UserExistsResult, type user_UserHomeDirParams as UserHomeDirParams, type user_UserHomeDirResult as UserHomeDirResult, _default$
|
|
4748
|
+
export { type user_AddGroupsParams as AddGroupsParams, type user_AddGroupsResult as AddGroupsResult, type user_CreateUserParams as CreateUserParams, type user_CreateUserResult as CreateUserResult, type user_EnsureUserParams as EnsureUserParams, type user_EnsureUserResult as EnsureUserResult, type user_GetGidParams as GetGidParams, type user_GetGidResult as GetGidResult, type user_GetGroupsParams as GetGroupsParams, type user_GetGroupsResult as GetGroupsResult, type user_GetUidParams as GetUidParams, type user_GetUidResult as GetUidResult, type user_GetUsernameResult as GetUsernameResult, type user_SetUserGroupsParams as SetUserGroupsParams, type user_SetUserGroupsResult as SetUserGroupsResult, type user_SetUserPasswordParams as SetUserPasswordParams, type user_SetUserPasswordResult as SetUserPasswordResult, type user_SetUserShellParams as SetUserShellParams, type user_SetUserShellResult as SetUserShellResult, type user_UserDeleteParams as UserDeleteParams, type user_UserDeleteResult as UserDeleteResult, type user_UserExistsParams as UserExistsParams, type user_UserExistsResult as UserExistsResult, type user_UserHomeDirParams as UserHomeDirParams, type user_UserHomeDirResult as UserHomeDirResult, _default$1$ as addGroups, _default$1_ as create, _default$1Q as delete, _default$1O as ensure, _default$1Z as exists, _default$1Y as getGid, _default$1X as getGroups, _default$1W as getUid, _default$1V as getUsername, _default$1U as homeDir, _default$1P as modify, _default$1S as setGroups, _default$1T as setPassword, _default$1R as setShell };
|
|
4749
4749
|
}
|
|
4750
4750
|
|
|
4751
4751
|
interface XcpngListAttachedDisksParams {
|
|
@@ -4769,7 +4769,7 @@ interface XcpngListAttachedDisksResult {
|
|
|
4769
4769
|
disks?: XcpngAttachedDisk[];
|
|
4770
4770
|
error?: string;
|
|
4771
4771
|
}
|
|
4772
|
-
declare const _default$
|
|
4772
|
+
declare const _default$1N: TaskFn<XcpngListAttachedDisksParams, XcpngListAttachedDisksResult>;
|
|
4773
4773
|
|
|
4774
4774
|
/**
|
|
4775
4775
|
* Supported input for filter-style arguments. Allows callers to pass:
|
|
@@ -4790,7 +4790,7 @@ interface XcpngListVbdsResult {
|
|
|
4790
4790
|
items?: XcpngVbdRecord[];
|
|
4791
4791
|
error?: string;
|
|
4792
4792
|
}
|
|
4793
|
-
declare const _default$
|
|
4793
|
+
declare const _default$1M: TaskFn<XcpngListVbdsParams, XcpngListVbdsResult>;
|
|
4794
4794
|
|
|
4795
4795
|
interface XcpngListVifsParams {
|
|
4796
4796
|
filters?: XeFilterInput;
|
|
@@ -4803,7 +4803,7 @@ interface XcpngListVifsResult {
|
|
|
4803
4803
|
items?: XcpngVifRecord[];
|
|
4804
4804
|
error?: string;
|
|
4805
4805
|
}
|
|
4806
|
-
declare const _default$
|
|
4806
|
+
declare const _default$1L: TaskFn<XcpngListVifsParams, XcpngListVifsResult>;
|
|
4807
4807
|
|
|
4808
4808
|
interface XcpngGetVmInfoParams {
|
|
4809
4809
|
vm_uuid?: string;
|
|
@@ -4848,7 +4848,7 @@ interface XcpngGetVmInfoResult {
|
|
|
4848
4848
|
error?: string;
|
|
4849
4849
|
skipped?: boolean;
|
|
4850
4850
|
}
|
|
4851
|
-
declare const _default$
|
|
4851
|
+
declare const _default$1K: TaskFn<XcpngGetVmInfoParams, XcpngGetVmInfoResult>;
|
|
4852
4852
|
|
|
4853
4853
|
/**
|
|
4854
4854
|
* Parameters for powering off an XCP-ng VM.
|
|
@@ -4875,7 +4875,7 @@ interface XcpngStopVmResult {
|
|
|
4875
4875
|
finalPowerState?: string;
|
|
4876
4876
|
waitAttempts?: number;
|
|
4877
4877
|
}
|
|
4878
|
-
declare const _default$
|
|
4878
|
+
declare const _default$1J: TaskFn<XcpngStopVmParams, XcpngStopVmResult>;
|
|
4879
4879
|
|
|
4880
4880
|
/**
|
|
4881
4881
|
* Parameters for powering on an XCP-ng VM.
|
|
@@ -4902,7 +4902,7 @@ interface XcpngStartVmResult {
|
|
|
4902
4902
|
finalPowerState?: string;
|
|
4903
4903
|
waitAttempts?: number;
|
|
4904
4904
|
}
|
|
4905
|
-
declare const _default$
|
|
4905
|
+
declare const _default$1I: TaskFn<XcpngStartVmParams, XcpngStartVmResult>;
|
|
4906
4906
|
|
|
4907
4907
|
interface XcpngSnapshotVmParams {
|
|
4908
4908
|
vm_uuid?: string;
|
|
@@ -4918,7 +4918,7 @@ interface XcpngSnapshotVmResult {
|
|
|
4918
4918
|
command?: string;
|
|
4919
4919
|
error?: string;
|
|
4920
4920
|
}
|
|
4921
|
-
declare const _default$
|
|
4921
|
+
declare const _default$1H: TaskFn<XcpngSnapshotVmParams, XcpngSnapshotVmResult>;
|
|
4922
4922
|
|
|
4923
4923
|
interface XcpngUnplugVbdParams {
|
|
4924
4924
|
vbd_uuid: string;
|
|
@@ -4930,7 +4930,7 @@ interface XcpngUnplugVbdResult {
|
|
|
4930
4930
|
alreadyDetached?: boolean;
|
|
4931
4931
|
error?: string;
|
|
4932
4932
|
}
|
|
4933
|
-
declare const _default$
|
|
4933
|
+
declare const _default$1G: TaskFn<XcpngUnplugVbdParams, XcpngUnplugVbdResult>;
|
|
4934
4934
|
|
|
4935
4935
|
interface XcpngResumeVmParams {
|
|
4936
4936
|
vm_uuid: string;
|
|
@@ -4946,7 +4946,7 @@ interface XcpngResumeVmResult {
|
|
|
4946
4946
|
waitAttempts?: number;
|
|
4947
4947
|
error?: string;
|
|
4948
4948
|
}
|
|
4949
|
-
declare const _default$
|
|
4949
|
+
declare const _default$1F: TaskFn<XcpngResumeVmParams, XcpngResumeVmResult>;
|
|
4950
4950
|
|
|
4951
4951
|
interface XcpngSuspendVmParams {
|
|
4952
4952
|
vm_uuid: string;
|
|
@@ -4961,7 +4961,7 @@ interface XcpngSuspendVmResult {
|
|
|
4961
4961
|
waitAttempts?: number;
|
|
4962
4962
|
error?: string;
|
|
4963
4963
|
}
|
|
4964
|
-
declare const _default$
|
|
4964
|
+
declare const _default$1E: TaskFn<XcpngSuspendVmParams, XcpngSuspendVmResult>;
|
|
4965
4965
|
|
|
4966
4966
|
interface XcpngSetVmResourcesParams {
|
|
4967
4967
|
vm_uuid?: string;
|
|
@@ -4988,7 +4988,7 @@ interface XcpngSetVmResourcesResult {
|
|
|
4988
4988
|
powerState?: string;
|
|
4989
4989
|
waitAttempts?: number;
|
|
4990
4990
|
}
|
|
4991
|
-
declare const _default$
|
|
4991
|
+
declare const _default$1D: TaskFn<XcpngSetVmResourcesParams, XcpngSetVmResourcesResult>;
|
|
4992
4992
|
|
|
4993
4993
|
/**
|
|
4994
4994
|
* Parameters for configuring VM boot behaviour.
|
|
@@ -5011,7 +5011,7 @@ interface XcpngSetBootOrderResult {
|
|
|
5011
5011
|
appliedCommands: string[];
|
|
5012
5012
|
error?: string;
|
|
5013
5013
|
}
|
|
5014
|
-
declare const _default$
|
|
5014
|
+
declare const _default$1C: TaskFn<XcpngSetBootOrderParams, XcpngSetBootOrderResult>;
|
|
5015
5015
|
|
|
5016
5016
|
interface XcpngSetSnapshotParamParams {
|
|
5017
5017
|
snapshot_uuid: string;
|
|
@@ -5024,7 +5024,7 @@ interface XcpngSetSnapshotParamResult {
|
|
|
5024
5024
|
command?: string;
|
|
5025
5025
|
error?: string;
|
|
5026
5026
|
}
|
|
5027
|
-
declare const _default$
|
|
5027
|
+
declare const _default$1B: TaskFn<XcpngSetSnapshotParamParams, XcpngSetSnapshotParamResult>;
|
|
5028
5028
|
|
|
5029
5029
|
interface XcpngRevertSnapshotParams {
|
|
5030
5030
|
snapshot_uuid: string;
|
|
@@ -5038,7 +5038,7 @@ interface XcpngRevertSnapshotResult {
|
|
|
5038
5038
|
powerState?: string;
|
|
5039
5039
|
waitAttempts?: number;
|
|
5040
5040
|
}
|
|
5041
|
-
declare const _default$
|
|
5041
|
+
declare const _default$1A: TaskFn<XcpngRevertSnapshotParams, XcpngRevertSnapshotResult>;
|
|
5042
5042
|
|
|
5043
5043
|
interface XcpngRemoveDiskParams {
|
|
5044
5044
|
vbd_uuid?: string;
|
|
@@ -5060,7 +5060,7 @@ interface XcpngRemoveDiskResult {
|
|
|
5060
5060
|
appliedCommands: string[];
|
|
5061
5061
|
error?: string;
|
|
5062
5062
|
}
|
|
5063
|
-
declare const _default$
|
|
5063
|
+
declare const _default$1z: TaskFn<XcpngRemoveDiskParams, XcpngRemoveDiskResult>;
|
|
5064
5064
|
|
|
5065
5065
|
interface XcpngResizeVmMemoryParams {
|
|
5066
5066
|
vm_uuid?: string;
|
|
@@ -5076,7 +5076,7 @@ interface XcpngResizeVmMemoryResult {
|
|
|
5076
5076
|
powerState?: string;
|
|
5077
5077
|
waitAttempts?: number;
|
|
5078
5078
|
}
|
|
5079
|
-
declare const _default$
|
|
5079
|
+
declare const _default$1y: TaskFn<XcpngResizeVmMemoryParams, XcpngResizeVmMemoryResult>;
|
|
5080
5080
|
|
|
5081
5081
|
interface XcpngResizeVmCpusParams {
|
|
5082
5082
|
vm_uuid?: string;
|
|
@@ -5096,7 +5096,7 @@ interface XcpngResizeVmCpusResult {
|
|
|
5096
5096
|
powerState?: string;
|
|
5097
5097
|
waitAttempts?: number;
|
|
5098
5098
|
}
|
|
5099
|
-
declare const _default$
|
|
5099
|
+
declare const _default$1x: TaskFn<XcpngResizeVmCpusParams, XcpngResizeVmCpusResult>;
|
|
5100
5100
|
|
|
5101
5101
|
interface XcpngResizeVdiParams {
|
|
5102
5102
|
vdi_uuid?: string;
|
|
@@ -5115,7 +5115,7 @@ interface XcpngResizeVdiResult {
|
|
|
5115
5115
|
newSizeBytes?: number;
|
|
5116
5116
|
error?: string;
|
|
5117
5117
|
}
|
|
5118
|
-
declare const _default$
|
|
5118
|
+
declare const _default$1w: TaskFn<XcpngResizeVdiParams, XcpngResizeVdiResult>;
|
|
5119
5119
|
|
|
5120
5120
|
interface XcpngListVmParamsParams {
|
|
5121
5121
|
filters?: XeFilterInput;
|
|
@@ -5125,7 +5125,7 @@ interface XcpngListVmParamsResult {
|
|
|
5125
5125
|
items?: Array<Record<string, string>>;
|
|
5126
5126
|
error?: string;
|
|
5127
5127
|
}
|
|
5128
|
-
declare const _default$
|
|
5128
|
+
declare const _default$1v: TaskFn<XcpngListVmParamsParams, XcpngListVmParamsResult>;
|
|
5129
5129
|
|
|
5130
5130
|
/**
|
|
5131
5131
|
* Parameters when querying VMs from an XCP-ng host.
|
|
@@ -5150,7 +5150,7 @@ interface XcpngListVmsResult {
|
|
|
5150
5150
|
type XcpngVmRecord = Record<string, string> & {
|
|
5151
5151
|
params: Record<string, string>;
|
|
5152
5152
|
};
|
|
5153
|
-
declare const _default$
|
|
5153
|
+
declare const _default$1u: TaskFn<XcpngListVmsParams, XcpngListVmsResult>;
|
|
5154
5154
|
|
|
5155
5155
|
interface XcpngImportVdiParams {
|
|
5156
5156
|
sr_uuid?: string;
|
|
@@ -5171,7 +5171,7 @@ interface XcpngImportVdiResult {
|
|
|
5171
5171
|
appliedCommands: string[];
|
|
5172
5172
|
error?: string;
|
|
5173
5173
|
}
|
|
5174
|
-
declare const _default$
|
|
5174
|
+
declare const _default$1t: TaskFn<XcpngImportVdiParams, XcpngImportVdiResult>;
|
|
5175
5175
|
|
|
5176
5176
|
interface XcpngListVdiParamsParams {
|
|
5177
5177
|
filters?: XeFilterInput;
|
|
@@ -5181,7 +5181,7 @@ interface XcpngListVdiParamsResult {
|
|
|
5181
5181
|
items?: Array<Record<string, string>>;
|
|
5182
5182
|
error?: string;
|
|
5183
5183
|
}
|
|
5184
|
-
declare const _default$
|
|
5184
|
+
declare const _default$1s: TaskFn<XcpngListVdiParamsParams, XcpngListVdiParamsResult>;
|
|
5185
5185
|
|
|
5186
5186
|
/**
|
|
5187
5187
|
* Parameters for querying VDIs.
|
|
@@ -5204,7 +5204,7 @@ interface XcpngListVdisResult {
|
|
|
5204
5204
|
items?: XcpngVdiRecord[];
|
|
5205
5205
|
error?: string;
|
|
5206
5206
|
}
|
|
5207
|
-
declare const _default$
|
|
5207
|
+
declare const _default$1r: TaskFn<XcpngListVdisParams, XcpngListVdisResult>;
|
|
5208
5208
|
|
|
5209
5209
|
interface XcpngListPifParamsParams {
|
|
5210
5210
|
filters?: XeFilterInput;
|
|
@@ -5214,7 +5214,7 @@ interface XcpngListPifParamsResult {
|
|
|
5214
5214
|
items?: Array<Record<string, string>>;
|
|
5215
5215
|
error?: string;
|
|
5216
5216
|
}
|
|
5217
|
-
declare const _default$
|
|
5217
|
+
declare const _default$1q: TaskFn<XcpngListPifParamsParams, XcpngListPifParamsResult>;
|
|
5218
5218
|
|
|
5219
5219
|
interface XcpngListPifsParams {
|
|
5220
5220
|
filters?: XeFilterInput;
|
|
@@ -5227,7 +5227,7 @@ interface XcpngListPifsResult {
|
|
|
5227
5227
|
items?: XcpngPifRecord[];
|
|
5228
5228
|
error?: string;
|
|
5229
5229
|
}
|
|
5230
|
-
declare const _default$
|
|
5230
|
+
declare const _default$1p: TaskFn<XcpngListPifsParams, XcpngListPifsResult>;
|
|
5231
5231
|
|
|
5232
5232
|
interface XcpngListVifParamsParams {
|
|
5233
5233
|
filters?: XeFilterInput;
|
|
@@ -5237,7 +5237,7 @@ interface XcpngListVifParamsResult {
|
|
|
5237
5237
|
items?: Array<Record<string, string>>;
|
|
5238
5238
|
error?: string;
|
|
5239
5239
|
}
|
|
5240
|
-
declare const _default$
|
|
5240
|
+
declare const _default$1o: TaskFn<XcpngListVifParamsParams, XcpngListVifParamsResult>;
|
|
5241
5241
|
|
|
5242
5242
|
interface XcpngListVbdParamsParams {
|
|
5243
5243
|
filters?: XeFilterInput;
|
|
@@ -5247,7 +5247,7 @@ interface XcpngListVbdParamsResult {
|
|
|
5247
5247
|
items?: Array<Record<string, string>>;
|
|
5248
5248
|
error?: string;
|
|
5249
5249
|
}
|
|
5250
|
-
declare const _default$
|
|
5250
|
+
declare const _default$1n: TaskFn<XcpngListVbdParamsParams, XcpngListVbdParamsResult>;
|
|
5251
5251
|
|
|
5252
5252
|
interface XcpngListTemplateParamsParams {
|
|
5253
5253
|
filters?: XeFilterInput;
|
|
@@ -5257,7 +5257,7 @@ interface XcpngListTemplateParamsResult {
|
|
|
5257
5257
|
items?: Array<Record<string, string>>;
|
|
5258
5258
|
error?: string;
|
|
5259
5259
|
}
|
|
5260
|
-
declare const _default$
|
|
5260
|
+
declare const _default$1m: TaskFn<XcpngListTemplateParamsParams, XcpngListTemplateParamsResult>;
|
|
5261
5261
|
|
|
5262
5262
|
interface XcpngListTemplatesParams {
|
|
5263
5263
|
filters?: XeFilterInput;
|
|
@@ -5270,7 +5270,7 @@ interface XcpngListTemplatesResult {
|
|
|
5270
5270
|
items?: XcpngTemplateRecord[];
|
|
5271
5271
|
error?: string;
|
|
5272
5272
|
}
|
|
5273
|
-
declare const _default$
|
|
5273
|
+
declare const _default$1l: TaskFn<XcpngListTemplatesParams, XcpngListTemplatesResult>;
|
|
5274
5274
|
|
|
5275
5275
|
interface XcpngListNetworkParamsParams {
|
|
5276
5276
|
filters?: XeFilterInput;
|
|
@@ -5280,7 +5280,7 @@ interface XcpngListNetworkParamsResult {
|
|
|
5280
5280
|
items?: Array<Record<string, string>>;
|
|
5281
5281
|
error?: string;
|
|
5282
5282
|
}
|
|
5283
|
-
declare const _default$
|
|
5283
|
+
declare const _default$1k: TaskFn<XcpngListNetworkParamsParams, XcpngListNetworkParamsResult>;
|
|
5284
5284
|
|
|
5285
5285
|
interface XcpngListNetworksParams {
|
|
5286
5286
|
filters?: XeFilterInput;
|
|
@@ -5293,7 +5293,7 @@ interface XcpngListNetworksResult {
|
|
|
5293
5293
|
items?: XcpngNetworkRecord[];
|
|
5294
5294
|
error?: string;
|
|
5295
5295
|
}
|
|
5296
|
-
declare const _default$
|
|
5296
|
+
declare const _default$1j: TaskFn<XcpngListNetworksParams, XcpngListNetworksResult>;
|
|
5297
5297
|
|
|
5298
5298
|
/**
|
|
5299
5299
|
* Parameters for querying storage repositories.
|
|
@@ -5316,7 +5316,7 @@ interface XcpngListStorageRepositoriesResult {
|
|
|
5316
5316
|
items?: XcpngStorageRepositoryRecord[];
|
|
5317
5317
|
error?: string;
|
|
5318
5318
|
}
|
|
5319
|
-
declare const _default$
|
|
5319
|
+
declare const _default$1i: TaskFn<XcpngListStorageRepositoriesParams, XcpngListStorageRepositoriesResult>;
|
|
5320
5320
|
|
|
5321
5321
|
interface XcpngUploadIsoParams {
|
|
5322
5322
|
/** Path to the ISO on the local machine running hostctl. */
|
|
@@ -5357,7 +5357,7 @@ interface XcpngUploadIsoResult {
|
|
|
5357
5357
|
uploads: Record<string, XcpngUploadIsoHostResult | Error>;
|
|
5358
5358
|
error?: string;
|
|
5359
5359
|
}
|
|
5360
|
-
declare const _default$
|
|
5360
|
+
declare const _default$1h: TaskFn<XcpngUploadIsoParams, XcpngUploadIsoResult>;
|
|
5361
5361
|
|
|
5362
5362
|
interface XcpngProvisionVmParams {
|
|
5363
5363
|
vm_name_label: string;
|
|
@@ -5438,7 +5438,7 @@ interface XcpngProvisionVmResult {
|
|
|
5438
5438
|
error?: string;
|
|
5439
5439
|
skipped?: boolean;
|
|
5440
5440
|
}
|
|
5441
|
-
declare const _default$
|
|
5441
|
+
declare const _default$1g: TaskFn<XcpngProvisionVmParams, XcpngProvisionVmResult>;
|
|
5442
5442
|
|
|
5443
5443
|
interface XcpngProvisionVmFromIsoParams {
|
|
5444
5444
|
/** Human readable VM name. */
|
|
@@ -5523,7 +5523,7 @@ interface XcpngProvisionVmFromIsoResult {
|
|
|
5523
5523
|
steps: XcpngProvisionVmFromIsoStep[];
|
|
5524
5524
|
error?: string;
|
|
5525
5525
|
}
|
|
5526
|
-
declare const _default$
|
|
5526
|
+
declare const _default$1f: TaskFn<XcpngProvisionVmFromIsoParams, XcpngProvisionVmFromIsoResult>;
|
|
5527
5527
|
|
|
5528
5528
|
interface XcpngImportIsoParams {
|
|
5529
5529
|
/** ISO SR name-label that should surface the ISO. */
|
|
@@ -5563,7 +5563,7 @@ interface XcpngImportIsoResult {
|
|
|
5563
5563
|
commands: string[];
|
|
5564
5564
|
error?: string;
|
|
5565
5565
|
}
|
|
5566
|
-
declare const _default$
|
|
5566
|
+
declare const _default$1e: TaskFn<XcpngImportIsoParams, XcpngImportIsoResult>;
|
|
5567
5567
|
|
|
5568
5568
|
interface XcpngFindNetworkParams {
|
|
5569
5569
|
name_label?: string;
|
|
@@ -5579,7 +5579,7 @@ interface XcpngFindNetworkResult {
|
|
|
5579
5579
|
multiple?: boolean;
|
|
5580
5580
|
error?: string;
|
|
5581
5581
|
}
|
|
5582
|
-
declare const _default$
|
|
5582
|
+
declare const _default$1d: TaskFn<XcpngFindNetworkParams, XcpngFindNetworkResult>;
|
|
5583
5583
|
|
|
5584
5584
|
interface XcpngFindStorageRepositoryParams {
|
|
5585
5585
|
name_label?: string;
|
|
@@ -5597,7 +5597,7 @@ interface XcpngFindStorageRepositoryResult {
|
|
|
5597
5597
|
multiple?: boolean;
|
|
5598
5598
|
error?: string;
|
|
5599
5599
|
}
|
|
5600
|
-
declare const _default$
|
|
5600
|
+
declare const _default$1c: TaskFn<XcpngFindStorageRepositoryParams, XcpngFindStorageRepositoryResult>;
|
|
5601
5601
|
|
|
5602
5602
|
interface XcpngFindOrCreateIsoSrParams {
|
|
5603
5603
|
/** Desired `name-label` for the ISO SR. */
|
|
@@ -5647,7 +5647,7 @@ interface XcpngFindOrCreateIsoSrResult {
|
|
|
5647
5647
|
commands: string[];
|
|
5648
5648
|
error?: string;
|
|
5649
5649
|
}
|
|
5650
|
-
declare const _default$
|
|
5650
|
+
declare const _default$1b: TaskFn<XcpngFindOrCreateIsoSrParams, XcpngFindOrCreateIsoSrResult>;
|
|
5651
5651
|
|
|
5652
5652
|
interface XcpngFindVmParams {
|
|
5653
5653
|
name_label?: string;
|
|
@@ -5664,7 +5664,7 @@ interface XcpngFindVmResult {
|
|
|
5664
5664
|
multiple?: boolean;
|
|
5665
5665
|
error?: string;
|
|
5666
5666
|
}
|
|
5667
|
-
declare const _default$
|
|
5667
|
+
declare const _default$1a: TaskFn<XcpngFindVmParams, XcpngFindVmResult>;
|
|
5668
5668
|
|
|
5669
5669
|
interface XcpngFindVdiParams {
|
|
5670
5670
|
name_label?: string;
|
|
@@ -5681,7 +5681,7 @@ interface XcpngFindVdiResult {
|
|
|
5681
5681
|
multiple?: boolean;
|
|
5682
5682
|
error?: string;
|
|
5683
5683
|
}
|
|
5684
|
-
declare const _default$
|
|
5684
|
+
declare const _default$19: TaskFn<XcpngFindVdiParams, XcpngFindVdiResult>;
|
|
5685
5685
|
|
|
5686
5686
|
interface XcpngFindTemplateParams {
|
|
5687
5687
|
name_label?: string;
|
|
@@ -5697,7 +5697,7 @@ interface XcpngFindTemplateResult {
|
|
|
5697
5697
|
multiple?: boolean;
|
|
5698
5698
|
error?: string;
|
|
5699
5699
|
}
|
|
5700
|
-
declare const _default$
|
|
5700
|
+
declare const _default$18: TaskFn<XcpngFindTemplateParams, XcpngFindTemplateResult>;
|
|
5701
5701
|
|
|
5702
5702
|
interface XcpngRebootVmParams {
|
|
5703
5703
|
vm_uuid?: string;
|
|
@@ -5712,7 +5712,7 @@ interface XcpngRebootVmResult {
|
|
|
5712
5712
|
powerState?: string;
|
|
5713
5713
|
waitAttempts?: number;
|
|
5714
5714
|
}
|
|
5715
|
-
declare const _default$
|
|
5715
|
+
declare const _default$17: TaskFn<XcpngRebootVmParams, XcpngRebootVmResult>;
|
|
5716
5716
|
|
|
5717
5717
|
interface XcpngSetPifParamParams {
|
|
5718
5718
|
pif_uuid: string;
|
|
@@ -5725,7 +5725,7 @@ interface XcpngSetPifParamResult {
|
|
|
5725
5725
|
command?: string;
|
|
5726
5726
|
error?: string;
|
|
5727
5727
|
}
|
|
5728
|
-
declare const _default$
|
|
5728
|
+
declare const _default$16: TaskFn<XcpngSetPifParamParams, XcpngSetPifParamResult>;
|
|
5729
5729
|
|
|
5730
5730
|
interface XcpngUnplugPifParams {
|
|
5731
5731
|
pif_uuid?: string;
|
|
@@ -5741,7 +5741,7 @@ interface XcpngUnplugPifResult {
|
|
|
5741
5741
|
skipped?: boolean;
|
|
5742
5742
|
error?: string;
|
|
5743
5743
|
}
|
|
5744
|
-
declare const _default$
|
|
5744
|
+
declare const _default$15: TaskFn<XcpngUnplugPifParams, XcpngUnplugPifResult>;
|
|
5745
5745
|
|
|
5746
5746
|
interface XcpngPifScanParams {
|
|
5747
5747
|
host_uuid?: string;
|
|
@@ -5755,7 +5755,7 @@ interface XcpngPifScanResult {
|
|
|
5755
5755
|
skipped?: boolean;
|
|
5756
5756
|
error?: string;
|
|
5757
5757
|
}
|
|
5758
|
-
declare const _default$
|
|
5758
|
+
declare const _default$14: TaskFn<XcpngPifScanParams, XcpngPifScanResult>;
|
|
5759
5759
|
|
|
5760
5760
|
interface XcpngPlugPifParams {
|
|
5761
5761
|
pif_uuid?: string;
|
|
@@ -5771,7 +5771,7 @@ interface XcpngPlugPifResult {
|
|
|
5771
5771
|
skipped?: boolean;
|
|
5772
5772
|
error?: string;
|
|
5773
5773
|
}
|
|
5774
|
-
declare const _default
|
|
5774
|
+
declare const _default$13: TaskFn<XcpngPlugPifParams, XcpngPlugPifResult>;
|
|
5775
5775
|
|
|
5776
5776
|
interface XcpngListSrParamsParams {
|
|
5777
5777
|
filters?: XeFilterInput;
|
|
@@ -5781,7 +5781,7 @@ interface XcpngListSrParamsResult {
|
|
|
5781
5781
|
items?: Array<Record<string, string>>;
|
|
5782
5782
|
error?: string;
|
|
5783
5783
|
}
|
|
5784
|
-
declare const _default$
|
|
5784
|
+
declare const _default$12: TaskFn<XcpngListSrParamsParams, XcpngListSrParamsResult>;
|
|
5785
5785
|
|
|
5786
5786
|
interface XcpngSetSrParamParams {
|
|
5787
5787
|
sr_uuid?: string;
|
|
@@ -5795,7 +5795,7 @@ interface XcpngSetSrParamResult {
|
|
|
5795
5795
|
appliedCommands: string[];
|
|
5796
5796
|
error?: string;
|
|
5797
5797
|
}
|
|
5798
|
-
declare const _default$
|
|
5798
|
+
declare const _default$11: TaskFn<XcpngSetSrParamParams, XcpngSetSrParamResult>;
|
|
5799
5799
|
|
|
5800
5800
|
interface XcpngSetNetworkParamParams {
|
|
5801
5801
|
network_uuid?: string;
|
|
@@ -5809,7 +5809,7 @@ interface XcpngSetNetworkParamResult {
|
|
|
5809
5809
|
appliedCommands: string[];
|
|
5810
5810
|
error?: string;
|
|
5811
5811
|
}
|
|
5812
|
-
declare const _default$
|
|
5812
|
+
declare const _default$10: TaskFn<XcpngSetNetworkParamParams, XcpngSetNetworkParamResult>;
|
|
5813
5813
|
|
|
5814
5814
|
interface XcpngSetPoolParamParams {
|
|
5815
5815
|
pool_uuid?: string;
|
|
@@ -5823,7 +5823,7 @@ interface XcpngSetPoolParamResult {
|
|
|
5823
5823
|
appliedCommands: string[];
|
|
5824
5824
|
error?: string;
|
|
5825
5825
|
}
|
|
5826
|
-
declare const _default
|
|
5826
|
+
declare const _default$$: TaskFn<XcpngSetPoolParamParams, XcpngSetPoolParamResult>;
|
|
5827
5827
|
|
|
5828
5828
|
interface XcpngListPoolsParams {
|
|
5829
5829
|
filters?: XeFilterInput;
|
|
@@ -5833,7 +5833,7 @@ interface XcpngListPoolsResult {
|
|
|
5833
5833
|
items?: Array<Record<string, string>>;
|
|
5834
5834
|
error?: string;
|
|
5835
5835
|
}
|
|
5836
|
-
declare const _default$
|
|
5836
|
+
declare const _default$_: TaskFn<XcpngListPoolsParams, XcpngListPoolsResult>;
|
|
5837
5837
|
|
|
5838
5838
|
interface XcpngFindPoolParams {
|
|
5839
5839
|
uuid?: string;
|
|
@@ -5849,7 +5849,7 @@ interface XcpngFindPoolResult {
|
|
|
5849
5849
|
multiple?: boolean;
|
|
5850
5850
|
error?: string;
|
|
5851
5851
|
}
|
|
5852
|
-
declare const _default$
|
|
5852
|
+
declare const _default$Z: TaskFn<XcpngFindPoolParams, XcpngFindPoolResult>;
|
|
5853
5853
|
|
|
5854
5854
|
interface XcpngUnplugPbdParams {
|
|
5855
5855
|
pbd_uuid?: string;
|
|
@@ -5864,7 +5864,7 @@ interface XcpngUnplugPbdResult {
|
|
|
5864
5864
|
skipped?: boolean;
|
|
5865
5865
|
error?: string;
|
|
5866
5866
|
}
|
|
5867
|
-
declare const _default$
|
|
5867
|
+
declare const _default$Y: TaskFn<XcpngUnplugPbdParams, XcpngUnplugPbdResult>;
|
|
5868
5868
|
|
|
5869
5869
|
interface XcpngPlugPbdParams {
|
|
5870
5870
|
pbd_uuid?: string;
|
|
@@ -5879,7 +5879,7 @@ interface XcpngPlugPbdResult {
|
|
|
5879
5879
|
skipped?: boolean;
|
|
5880
5880
|
error?: string;
|
|
5881
5881
|
}
|
|
5882
|
-
declare const _default$
|
|
5882
|
+
declare const _default$X: TaskFn<XcpngPlugPbdParams, XcpngPlugPbdResult>;
|
|
5883
5883
|
|
|
5884
5884
|
interface XcpngDestroyPbdParams {
|
|
5885
5885
|
pbd_uuid?: string;
|
|
@@ -5896,7 +5896,7 @@ interface XcpngDestroyPbdResult {
|
|
|
5896
5896
|
skipped?: boolean;
|
|
5897
5897
|
error?: string;
|
|
5898
5898
|
}
|
|
5899
|
-
declare const _default$
|
|
5899
|
+
declare const _default$W: TaskFn<XcpngDestroyPbdParams, XcpngDestroyPbdResult>;
|
|
5900
5900
|
|
|
5901
5901
|
interface XcpngCreatePbdParams {
|
|
5902
5902
|
host_uuid?: string;
|
|
@@ -5916,7 +5916,7 @@ interface XcpngCreatePbdResult {
|
|
|
5916
5916
|
skipped?: boolean;
|
|
5917
5917
|
error?: string;
|
|
5918
5918
|
}
|
|
5919
|
-
declare const _default$
|
|
5919
|
+
declare const _default$V: TaskFn<XcpngCreatePbdParams, XcpngCreatePbdResult>;
|
|
5920
5920
|
|
|
5921
5921
|
interface XcpngListPbdsParams {
|
|
5922
5922
|
filters?: XeFilterInput;
|
|
@@ -5929,7 +5929,7 @@ interface XcpngListPbdsResult {
|
|
|
5929
5929
|
items?: XcpngPbdRecord[];
|
|
5930
5930
|
error?: string;
|
|
5931
5931
|
}
|
|
5932
|
-
declare const _default$
|
|
5932
|
+
declare const _default$U: TaskFn<XcpngListPbdsParams, XcpngListPbdsResult>;
|
|
5933
5933
|
|
|
5934
5934
|
interface XcpngFindPbdParams {
|
|
5935
5935
|
uuid?: string;
|
|
@@ -5946,7 +5946,7 @@ interface XcpngFindPbdResult {
|
|
|
5946
5946
|
multiple?: boolean;
|
|
5947
5947
|
error?: string;
|
|
5948
5948
|
}
|
|
5949
|
-
declare const _default$
|
|
5949
|
+
declare const _default$T: TaskFn<XcpngFindPbdParams, XcpngFindPbdResult>;
|
|
5950
5950
|
|
|
5951
5951
|
interface XcpngListPbdParamsParams {
|
|
5952
5952
|
filters?: XeFilterInput;
|
|
@@ -5956,7 +5956,7 @@ interface XcpngListPbdParamsResult {
|
|
|
5956
5956
|
items?: Array<Record<string, string>>;
|
|
5957
5957
|
error?: string;
|
|
5958
5958
|
}
|
|
5959
|
-
declare const _default$
|
|
5959
|
+
declare const _default$S: TaskFn<XcpngListPbdParamsParams, XcpngListPbdParamsResult>;
|
|
5960
5960
|
|
|
5961
5961
|
interface XcpngEvacuateHostParams {
|
|
5962
5962
|
host_uuid?: string;
|
|
@@ -5970,7 +5970,7 @@ interface XcpngEvacuateHostResult {
|
|
|
5970
5970
|
skipped?: boolean;
|
|
5971
5971
|
error?: string;
|
|
5972
5972
|
}
|
|
5973
|
-
declare const _default$
|
|
5973
|
+
declare const _default$R: TaskFn<XcpngEvacuateHostParams, XcpngEvacuateHostResult>;
|
|
5974
5974
|
|
|
5975
5975
|
interface XcpngShutdownHostParams {
|
|
5976
5976
|
host_uuid?: string;
|
|
@@ -5985,7 +5985,7 @@ interface XcpngShutdownHostResult {
|
|
|
5985
5985
|
skipped?: boolean;
|
|
5986
5986
|
error?: string;
|
|
5987
5987
|
}
|
|
5988
|
-
declare const _default$
|
|
5988
|
+
declare const _default$Q: TaskFn<XcpngShutdownHostParams, XcpngShutdownHostResult>;
|
|
5989
5989
|
|
|
5990
5990
|
interface XcpngRebootHostParams {
|
|
5991
5991
|
host_uuid?: string;
|
|
@@ -6000,7 +6000,7 @@ interface XcpngRebootHostResult {
|
|
|
6000
6000
|
skipped?: boolean;
|
|
6001
6001
|
error?: string;
|
|
6002
6002
|
}
|
|
6003
|
-
declare const _default$
|
|
6003
|
+
declare const _default$P: TaskFn<XcpngRebootHostParams, XcpngRebootHostResult>;
|
|
6004
6004
|
|
|
6005
6005
|
interface XcpngDisableHostParams {
|
|
6006
6006
|
host_uuid?: string;
|
|
@@ -6017,7 +6017,7 @@ interface XcpngDisableHostResult {
|
|
|
6017
6017
|
evacuated?: boolean;
|
|
6018
6018
|
error?: string;
|
|
6019
6019
|
}
|
|
6020
|
-
declare const _default$
|
|
6020
|
+
declare const _default$O: TaskFn<XcpngDisableHostParams, XcpngDisableHostResult>;
|
|
6021
6021
|
|
|
6022
6022
|
interface XcpngEnableHostParams {
|
|
6023
6023
|
host_uuid?: string;
|
|
@@ -6032,7 +6032,7 @@ interface XcpngEnableHostResult {
|
|
|
6032
6032
|
skipped?: boolean;
|
|
6033
6033
|
error?: string;
|
|
6034
6034
|
}
|
|
6035
|
-
declare const _default$
|
|
6035
|
+
declare const _default$N: TaskFn<XcpngEnableHostParams, XcpngEnableHostResult>;
|
|
6036
6036
|
|
|
6037
6037
|
interface XcpngListHostsParams {
|
|
6038
6038
|
filters?: XeFilterInput;
|
|
@@ -6042,7 +6042,7 @@ interface XcpngListHostsResult {
|
|
|
6042
6042
|
items?: Array<Record<string, string>>;
|
|
6043
6043
|
error?: string;
|
|
6044
6044
|
}
|
|
6045
|
-
declare const _default$
|
|
6045
|
+
declare const _default$M: TaskFn<XcpngListHostsParams, XcpngListHostsResult>;
|
|
6046
6046
|
|
|
6047
6047
|
interface XcpngFindHostParams {
|
|
6048
6048
|
name_label?: string;
|
|
@@ -6058,7 +6058,7 @@ interface XcpngFindHostResult {
|
|
|
6058
6058
|
multiple?: boolean;
|
|
6059
6059
|
error?: string;
|
|
6060
6060
|
}
|
|
6061
|
-
declare const _default$
|
|
6061
|
+
declare const _default$L: TaskFn<XcpngFindHostParams, XcpngFindHostResult>;
|
|
6062
6062
|
|
|
6063
6063
|
interface XcpngClearMessagesParams {
|
|
6064
6064
|
uuid?: string;
|
|
@@ -6072,7 +6072,7 @@ interface XcpngClearMessagesResult {
|
|
|
6072
6072
|
commands?: Array<string>;
|
|
6073
6073
|
error?: string;
|
|
6074
6074
|
}
|
|
6075
|
-
declare const _default$
|
|
6075
|
+
declare const _default$K: TaskFn<XcpngClearMessagesParams, XcpngClearMessagesResult>;
|
|
6076
6076
|
|
|
6077
6077
|
interface XcpngListMessagesParams {
|
|
6078
6078
|
filters?: XeFilterInput;
|
|
@@ -6082,7 +6082,7 @@ interface XcpngListMessagesResult {
|
|
|
6082
6082
|
items?: Array<Record<string, string>>;
|
|
6083
6083
|
error?: string;
|
|
6084
6084
|
}
|
|
6085
|
-
declare const _default$
|
|
6085
|
+
declare const _default$J: TaskFn<XcpngListMessagesParams, XcpngListMessagesResult>;
|
|
6086
6086
|
|
|
6087
6087
|
interface XcpngListSnapshotsParams {
|
|
6088
6088
|
filters?: XeFilterInput;
|
|
@@ -6092,7 +6092,7 @@ interface XcpngListSnapshotsResult {
|
|
|
6092
6092
|
items?: Array<Record<string, string>>;
|
|
6093
6093
|
error?: string;
|
|
6094
6094
|
}
|
|
6095
|
-
declare const _default$
|
|
6095
|
+
declare const _default$I: TaskFn<XcpngListSnapshotsParams, XcpngListSnapshotsResult>;
|
|
6096
6096
|
|
|
6097
6097
|
interface XcpngForgetSrParams {
|
|
6098
6098
|
sr_uuid?: string;
|
|
@@ -6106,7 +6106,7 @@ interface XcpngForgetSrResult {
|
|
|
6106
6106
|
skipped?: boolean;
|
|
6107
6107
|
error?: string;
|
|
6108
6108
|
}
|
|
6109
|
-
declare const _default$
|
|
6109
|
+
declare const _default$H: TaskFn<XcpngForgetSrParams, XcpngForgetSrResult>;
|
|
6110
6110
|
|
|
6111
6111
|
interface XcpngIntroduceSrParams {
|
|
6112
6112
|
sr_uuid: string;
|
|
@@ -6121,7 +6121,7 @@ interface XcpngIntroduceSrResult {
|
|
|
6121
6121
|
appliedCommands: string[];
|
|
6122
6122
|
error?: string;
|
|
6123
6123
|
}
|
|
6124
|
-
declare const _default$
|
|
6124
|
+
declare const _default$G: TaskFn<XcpngIntroduceSrParams, XcpngIntroduceSrResult>;
|
|
6125
6125
|
|
|
6126
6126
|
interface XcpngDestroySrParams {
|
|
6127
6127
|
sr_uuid?: string;
|
|
@@ -6136,7 +6136,7 @@ interface XcpngDestroySrResult {
|
|
|
6136
6136
|
skipped?: boolean;
|
|
6137
6137
|
error?: string;
|
|
6138
6138
|
}
|
|
6139
|
-
declare const _default$
|
|
6139
|
+
declare const _default$F: TaskFn<XcpngDestroySrParams, XcpngDestroySrResult>;
|
|
6140
6140
|
|
|
6141
6141
|
interface XcpngCreateSrParams {
|
|
6142
6142
|
name_label: string;
|
|
@@ -6153,7 +6153,7 @@ interface XcpngCreateSrResult {
|
|
|
6153
6153
|
skipped?: boolean;
|
|
6154
6154
|
error?: string;
|
|
6155
6155
|
}
|
|
6156
|
-
declare const _default$
|
|
6156
|
+
declare const _default$E: TaskFn<XcpngCreateSrParams, XcpngCreateSrResult>;
|
|
6157
6157
|
|
|
6158
6158
|
interface XcpngDetachVdiParams {
|
|
6159
6159
|
vbd_uuid?: string;
|
|
@@ -6174,7 +6174,7 @@ interface XcpngDetachVdiResult {
|
|
|
6174
6174
|
appliedCommands: string[];
|
|
6175
6175
|
error?: string;
|
|
6176
6176
|
}
|
|
6177
|
-
declare const _default$
|
|
6177
|
+
declare const _default$D: TaskFn<XcpngDetachVdiParams, XcpngDetachVdiResult>;
|
|
6178
6178
|
|
|
6179
6179
|
interface XcpngDetachNetworkInterfaceParams {
|
|
6180
6180
|
vif_uuid?: string;
|
|
@@ -6191,7 +6191,7 @@ interface XcpngDetachNetworkInterfaceResult {
|
|
|
6191
6191
|
appliedCommands: string[];
|
|
6192
6192
|
error?: string;
|
|
6193
6193
|
}
|
|
6194
|
-
declare const _default$
|
|
6194
|
+
declare const _default$C: TaskFn<XcpngDetachNetworkInterfaceParams, XcpngDetachNetworkInterfaceResult>;
|
|
6195
6195
|
|
|
6196
6196
|
interface XcpngDetachIsoParams {
|
|
6197
6197
|
vm_uuid: string;
|
|
@@ -6204,7 +6204,7 @@ interface XcpngDetachIsoResult {
|
|
|
6204
6204
|
alreadyEmpty?: boolean;
|
|
6205
6205
|
error?: string;
|
|
6206
6206
|
}
|
|
6207
|
-
declare const _default$
|
|
6207
|
+
declare const _default$B: TaskFn<XcpngDetachIsoParams, XcpngDetachIsoResult>;
|
|
6208
6208
|
|
|
6209
6209
|
interface XcpngVmImportParams {
|
|
6210
6210
|
filename: string;
|
|
@@ -6221,7 +6221,7 @@ interface XcpngVmImportResult {
|
|
|
6221
6221
|
appliedCommands: string[];
|
|
6222
6222
|
error?: string;
|
|
6223
6223
|
}
|
|
6224
|
-
declare const _default$
|
|
6224
|
+
declare const _default$A: TaskFn<XcpngVmImportParams, XcpngVmImportResult>;
|
|
6225
6225
|
|
|
6226
6226
|
interface XcpngVmExportParams {
|
|
6227
6227
|
vm_uuid?: string;
|
|
@@ -6241,7 +6241,7 @@ interface XcpngVmExportResult {
|
|
|
6241
6241
|
skipped?: boolean;
|
|
6242
6242
|
error?: string;
|
|
6243
6243
|
}
|
|
6244
|
-
declare const _default$
|
|
6244
|
+
declare const _default$z: TaskFn<XcpngVmExportParams, XcpngVmExportResult>;
|
|
6245
6245
|
|
|
6246
6246
|
interface XcpngVmMigrateParams {
|
|
6247
6247
|
vm_uuid?: string;
|
|
@@ -6264,7 +6264,7 @@ interface XcpngVmMigrateResult {
|
|
|
6264
6264
|
skipped?: boolean;
|
|
6265
6265
|
error?: string;
|
|
6266
6266
|
}
|
|
6267
|
-
declare const _default$
|
|
6267
|
+
declare const _default$y: TaskFn<XcpngVmMigrateParams, XcpngVmMigrateResult>;
|
|
6268
6268
|
|
|
6269
6269
|
interface XcpngVmCopyParams {
|
|
6270
6270
|
vm_uuid?: string;
|
|
@@ -6286,7 +6286,7 @@ interface XcpngVmCopyResult {
|
|
|
6286
6286
|
skipped?: boolean;
|
|
6287
6287
|
error?: string;
|
|
6288
6288
|
}
|
|
6289
|
-
declare const _default$
|
|
6289
|
+
declare const _default$x: TaskFn<XcpngVmCopyParams, XcpngVmCopyResult>;
|
|
6290
6290
|
|
|
6291
6291
|
interface XcpngExportVdiParams {
|
|
6292
6292
|
vdi_uuid?: string;
|
|
@@ -6305,7 +6305,7 @@ interface XcpngExportVdiResult {
|
|
|
6305
6305
|
skipped?: boolean;
|
|
6306
6306
|
error?: string;
|
|
6307
6307
|
}
|
|
6308
|
-
declare const _default$
|
|
6308
|
+
declare const _default$w: TaskFn<XcpngExportVdiParams, XcpngExportVdiResult>;
|
|
6309
6309
|
|
|
6310
6310
|
interface XcpngCopyVdiParams {
|
|
6311
6311
|
source_vdi_uuid?: string;
|
|
@@ -6329,7 +6329,7 @@ interface XcpngCopyVdiResult {
|
|
|
6329
6329
|
skipped?: boolean;
|
|
6330
6330
|
error?: string;
|
|
6331
6331
|
}
|
|
6332
|
-
declare const _default$
|
|
6332
|
+
declare const _default$v: TaskFn<XcpngCopyVdiParams, XcpngCopyVdiResult>;
|
|
6333
6333
|
|
|
6334
6334
|
interface XcpngDestroyVmParams {
|
|
6335
6335
|
vm_uuid?: string;
|
|
@@ -6349,7 +6349,7 @@ interface XcpngDestroyVmResult {
|
|
|
6349
6349
|
skipped?: boolean;
|
|
6350
6350
|
error?: string;
|
|
6351
6351
|
}
|
|
6352
|
-
declare const _default$
|
|
6352
|
+
declare const _default$u: TaskFn<XcpngDestroyVmParams, XcpngDestroyVmResult>;
|
|
6353
6353
|
|
|
6354
6354
|
interface XcpngDestroyVdiParams {
|
|
6355
6355
|
/** Target VDI UUID. */
|
|
@@ -6368,7 +6368,7 @@ interface XcpngDestroyVdiResult {
|
|
|
6368
6368
|
skipped?: boolean;
|
|
6369
6369
|
error?: string;
|
|
6370
6370
|
}
|
|
6371
|
-
declare const _default$
|
|
6371
|
+
declare const _default$t: TaskFn<XcpngDestroyVdiParams, XcpngDestroyVdiResult>;
|
|
6372
6372
|
|
|
6373
6373
|
interface XcpngDestroyNetworkParams {
|
|
6374
6374
|
network_uuid?: string;
|
|
@@ -6382,7 +6382,7 @@ interface XcpngDestroyNetworkResult {
|
|
|
6382
6382
|
skipped?: boolean;
|
|
6383
6383
|
error?: string;
|
|
6384
6384
|
}
|
|
6385
|
-
declare const _default$
|
|
6385
|
+
declare const _default$s: TaskFn<XcpngDestroyNetworkParams, XcpngDestroyNetworkResult>;
|
|
6386
6386
|
|
|
6387
6387
|
interface XcpngDestroyTemplateParams {
|
|
6388
6388
|
template_uuid?: string;
|
|
@@ -6398,7 +6398,7 @@ interface XcpngDestroyTemplateResult {
|
|
|
6398
6398
|
skipped?: boolean;
|
|
6399
6399
|
error?: string;
|
|
6400
6400
|
}
|
|
6401
|
-
declare const _default$
|
|
6401
|
+
declare const _default$r: TaskFn<XcpngDestroyTemplateParams, XcpngDestroyTemplateResult>;
|
|
6402
6402
|
|
|
6403
6403
|
interface XcpngDestroyIsoSrParams {
|
|
6404
6404
|
/** Target SR UUID. */
|
|
@@ -6418,7 +6418,7 @@ interface XcpngDestroyIsoSrResult {
|
|
|
6418
6418
|
skipped?: boolean;
|
|
6419
6419
|
error?: string;
|
|
6420
6420
|
}
|
|
6421
|
-
declare const _default$
|
|
6421
|
+
declare const _default$q: TaskFn<XcpngDestroyIsoSrParams, XcpngDestroyIsoSrResult>;
|
|
6422
6422
|
|
|
6423
6423
|
interface XcpngDestroyBondParams {
|
|
6424
6424
|
bond_uuid?: string;
|
|
@@ -6432,7 +6432,7 @@ interface XcpngDestroyBondResult {
|
|
|
6432
6432
|
skipped?: boolean;
|
|
6433
6433
|
error?: string;
|
|
6434
6434
|
}
|
|
6435
|
-
declare const _default$
|
|
6435
|
+
declare const _default$p: TaskFn<XcpngDestroyBondParams, XcpngDestroyBondResult>;
|
|
6436
6436
|
|
|
6437
6437
|
interface XcpngDestroySnapshotParams {
|
|
6438
6438
|
snapshot_uuid: string;
|
|
@@ -6443,7 +6443,7 @@ interface XcpngDestroySnapshotResult {
|
|
|
6443
6443
|
command?: string;
|
|
6444
6444
|
error?: string;
|
|
6445
6445
|
}
|
|
6446
|
-
declare const _default$
|
|
6446
|
+
declare const _default$o: TaskFn<XcpngDestroySnapshotParams, XcpngDestroySnapshotResult>;
|
|
6447
6447
|
|
|
6448
6448
|
interface XcpngConvertTemplateToVmParams {
|
|
6449
6449
|
template_uuid?: string;
|
|
@@ -6462,7 +6462,7 @@ interface XcpngConvertTemplateToVmResult {
|
|
|
6462
6462
|
alreadyVm?: boolean;
|
|
6463
6463
|
error?: string;
|
|
6464
6464
|
}
|
|
6465
|
-
declare const _default$
|
|
6465
|
+
declare const _default$n: TaskFn<XcpngConvertTemplateToVmParams, XcpngConvertTemplateToVmResult>;
|
|
6466
6466
|
|
|
6467
6467
|
/**
|
|
6468
6468
|
* Parameters for provisioning a new VM on an XCP-ng host.
|
|
@@ -6504,7 +6504,7 @@ interface XcpngCreateVmResult {
|
|
|
6504
6504
|
appliedCommands: string[];
|
|
6505
6505
|
error?: string;
|
|
6506
6506
|
}
|
|
6507
|
-
declare const _default$
|
|
6507
|
+
declare const _default$m: TaskFn<XcpngCreateVmParams, XcpngCreateVmResult>;
|
|
6508
6508
|
|
|
6509
6509
|
/**
|
|
6510
6510
|
* Parameters required to create a new virtual disk image (VDI) on an XCP-ng storage repository.
|
|
@@ -6537,7 +6537,7 @@ interface XcpngCreateVdiResult {
|
|
|
6537
6537
|
command?: string;
|
|
6538
6538
|
error?: string;
|
|
6539
6539
|
}
|
|
6540
|
-
declare const _default$
|
|
6540
|
+
declare const _default$l: TaskFn<XcpngCreateVdiParams, XcpngCreateVdiResult>;
|
|
6541
6541
|
|
|
6542
6542
|
interface XcpngCreateTemplateFromVdiParams {
|
|
6543
6543
|
template_name_label: string;
|
|
@@ -6582,7 +6582,7 @@ interface XcpngCreateTemplateFromVdiResult {
|
|
|
6582
6582
|
error?: string;
|
|
6583
6583
|
skipped?: boolean;
|
|
6584
6584
|
}
|
|
6585
|
-
declare const _default$
|
|
6585
|
+
declare const _default$k: TaskFn<XcpngCreateTemplateFromVdiParams, XcpngCreateTemplateFromVdiResult>;
|
|
6586
6586
|
|
|
6587
6587
|
interface XcpngCloneTemplateParams {
|
|
6588
6588
|
source_template_uuid?: string;
|
|
@@ -6602,7 +6602,7 @@ interface XcpngCloneTemplateResult {
|
|
|
6602
6602
|
alreadyExists?: boolean;
|
|
6603
6603
|
error?: string;
|
|
6604
6604
|
}
|
|
6605
|
-
declare const _default$
|
|
6605
|
+
declare const _default$j: TaskFn<XcpngCloneTemplateParams, XcpngCloneTemplateResult>;
|
|
6606
6606
|
|
|
6607
6607
|
interface XcpngCreateBondParams {
|
|
6608
6608
|
host_uuid?: string;
|
|
@@ -6624,7 +6624,7 @@ interface XcpngCreateBondResult {
|
|
|
6624
6624
|
appliedCommands: string[];
|
|
6625
6625
|
error?: string;
|
|
6626
6626
|
}
|
|
6627
|
-
declare const _default$
|
|
6627
|
+
declare const _default$i: TaskFn<XcpngCreateBondParams, XcpngCreateBondResult>;
|
|
6628
6628
|
|
|
6629
6629
|
interface XcpngDetachCdMediaParams {
|
|
6630
6630
|
vm_uuid: string;
|
|
@@ -6645,7 +6645,7 @@ interface XcpngDetachCdMediaResult {
|
|
|
6645
6645
|
error?: string;
|
|
6646
6646
|
skipped?: boolean;
|
|
6647
6647
|
}
|
|
6648
|
-
declare const _default$
|
|
6648
|
+
declare const _default$h: TaskFn<XcpngDetachCdMediaParams, XcpngDetachCdMediaResult>;
|
|
6649
6649
|
|
|
6650
6650
|
interface XcpngCleanupConfigDriveParams {
|
|
6651
6651
|
vm_uuid?: string;
|
|
@@ -6669,7 +6669,7 @@ interface XcpngCleanupConfigDriveResult {
|
|
|
6669
6669
|
error?: string;
|
|
6670
6670
|
skipped?: boolean;
|
|
6671
6671
|
}
|
|
6672
|
-
declare const _default$
|
|
6672
|
+
declare const _default$g: TaskFn<XcpngCleanupConfigDriveParams, XcpngCleanupConfigDriveResult>;
|
|
6673
6673
|
|
|
6674
6674
|
interface XcpngCreateConfigDriveParams {
|
|
6675
6675
|
iso_sr_uuid?: string;
|
|
@@ -6710,7 +6710,7 @@ interface XcpngCreateConfigDriveResult {
|
|
|
6710
6710
|
steps: XcpngCreateConfigDriveStep[];
|
|
6711
6711
|
error?: string;
|
|
6712
6712
|
}
|
|
6713
|
-
declare const _default$
|
|
6713
|
+
declare const _default$f: TaskFn<XcpngCreateConfigDriveParams, XcpngCreateConfigDriveResult>;
|
|
6714
6714
|
|
|
6715
6715
|
interface XcpngCreateNetworkParams {
|
|
6716
6716
|
name_label: string;
|
|
@@ -6727,7 +6727,7 @@ interface XcpngCreateNetworkResult {
|
|
|
6727
6727
|
skipped?: boolean;
|
|
6728
6728
|
error?: string;
|
|
6729
6729
|
}
|
|
6730
|
-
declare const _default$
|
|
6730
|
+
declare const _default$e: TaskFn<XcpngCreateNetworkParams, XcpngCreateNetworkResult>;
|
|
6731
6731
|
|
|
6732
6732
|
interface XcpngCreateTemplateParams {
|
|
6733
6733
|
source_vm_uuid?: string;
|
|
@@ -6745,7 +6745,7 @@ interface XcpngCreateTemplateResult {
|
|
|
6745
6745
|
powerState?: string;
|
|
6746
6746
|
waitAttempts?: number;
|
|
6747
6747
|
}
|
|
6748
|
-
declare const _default$
|
|
6748
|
+
declare const _default$d: TaskFn<XcpngCreateTemplateParams, XcpngCreateTemplateResult>;
|
|
6749
6749
|
|
|
6750
6750
|
/**
|
|
6751
6751
|
* Parameters for attaching an existing virtual disk image to a VM.
|
|
@@ -6775,7 +6775,7 @@ interface XcpngAttachVdiResult {
|
|
|
6775
6775
|
plugged?: boolean;
|
|
6776
6776
|
error?: string;
|
|
6777
6777
|
}
|
|
6778
|
-
declare const _default$
|
|
6778
|
+
declare const _default$c: TaskFn<XcpngAttachVdiParams, XcpngAttachVdiResult>;
|
|
6779
6779
|
|
|
6780
6780
|
/**
|
|
6781
6781
|
* Parameters for attaching a virtual network interface (VIF) to a VM.
|
|
@@ -6805,7 +6805,7 @@ interface XcpngAttachNetworkInterfaceResult {
|
|
|
6805
6805
|
plugged?: boolean;
|
|
6806
6806
|
error?: string;
|
|
6807
6807
|
}
|
|
6808
|
-
declare const _default$
|
|
6808
|
+
declare const _default$b: TaskFn<XcpngAttachNetworkInterfaceParams, XcpngAttachNetworkInterfaceResult>;
|
|
6809
6809
|
|
|
6810
6810
|
/**
|
|
6811
6811
|
* Parameters for inserting an ISO image into a VM's virtual CD drive.
|
|
@@ -6831,7 +6831,7 @@ interface XcpngAttachIsoResult {
|
|
|
6831
6831
|
plugged?: boolean;
|
|
6832
6832
|
error?: string;
|
|
6833
6833
|
}
|
|
6834
|
-
declare const _default$
|
|
6834
|
+
declare const _default$a: TaskFn<XcpngAttachIsoParams, XcpngAttachIsoResult>;
|
|
6835
6835
|
|
|
6836
6836
|
interface XcpngAddDiskParams {
|
|
6837
6837
|
vm_uuid: string;
|
|
@@ -6860,7 +6860,7 @@ interface XcpngAddDiskResult {
|
|
|
6860
6860
|
plugged?: boolean;
|
|
6861
6861
|
error?: string;
|
|
6862
6862
|
}
|
|
6863
|
-
declare const _default$
|
|
6863
|
+
declare const _default$9: TaskFn<XcpngAddDiskParams, XcpngAddDiskResult>;
|
|
6864
6864
|
|
|
6865
6865
|
declare const xcpngTasks: {
|
|
6866
6866
|
addDisk: TaskFn<XcpngAddDiskParams, XcpngAddDiskResult>;
|
|
@@ -6971,10 +6971,10 @@ declare const xcpngTasks: {
|
|
|
6971
6971
|
};
|
|
6972
6972
|
|
|
6973
6973
|
declare namespace xcpng {
|
|
6974
|
-
export { _default$
|
|
6974
|
+
export { _default$9 as addDisk, _default$a as attachIso, _default$b as attachNetworkInterface, _default$c as attachVdi, _default$g as cleanupConfigDrive, _default$K as clearMessages, _default$j as cloneTemplate, _default$n as convertTemplateToVm, _default$v as copyVdi, _default$i as createBond, _default$f as createConfigDrive, _default$e as createNetwork, _default$V as createPbd, _default$E as createSr, _default$d as createTemplate, _default$k as createTemplateFromVdi, _default$l as createVdi, _default$m as createVm, xcpngTasks as default, _default$p as destroyBond, _default$q as destroyIsoSr, _default$s as destroyNetwork, _default$W as destroyPbd, _default$o as destroySnapshot, _default$F as destroySr, _default$r as destroyTemplate, _default$t as destroyVdi, _default$u as destroyVm, _default$h as detachCdMedia, _default$B as detachIso, _default$C as detachNetworkInterface, _default$D as detachVdi, _default$O as disableHost, _default$N as enableHost, _default$R as evacuateHost, _default$w as exportVdi, _default$L as findHost, _default$1d as findNetwork, _default$1b as findOrCreateIsoSr, _default$T as findPbd, _default$Z as findPool, _default$1c as findStorageRepository, _default$18 as findTemplate, _default$19 as findVdi, _default$1a as findVm, _default$H as forgetSr, _default$1K as getVmInfo, _default$1e as importIso, _default$1t as importVdi, _default$G as introduceSr, _default$1N as listAttachedDisks, _default$M as listHosts, _default$J as listMessages, _default$1k as listNetworkParams, _default$1j as listNetworks, _default$S as listPbdParams, _default$U as listPbds, _default$1q as listPifParams, _default$1p as listPifs, _default$_ as listPools, _default$I as listSnapshots, _default$12 as listSrParams, _default$1i as listStorageRepositories, _default$1m as listTemplateParams, _default$1l as listTemplates, _default$1n as listVbdParams, _default$1M as listVbds, _default$1s as listVdiParams, _default$1r as listVdis, _default$1o as listVifParams, _default$1L as listVifs, _default$1v as listVmParams, _default$1u as listVms, _default$14 as pifScan, _default$X as plugPbd, _default$13 as plugPif, _default$1g as provisionVm, _default$1f as provisionVmFromIso, _default$P as rebootHost, _default$17 as rebootVm, _default$1z as removeDisk, _default$1w as resizeVdi, _default$1x as resizeVmCpus, _default$1y as resizeVmMemory, _default$1F as resumeVm, _default$1A as revertSnapshot, _default$1C as setBootOrder, _default$10 as setNetworkParam, _default$16 as setPifParam, _default$$ as setPoolParam, _default$1B as setSnapshotParam, _default$11 as setSrParam, _default$1D as setVmResources, _default$Q as shutdownHost, _default$1H as snapshotVm, _default$1I as startVm, _default$1J as stopVm, _default$1E as suspendVm, _default$Y as unplugPbd, _default$15 as unplugPif, _default$1G as unplugVbd, _default$1h as uploadIso, _default$x as vmCopy, _default$z as vmExport, _default$A as vmImport, _default$y as vmMigrate };
|
|
6975
6975
|
}
|
|
6976
6976
|
|
|
6977
|
-
declare const _default$
|
|
6977
|
+
declare const _default$8: TaskFn<{
|
|
6978
6978
|
content: string;
|
|
6979
6979
|
name: string;
|
|
6980
6980
|
sudo?: boolean | undefined;
|
|
@@ -6987,10 +6987,10 @@ declare const _default$4: TaskFn<{
|
|
|
6987
6987
|
}>;
|
|
6988
6988
|
|
|
6989
6989
|
declare namespace yum {
|
|
6990
|
-
export { _default$
|
|
6990
|
+
export { _default$8 as add_repository };
|
|
6991
6991
|
}
|
|
6992
6992
|
|
|
6993
|
-
declare const _default$
|
|
6993
|
+
declare const _default$7: TaskFn<{
|
|
6994
6994
|
url: string;
|
|
6995
6995
|
dest: string;
|
|
6996
6996
|
mode?: string | number | undefined;
|
|
@@ -7001,7 +7001,7 @@ declare const _default$3: TaskFn<{
|
|
|
7001
7001
|
error?: string | undefined;
|
|
7002
7002
|
}>;
|
|
7003
7003
|
|
|
7004
|
-
declare const _default$
|
|
7004
|
+
declare const _default$6: TaskFn<{
|
|
7005
7005
|
sudo?: boolean | undefined;
|
|
7006
7006
|
}, {
|
|
7007
7007
|
success: true;
|
|
@@ -7034,10 +7034,20 @@ declare const _default$2: TaskFn<{
|
|
|
7034
7034
|
}>;
|
|
7035
7035
|
|
|
7036
7036
|
declare namespace net {
|
|
7037
|
-
export { _default$
|
|
7037
|
+
export { _default$7 as download, _default$6 as interfaces };
|
|
7038
7038
|
}
|
|
7039
7039
|
|
|
7040
|
-
declare const _default$
|
|
7040
|
+
declare const _default$5: TaskFn<{
|
|
7041
|
+
config: string;
|
|
7042
|
+
}, {
|
|
7043
|
+
success: true;
|
|
7044
|
+
error?: string | undefined;
|
|
7045
|
+
} | {
|
|
7046
|
+
success: false;
|
|
7047
|
+
error?: string | undefined;
|
|
7048
|
+
}>;
|
|
7049
|
+
|
|
7050
|
+
declare const _default$4: {
|
|
7041
7051
|
apply: TaskFn<{
|
|
7042
7052
|
config: string;
|
|
7043
7053
|
}, {
|
|
@@ -7050,10 +7060,15 @@ declare const _default$1: {
|
|
|
7050
7060
|
};
|
|
7051
7061
|
|
|
7052
7062
|
declare namespace nftables {
|
|
7053
|
-
export { _default$
|
|
7063
|
+
export { _default$5 as apply, _default$4 as default };
|
|
7054
7064
|
}
|
|
7055
7065
|
|
|
7056
|
-
declare const _default: {
|
|
7066
|
+
declare const _default$3: TaskFn<ObjectType, {
|
|
7067
|
+
success: boolean;
|
|
7068
|
+
error?: string | undefined;
|
|
7069
|
+
}>;
|
|
7070
|
+
|
|
7071
|
+
declare const _default$2: {
|
|
7057
7072
|
disable: TaskFn<ObjectType, {
|
|
7058
7073
|
success: boolean;
|
|
7059
7074
|
error?: string | undefined;
|
|
@@ -7061,7 +7076,53 @@ declare const _default: {
|
|
|
7061
7076
|
};
|
|
7062
7077
|
|
|
7063
7078
|
declare namespace firewalld {
|
|
7064
|
-
export { _default as default };
|
|
7079
|
+
export { _default$2 as default, _default$3 as disable };
|
|
7080
|
+
}
|
|
7081
|
+
|
|
7082
|
+
declare const HostsFileAddEntryInputSchema: z.ZodObject<{
|
|
7083
|
+
ip: z.ZodString;
|
|
7084
|
+
names: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>;
|
|
7085
|
+
comment: z.ZodOptional<z.ZodString>;
|
|
7086
|
+
sudo: z.ZodOptional<z.ZodBoolean>;
|
|
7087
|
+
}, z.z.core.$strip>;
|
|
7088
|
+
type HostsFileAddEntryParams = z.infer<typeof HostsFileAddEntryInputSchema>;
|
|
7089
|
+
declare const HostsFileAddEntryOutputSchema: z.ZodUnion<[z.ZodObject<{
|
|
7090
|
+
success: z.ZodLiteral<true>;
|
|
7091
|
+
}, z.z.core.$strip>, z.ZodObject<{
|
|
7092
|
+
success: z.ZodLiteral<false>;
|
|
7093
|
+
error: z.ZodOptional<z.ZodString>;
|
|
7094
|
+
}, z.z.core.$strip>]>;
|
|
7095
|
+
type HostsFileAddEntryResult = z.infer<typeof HostsFileAddEntryOutputSchema>;
|
|
7096
|
+
declare const _default$1: TaskFn<{
|
|
7097
|
+
ip: string;
|
|
7098
|
+
names: string | string[];
|
|
7099
|
+
comment?: string | undefined;
|
|
7100
|
+
sudo?: boolean | undefined;
|
|
7101
|
+
}, {
|
|
7102
|
+
success: true;
|
|
7103
|
+
} | {
|
|
7104
|
+
success: false;
|
|
7105
|
+
error?: string | undefined;
|
|
7106
|
+
}>;
|
|
7107
|
+
|
|
7108
|
+
type hostsFile_HostsFileAddEntryParams = HostsFileAddEntryParams;
|
|
7109
|
+
type hostsFile_HostsFileAddEntryResult = HostsFileAddEntryResult;
|
|
7110
|
+
declare namespace hostsFile {
|
|
7111
|
+
export { type hostsFile_HostsFileAddEntryParams as HostsFileAddEntryParams, type hostsFile_HostsFileAddEntryResult as HostsFileAddEntryResult, _default$1 as addEntry };
|
|
7112
|
+
}
|
|
7113
|
+
|
|
7114
|
+
interface RunParams<TParams extends TaskParams = TaskParams> {
|
|
7115
|
+
taskFn: TaskFn<TParams, RunFnReturnValue>;
|
|
7116
|
+
params: TParams;
|
|
7117
|
+
}
|
|
7118
|
+
declare const RunResultSchema: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7119
|
+
type RunResult = z.infer<typeof RunResultSchema>;
|
|
7120
|
+
declare const _default: TaskFn<RunParams<ObjectType>, Record<string, any>>;
|
|
7121
|
+
|
|
7122
|
+
type remote_RunParams<TParams extends TaskParams = TaskParams> = RunParams<TParams>;
|
|
7123
|
+
type remote_RunResult = RunResult;
|
|
7124
|
+
declare namespace remote {
|
|
7125
|
+
export { type remote_RunParams as RunParams, type remote_RunResult as RunResult, _default as runAllRemote };
|
|
7065
7126
|
}
|
|
7066
7127
|
|
|
7067
7128
|
declare const registry: TaskRegistry;
|
|
@@ -7114,6 +7175,8 @@ declare const core: {
|
|
|
7114
7175
|
net: typeof net;
|
|
7115
7176
|
nftables: typeof nftables;
|
|
7116
7177
|
firewalld: typeof firewalld;
|
|
7178
|
+
hostsFile: typeof hostsFile;
|
|
7179
|
+
remote: typeof remote;
|
|
7117
7180
|
};
|
|
7118
7181
|
|
|
7119
7182
|
declare class RemoteRuntime implements IRuntime {
|