@lazycatcloud/sdk 0.1.469 → 0.1.470
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/common/box.d.ts +1560 -1664
- package/dist/common/box.d.ts.map +1 -1
- package/dist/common/file_handler.d.ts +960 -1024
- package/dist/common/file_handler.d.ts.map +1 -1
- package/dist/common/filetrans.d.ts +2520 -2688
- package/dist/common/filetrans.d.ts.map +1 -1
- package/dist/common/media_meta.d.ts +60 -64
- package/dist/common/media_meta.d.ts.map +1 -1
- package/dist/common/message.d.ts +420 -448
- package/dist/common/message.d.ts.map +1 -1
- package/dist/common/peripheral_device.d.ts +586 -400
- package/dist/common/peripheral_device.d.ts.map +1 -1
- package/dist/common/peripheral_device.js +113 -1
- package/dist/common/peripheral_device.js.map +1 -1
- package/dist/google/protobuf/timestamp.d.ts +60 -64
- package/dist/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/localdevice/client.d.ts +60 -64
- package/dist/localdevice/client.d.ts.map +1 -1
- package/dist/localdevice/contacts.d.ts +60 -64
- package/dist/localdevice/contacts.d.ts.map +1 -1
- package/dist/localdevice/photo.d.ts +180 -192
- package/dist/localdevice/photo.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/dist/sys/btrfs.d.ts +180 -192
- package/dist/sys/btrfs.d.ts.map +1 -1
- package/dist/sys/hal.d.ts +120 -128
- package/dist/sys/hal.d.ts.map +1 -1
- package/dist/sys/ingress.d.ts +60 -64
- package/dist/sys/ingress.d.ts.map +1 -1
- package/dist/sys/network_manager.d.ts +180 -192
- package/dist/sys/network_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.d.ts +8700 -9280
- package/dist/sys/package_manager.d.ts.map +1 -1
- package/dist/sys/stats/cgroup_metrics.d.ts +8220 -8768
- package/dist/sys/stats/cgroup_metrics.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -39,6 +39,14 @@ export interface Filesystem {
|
|
|
39
39
|
ro?: boolean | undefined;
|
|
40
40
|
/** for mounted partition only, show partition usage in uint64 */
|
|
41
41
|
usedSize?: Long | undefined;
|
|
42
|
+
/** iscsi device info, only given when fs is on a iscsi device */
|
|
43
|
+
iscsiInfo?: ISCSIDeviceInfo | undefined;
|
|
44
|
+
}
|
|
45
|
+
export interface ISCSIDeviceInfo {
|
|
46
|
+
address: string;
|
|
47
|
+
IQN: string;
|
|
48
|
+
lun: string;
|
|
49
|
+
partion?: string | undefined;
|
|
42
50
|
}
|
|
43
51
|
export interface ListRemoteFilesystemReply {
|
|
44
52
|
fs: RemoteFilesystem[];
|
|
@@ -114,6 +122,12 @@ export declare const ListFilesystemsReply: {
|
|
|
114
122
|
mountpoint?: string | undefined;
|
|
115
123
|
ro?: boolean | undefined;
|
|
116
124
|
usedSize?: string | number | Long;
|
|
125
|
+
iscsiInfo?: {
|
|
126
|
+
address?: string;
|
|
127
|
+
IQN?: string;
|
|
128
|
+
lun?: string;
|
|
129
|
+
partion?: string | undefined;
|
|
130
|
+
};
|
|
117
131
|
}[];
|
|
118
132
|
mounted?: {
|
|
119
133
|
source?: string;
|
|
@@ -124,6 +138,12 @@ export declare const ListFilesystemsReply: {
|
|
|
124
138
|
mountpoint?: string | undefined;
|
|
125
139
|
ro?: boolean | undefined;
|
|
126
140
|
usedSize?: string | number | Long;
|
|
141
|
+
iscsiInfo?: {
|
|
142
|
+
address?: string;
|
|
143
|
+
IQN?: string;
|
|
144
|
+
lun?: string;
|
|
145
|
+
partion?: string | undefined;
|
|
146
|
+
};
|
|
127
147
|
}[];
|
|
128
148
|
} & {
|
|
129
149
|
umounted?: {
|
|
@@ -135,6 +155,12 @@ export declare const ListFilesystemsReply: {
|
|
|
135
155
|
mountpoint?: string | undefined;
|
|
136
156
|
ro?: boolean | undefined;
|
|
137
157
|
usedSize?: string | number | Long;
|
|
158
|
+
iscsiInfo?: {
|
|
159
|
+
address?: string;
|
|
160
|
+
IQN?: string;
|
|
161
|
+
lun?: string;
|
|
162
|
+
partion?: string | undefined;
|
|
163
|
+
};
|
|
138
164
|
}[] & ({
|
|
139
165
|
source?: string;
|
|
140
166
|
fstype?: string;
|
|
@@ -144,6 +170,12 @@ export declare const ListFilesystemsReply: {
|
|
|
144
170
|
mountpoint?: string | undefined;
|
|
145
171
|
ro?: boolean | undefined;
|
|
146
172
|
usedSize?: string | number | Long;
|
|
173
|
+
iscsiInfo?: {
|
|
174
|
+
address?: string;
|
|
175
|
+
IQN?: string;
|
|
176
|
+
lun?: string;
|
|
177
|
+
partion?: string | undefined;
|
|
178
|
+
};
|
|
147
179
|
} & {
|
|
148
180
|
source?: string;
|
|
149
181
|
fstype?: string;
|
|
@@ -152,41 +184,40 @@ export declare const ListFilesystemsReply: {
|
|
|
152
184
|
high: number;
|
|
153
185
|
low: number;
|
|
154
186
|
unsigned: boolean;
|
|
155
|
-
add: (addend:
|
|
156
|
-
and: (other:
|
|
157
|
-
compare: (other:
|
|
158
|
-
comp: (other:
|
|
159
|
-
divide: (divisor:
|
|
160
|
-
div: (divisor:
|
|
161
|
-
equals: (other:
|
|
162
|
-
eq: (other:
|
|
187
|
+
add: (addend: string | number | Long) => Long;
|
|
188
|
+
and: (other: string | number | Long) => Long;
|
|
189
|
+
compare: (other: string | number | Long) => number;
|
|
190
|
+
comp: (other: string | number | Long) => number;
|
|
191
|
+
divide: (divisor: string | number | Long) => Long;
|
|
192
|
+
div: (divisor: string | number | Long) => Long;
|
|
193
|
+
equals: (other: string | number | Long) => boolean;
|
|
194
|
+
eq: (other: string | number | Long) => boolean;
|
|
163
195
|
getHighBits: () => number;
|
|
164
196
|
getHighBitsUnsigned: () => number;
|
|
165
197
|
getLowBits: () => number;
|
|
166
198
|
getLowBitsUnsigned: () => number;
|
|
167
199
|
getNumBitsAbs: () => number;
|
|
168
|
-
greaterThan: (other:
|
|
169
|
-
gt: (other:
|
|
170
|
-
greaterThanOrEqual: (other:
|
|
171
|
-
gte: (other:
|
|
172
|
-
ge: (other:
|
|
200
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
201
|
+
gt: (other: string | number | Long) => boolean;
|
|
202
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
203
|
+
gte: (other: string | number | Long) => boolean;
|
|
204
|
+
ge: (other: string | number | Long) => boolean;
|
|
173
205
|
isEven: () => boolean;
|
|
174
206
|
isNegative: () => boolean;
|
|
175
207
|
isOdd: () => boolean;
|
|
176
208
|
isPositive: () => boolean;
|
|
177
|
-
isSafeInteger: () => boolean;
|
|
178
209
|
isZero: () => boolean;
|
|
179
210
|
eqz: () => boolean;
|
|
180
|
-
lessThan: (other:
|
|
181
|
-
lt: (other:
|
|
182
|
-
lessThanOrEqual: (other:
|
|
183
|
-
lte: (other:
|
|
184
|
-
le: (other:
|
|
185
|
-
modulo: (other:
|
|
186
|
-
mod: (other:
|
|
187
|
-
rem: (other:
|
|
188
|
-
multiply: (multiplier:
|
|
189
|
-
mul: (multiplier:
|
|
211
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
212
|
+
lt: (other: string | number | Long) => boolean;
|
|
213
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
214
|
+
lte: (other: string | number | Long) => boolean;
|
|
215
|
+
le: (other: string | number | Long) => boolean;
|
|
216
|
+
modulo: (other: string | number | Long) => Long;
|
|
217
|
+
mod: (other: string | number | Long) => Long;
|
|
218
|
+
rem: (other: string | number | Long) => Long;
|
|
219
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
220
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
190
221
|
negate: () => Long;
|
|
191
222
|
neg: () => Long;
|
|
192
223
|
not: () => Long;
|
|
@@ -194,10 +225,10 @@ export declare const ListFilesystemsReply: {
|
|
|
194
225
|
clz: () => number;
|
|
195
226
|
countTrailingZeros: () => number;
|
|
196
227
|
ctz: () => number;
|
|
197
|
-
notEquals: (other:
|
|
198
|
-
neq: (other:
|
|
199
|
-
ne: (other:
|
|
200
|
-
or: (other:
|
|
228
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
229
|
+
neq: (other: string | number | Long) => boolean;
|
|
230
|
+
ne: (other: string | number | Long) => boolean;
|
|
231
|
+
or: (other: string | number | Long) => Long;
|
|
201
232
|
shiftLeft: (numBits: number | Long) => Long;
|
|
202
233
|
shl: (numBits: number | Long) => Long;
|
|
203
234
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -209,9 +240,8 @@ export declare const ListFilesystemsReply: {
|
|
|
209
240
|
rotl: (numBits: number | Long) => Long;
|
|
210
241
|
rotateRight: (numBits: number | Long) => Long;
|
|
211
242
|
rotr: (numBits: number | Long) => Long;
|
|
212
|
-
subtract: (subtrahend:
|
|
213
|
-
sub: (subtrahend:
|
|
214
|
-
toBigInt: () => bigint;
|
|
243
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
244
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
215
245
|
toInt: () => number;
|
|
216
246
|
toNumber: () => number;
|
|
217
247
|
toBytes: (le?: boolean) => number[];
|
|
@@ -220,7 +250,7 @@ export declare const ListFilesystemsReply: {
|
|
|
220
250
|
toSigned: () => Long;
|
|
221
251
|
toString: (radix?: number) => string;
|
|
222
252
|
toUnsigned: () => Long;
|
|
223
|
-
xor: (other:
|
|
253
|
+
xor: (other: string | number | Long) => Long;
|
|
224
254
|
} & { [K in Exclude<keyof I["umounted"][number]["size"], keyof Long>]: never; });
|
|
225
255
|
uuid?: string | undefined;
|
|
226
256
|
mountpoint?: string | undefined;
|
|
@@ -229,41 +259,40 @@ export declare const ListFilesystemsReply: {
|
|
|
229
259
|
high: number;
|
|
230
260
|
low: number;
|
|
231
261
|
unsigned: boolean;
|
|
232
|
-
add: (addend:
|
|
233
|
-
and: (other:
|
|
234
|
-
compare: (other:
|
|
235
|
-
comp: (other:
|
|
236
|
-
divide: (divisor:
|
|
237
|
-
div: (divisor:
|
|
238
|
-
equals: (other:
|
|
239
|
-
eq: (other:
|
|
262
|
+
add: (addend: string | number | Long) => Long;
|
|
263
|
+
and: (other: string | number | Long) => Long;
|
|
264
|
+
compare: (other: string | number | Long) => number;
|
|
265
|
+
comp: (other: string | number | Long) => number;
|
|
266
|
+
divide: (divisor: string | number | Long) => Long;
|
|
267
|
+
div: (divisor: string | number | Long) => Long;
|
|
268
|
+
equals: (other: string | number | Long) => boolean;
|
|
269
|
+
eq: (other: string | number | Long) => boolean;
|
|
240
270
|
getHighBits: () => number;
|
|
241
271
|
getHighBitsUnsigned: () => number;
|
|
242
272
|
getLowBits: () => number;
|
|
243
273
|
getLowBitsUnsigned: () => number;
|
|
244
274
|
getNumBitsAbs: () => number;
|
|
245
|
-
greaterThan: (other:
|
|
246
|
-
gt: (other:
|
|
247
|
-
greaterThanOrEqual: (other:
|
|
248
|
-
gte: (other:
|
|
249
|
-
ge: (other:
|
|
275
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
276
|
+
gt: (other: string | number | Long) => boolean;
|
|
277
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
278
|
+
gte: (other: string | number | Long) => boolean;
|
|
279
|
+
ge: (other: string | number | Long) => boolean;
|
|
250
280
|
isEven: () => boolean;
|
|
251
281
|
isNegative: () => boolean;
|
|
252
282
|
isOdd: () => boolean;
|
|
253
283
|
isPositive: () => boolean;
|
|
254
|
-
isSafeInteger: () => boolean;
|
|
255
284
|
isZero: () => boolean;
|
|
256
285
|
eqz: () => boolean;
|
|
257
|
-
lessThan: (other:
|
|
258
|
-
lt: (other:
|
|
259
|
-
lessThanOrEqual: (other:
|
|
260
|
-
lte: (other:
|
|
261
|
-
le: (other:
|
|
262
|
-
modulo: (other:
|
|
263
|
-
mod: (other:
|
|
264
|
-
rem: (other:
|
|
265
|
-
multiply: (multiplier:
|
|
266
|
-
mul: (multiplier:
|
|
286
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
287
|
+
lt: (other: string | number | Long) => boolean;
|
|
288
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
289
|
+
lte: (other: string | number | Long) => boolean;
|
|
290
|
+
le: (other: string | number | Long) => boolean;
|
|
291
|
+
modulo: (other: string | number | Long) => Long;
|
|
292
|
+
mod: (other: string | number | Long) => Long;
|
|
293
|
+
rem: (other: string | number | Long) => Long;
|
|
294
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
295
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
267
296
|
negate: () => Long;
|
|
268
297
|
neg: () => Long;
|
|
269
298
|
not: () => Long;
|
|
@@ -271,10 +300,10 @@ export declare const ListFilesystemsReply: {
|
|
|
271
300
|
clz: () => number;
|
|
272
301
|
countTrailingZeros: () => number;
|
|
273
302
|
ctz: () => number;
|
|
274
|
-
notEquals: (other:
|
|
275
|
-
neq: (other:
|
|
276
|
-
ne: (other:
|
|
277
|
-
or: (other:
|
|
303
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
304
|
+
neq: (other: string | number | Long) => boolean;
|
|
305
|
+
ne: (other: string | number | Long) => boolean;
|
|
306
|
+
or: (other: string | number | Long) => Long;
|
|
278
307
|
shiftLeft: (numBits: number | Long) => Long;
|
|
279
308
|
shl: (numBits: number | Long) => Long;
|
|
280
309
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -286,9 +315,8 @@ export declare const ListFilesystemsReply: {
|
|
|
286
315
|
rotl: (numBits: number | Long) => Long;
|
|
287
316
|
rotateRight: (numBits: number | Long) => Long;
|
|
288
317
|
rotr: (numBits: number | Long) => Long;
|
|
289
|
-
subtract: (subtrahend:
|
|
290
|
-
sub: (subtrahend:
|
|
291
|
-
toBigInt: () => bigint;
|
|
318
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
319
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
292
320
|
toInt: () => number;
|
|
293
321
|
toNumber: () => number;
|
|
294
322
|
toBytes: (le?: boolean) => number[];
|
|
@@ -297,9 +325,20 @@ export declare const ListFilesystemsReply: {
|
|
|
297
325
|
toSigned: () => Long;
|
|
298
326
|
toString: (radix?: number) => string;
|
|
299
327
|
toUnsigned: () => Long;
|
|
300
|
-
xor: (other:
|
|
328
|
+
xor: (other: string | number | Long) => Long;
|
|
301
329
|
} & { [K_1 in Exclude<keyof I["umounted"][number]["usedSize"], keyof Long>]: never; });
|
|
302
|
-
|
|
330
|
+
iscsiInfo?: {
|
|
331
|
+
address?: string;
|
|
332
|
+
IQN?: string;
|
|
333
|
+
lun?: string;
|
|
334
|
+
partion?: string | undefined;
|
|
335
|
+
} & {
|
|
336
|
+
address?: string;
|
|
337
|
+
IQN?: string;
|
|
338
|
+
lun?: string;
|
|
339
|
+
partion?: string | undefined;
|
|
340
|
+
} & { [K_2 in Exclude<keyof I["umounted"][number]["iscsiInfo"], keyof ISCSIDeviceInfo>]: never; };
|
|
341
|
+
} & { [K_3 in Exclude<keyof I["umounted"][number], keyof Filesystem>]: never; })[] & { [K_4 in Exclude<keyof I["umounted"], keyof {
|
|
303
342
|
source?: string;
|
|
304
343
|
fstype?: string;
|
|
305
344
|
name?: string;
|
|
@@ -308,6 +347,12 @@ export declare const ListFilesystemsReply: {
|
|
|
308
347
|
mountpoint?: string | undefined;
|
|
309
348
|
ro?: boolean | undefined;
|
|
310
349
|
usedSize?: string | number | Long;
|
|
350
|
+
iscsiInfo?: {
|
|
351
|
+
address?: string;
|
|
352
|
+
IQN?: string;
|
|
353
|
+
lun?: string;
|
|
354
|
+
partion?: string | undefined;
|
|
355
|
+
};
|
|
311
356
|
}[]>]: never; };
|
|
312
357
|
mounted?: {
|
|
313
358
|
source?: string;
|
|
@@ -318,6 +363,12 @@ export declare const ListFilesystemsReply: {
|
|
|
318
363
|
mountpoint?: string | undefined;
|
|
319
364
|
ro?: boolean | undefined;
|
|
320
365
|
usedSize?: string | number | Long;
|
|
366
|
+
iscsiInfo?: {
|
|
367
|
+
address?: string;
|
|
368
|
+
IQN?: string;
|
|
369
|
+
lun?: string;
|
|
370
|
+
partion?: string | undefined;
|
|
371
|
+
};
|
|
321
372
|
}[] & ({
|
|
322
373
|
source?: string;
|
|
323
374
|
fstype?: string;
|
|
@@ -327,6 +378,12 @@ export declare const ListFilesystemsReply: {
|
|
|
327
378
|
mountpoint?: string | undefined;
|
|
328
379
|
ro?: boolean | undefined;
|
|
329
380
|
usedSize?: string | number | Long;
|
|
381
|
+
iscsiInfo?: {
|
|
382
|
+
address?: string;
|
|
383
|
+
IQN?: string;
|
|
384
|
+
lun?: string;
|
|
385
|
+
partion?: string | undefined;
|
|
386
|
+
};
|
|
330
387
|
} & {
|
|
331
388
|
source?: string;
|
|
332
389
|
fstype?: string;
|
|
@@ -335,41 +392,40 @@ export declare const ListFilesystemsReply: {
|
|
|
335
392
|
high: number;
|
|
336
393
|
low: number;
|
|
337
394
|
unsigned: boolean;
|
|
338
|
-
add: (addend:
|
|
339
|
-
and: (other:
|
|
340
|
-
compare: (other:
|
|
341
|
-
comp: (other:
|
|
342
|
-
divide: (divisor:
|
|
343
|
-
div: (divisor:
|
|
344
|
-
equals: (other:
|
|
345
|
-
eq: (other:
|
|
395
|
+
add: (addend: string | number | Long) => Long;
|
|
396
|
+
and: (other: string | number | Long) => Long;
|
|
397
|
+
compare: (other: string | number | Long) => number;
|
|
398
|
+
comp: (other: string | number | Long) => number;
|
|
399
|
+
divide: (divisor: string | number | Long) => Long;
|
|
400
|
+
div: (divisor: string | number | Long) => Long;
|
|
401
|
+
equals: (other: string | number | Long) => boolean;
|
|
402
|
+
eq: (other: string | number | Long) => boolean;
|
|
346
403
|
getHighBits: () => number;
|
|
347
404
|
getHighBitsUnsigned: () => number;
|
|
348
405
|
getLowBits: () => number;
|
|
349
406
|
getLowBitsUnsigned: () => number;
|
|
350
407
|
getNumBitsAbs: () => number;
|
|
351
|
-
greaterThan: (other:
|
|
352
|
-
gt: (other:
|
|
353
|
-
greaterThanOrEqual: (other:
|
|
354
|
-
gte: (other:
|
|
355
|
-
ge: (other:
|
|
408
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
409
|
+
gt: (other: string | number | Long) => boolean;
|
|
410
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
411
|
+
gte: (other: string | number | Long) => boolean;
|
|
412
|
+
ge: (other: string | number | Long) => boolean;
|
|
356
413
|
isEven: () => boolean;
|
|
357
414
|
isNegative: () => boolean;
|
|
358
415
|
isOdd: () => boolean;
|
|
359
416
|
isPositive: () => boolean;
|
|
360
|
-
isSafeInteger: () => boolean;
|
|
361
417
|
isZero: () => boolean;
|
|
362
418
|
eqz: () => boolean;
|
|
363
|
-
lessThan: (other:
|
|
364
|
-
lt: (other:
|
|
365
|
-
lessThanOrEqual: (other:
|
|
366
|
-
lte: (other:
|
|
367
|
-
le: (other:
|
|
368
|
-
modulo: (other:
|
|
369
|
-
mod: (other:
|
|
370
|
-
rem: (other:
|
|
371
|
-
multiply: (multiplier:
|
|
372
|
-
mul: (multiplier:
|
|
419
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
420
|
+
lt: (other: string | number | Long) => boolean;
|
|
421
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
422
|
+
lte: (other: string | number | Long) => boolean;
|
|
423
|
+
le: (other: string | number | Long) => boolean;
|
|
424
|
+
modulo: (other: string | number | Long) => Long;
|
|
425
|
+
mod: (other: string | number | Long) => Long;
|
|
426
|
+
rem: (other: string | number | Long) => Long;
|
|
427
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
428
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
373
429
|
negate: () => Long;
|
|
374
430
|
neg: () => Long;
|
|
375
431
|
not: () => Long;
|
|
@@ -377,10 +433,10 @@ export declare const ListFilesystemsReply: {
|
|
|
377
433
|
clz: () => number;
|
|
378
434
|
countTrailingZeros: () => number;
|
|
379
435
|
ctz: () => number;
|
|
380
|
-
notEquals: (other:
|
|
381
|
-
neq: (other:
|
|
382
|
-
ne: (other:
|
|
383
|
-
or: (other:
|
|
436
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
437
|
+
neq: (other: string | number | Long) => boolean;
|
|
438
|
+
ne: (other: string | number | Long) => boolean;
|
|
439
|
+
or: (other: string | number | Long) => Long;
|
|
384
440
|
shiftLeft: (numBits: number | Long) => Long;
|
|
385
441
|
shl: (numBits: number | Long) => Long;
|
|
386
442
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -392,9 +448,8 @@ export declare const ListFilesystemsReply: {
|
|
|
392
448
|
rotl: (numBits: number | Long) => Long;
|
|
393
449
|
rotateRight: (numBits: number | Long) => Long;
|
|
394
450
|
rotr: (numBits: number | Long) => Long;
|
|
395
|
-
subtract: (subtrahend:
|
|
396
|
-
sub: (subtrahend:
|
|
397
|
-
toBigInt: () => bigint;
|
|
451
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
452
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
398
453
|
toInt: () => number;
|
|
399
454
|
toNumber: () => number;
|
|
400
455
|
toBytes: (le?: boolean) => number[];
|
|
@@ -403,8 +458,8 @@ export declare const ListFilesystemsReply: {
|
|
|
403
458
|
toSigned: () => Long;
|
|
404
459
|
toString: (radix?: number) => string;
|
|
405
460
|
toUnsigned: () => Long;
|
|
406
|
-
xor: (other:
|
|
407
|
-
} & { [
|
|
461
|
+
xor: (other: string | number | Long) => Long;
|
|
462
|
+
} & { [K_5 in Exclude<keyof I["mounted"][number]["size"], keyof Long>]: never; });
|
|
408
463
|
uuid?: string | undefined;
|
|
409
464
|
mountpoint?: string | undefined;
|
|
410
465
|
ro?: boolean | undefined;
|
|
@@ -412,41 +467,40 @@ export declare const ListFilesystemsReply: {
|
|
|
412
467
|
high: number;
|
|
413
468
|
low: number;
|
|
414
469
|
unsigned: boolean;
|
|
415
|
-
add: (addend:
|
|
416
|
-
and: (other:
|
|
417
|
-
compare: (other:
|
|
418
|
-
comp: (other:
|
|
419
|
-
divide: (divisor:
|
|
420
|
-
div: (divisor:
|
|
421
|
-
equals: (other:
|
|
422
|
-
eq: (other:
|
|
470
|
+
add: (addend: string | number | Long) => Long;
|
|
471
|
+
and: (other: string | number | Long) => Long;
|
|
472
|
+
compare: (other: string | number | Long) => number;
|
|
473
|
+
comp: (other: string | number | Long) => number;
|
|
474
|
+
divide: (divisor: string | number | Long) => Long;
|
|
475
|
+
div: (divisor: string | number | Long) => Long;
|
|
476
|
+
equals: (other: string | number | Long) => boolean;
|
|
477
|
+
eq: (other: string | number | Long) => boolean;
|
|
423
478
|
getHighBits: () => number;
|
|
424
479
|
getHighBitsUnsigned: () => number;
|
|
425
480
|
getLowBits: () => number;
|
|
426
481
|
getLowBitsUnsigned: () => number;
|
|
427
482
|
getNumBitsAbs: () => number;
|
|
428
|
-
greaterThan: (other:
|
|
429
|
-
gt: (other:
|
|
430
|
-
greaterThanOrEqual: (other:
|
|
431
|
-
gte: (other:
|
|
432
|
-
ge: (other:
|
|
483
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
484
|
+
gt: (other: string | number | Long) => boolean;
|
|
485
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
486
|
+
gte: (other: string | number | Long) => boolean;
|
|
487
|
+
ge: (other: string | number | Long) => boolean;
|
|
433
488
|
isEven: () => boolean;
|
|
434
489
|
isNegative: () => boolean;
|
|
435
490
|
isOdd: () => boolean;
|
|
436
491
|
isPositive: () => boolean;
|
|
437
|
-
isSafeInteger: () => boolean;
|
|
438
492
|
isZero: () => boolean;
|
|
439
493
|
eqz: () => boolean;
|
|
440
|
-
lessThan: (other:
|
|
441
|
-
lt: (other:
|
|
442
|
-
lessThanOrEqual: (other:
|
|
443
|
-
lte: (other:
|
|
444
|
-
le: (other:
|
|
445
|
-
modulo: (other:
|
|
446
|
-
mod: (other:
|
|
447
|
-
rem: (other:
|
|
448
|
-
multiply: (multiplier:
|
|
449
|
-
mul: (multiplier:
|
|
494
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
495
|
+
lt: (other: string | number | Long) => boolean;
|
|
496
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
497
|
+
lte: (other: string | number | Long) => boolean;
|
|
498
|
+
le: (other: string | number | Long) => boolean;
|
|
499
|
+
modulo: (other: string | number | Long) => Long;
|
|
500
|
+
mod: (other: string | number | Long) => Long;
|
|
501
|
+
rem: (other: string | number | Long) => Long;
|
|
502
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
503
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
450
504
|
negate: () => Long;
|
|
451
505
|
neg: () => Long;
|
|
452
506
|
not: () => Long;
|
|
@@ -454,10 +508,10 @@ export declare const ListFilesystemsReply: {
|
|
|
454
508
|
clz: () => number;
|
|
455
509
|
countTrailingZeros: () => number;
|
|
456
510
|
ctz: () => number;
|
|
457
|
-
notEquals: (other:
|
|
458
|
-
neq: (other:
|
|
459
|
-
ne: (other:
|
|
460
|
-
or: (other:
|
|
511
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
512
|
+
neq: (other: string | number | Long) => boolean;
|
|
513
|
+
ne: (other: string | number | Long) => boolean;
|
|
514
|
+
or: (other: string | number | Long) => Long;
|
|
461
515
|
shiftLeft: (numBits: number | Long) => Long;
|
|
462
516
|
shl: (numBits: number | Long) => Long;
|
|
463
517
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -469,9 +523,8 @@ export declare const ListFilesystemsReply: {
|
|
|
469
523
|
rotl: (numBits: number | Long) => Long;
|
|
470
524
|
rotateRight: (numBits: number | Long) => Long;
|
|
471
525
|
rotr: (numBits: number | Long) => Long;
|
|
472
|
-
subtract: (subtrahend:
|
|
473
|
-
sub: (subtrahend:
|
|
474
|
-
toBigInt: () => bigint;
|
|
526
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
527
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
475
528
|
toInt: () => number;
|
|
476
529
|
toNumber: () => number;
|
|
477
530
|
toBytes: (le?: boolean) => number[];
|
|
@@ -480,9 +533,20 @@ export declare const ListFilesystemsReply: {
|
|
|
480
533
|
toSigned: () => Long;
|
|
481
534
|
toString: (radix?: number) => string;
|
|
482
535
|
toUnsigned: () => Long;
|
|
483
|
-
xor: (other:
|
|
484
|
-
} & { [
|
|
485
|
-
|
|
536
|
+
xor: (other: string | number | Long) => Long;
|
|
537
|
+
} & { [K_6 in Exclude<keyof I["mounted"][number]["usedSize"], keyof Long>]: never; });
|
|
538
|
+
iscsiInfo?: {
|
|
539
|
+
address?: string;
|
|
540
|
+
IQN?: string;
|
|
541
|
+
lun?: string;
|
|
542
|
+
partion?: string | undefined;
|
|
543
|
+
} & {
|
|
544
|
+
address?: string;
|
|
545
|
+
IQN?: string;
|
|
546
|
+
lun?: string;
|
|
547
|
+
partion?: string | undefined;
|
|
548
|
+
} & { [K_7 in Exclude<keyof I["mounted"][number]["iscsiInfo"], keyof ISCSIDeviceInfo>]: never; };
|
|
549
|
+
} & { [K_8 in Exclude<keyof I["mounted"][number], keyof Filesystem>]: never; })[] & { [K_9 in Exclude<keyof I["mounted"], keyof {
|
|
486
550
|
source?: string;
|
|
487
551
|
fstype?: string;
|
|
488
552
|
name?: string;
|
|
@@ -491,8 +555,14 @@ export declare const ListFilesystemsReply: {
|
|
|
491
555
|
mountpoint?: string | undefined;
|
|
492
556
|
ro?: boolean | undefined;
|
|
493
557
|
usedSize?: string | number | Long;
|
|
558
|
+
iscsiInfo?: {
|
|
559
|
+
address?: string;
|
|
560
|
+
IQN?: string;
|
|
561
|
+
lun?: string;
|
|
562
|
+
partion?: string | undefined;
|
|
563
|
+
};
|
|
494
564
|
}[]>]: never; };
|
|
495
|
-
} & { [
|
|
565
|
+
} & { [K_10 in Exclude<keyof I, keyof ListFilesystemsReply>]: never; }>(base?: I): ListFilesystemsReply;
|
|
496
566
|
fromPartial<I_1 extends {
|
|
497
567
|
umounted?: {
|
|
498
568
|
source?: string;
|
|
@@ -503,6 +573,12 @@ export declare const ListFilesystemsReply: {
|
|
|
503
573
|
mountpoint?: string | undefined;
|
|
504
574
|
ro?: boolean | undefined;
|
|
505
575
|
usedSize?: string | number | Long;
|
|
576
|
+
iscsiInfo?: {
|
|
577
|
+
address?: string;
|
|
578
|
+
IQN?: string;
|
|
579
|
+
lun?: string;
|
|
580
|
+
partion?: string | undefined;
|
|
581
|
+
};
|
|
506
582
|
}[];
|
|
507
583
|
mounted?: {
|
|
508
584
|
source?: string;
|
|
@@ -513,6 +589,12 @@ export declare const ListFilesystemsReply: {
|
|
|
513
589
|
mountpoint?: string | undefined;
|
|
514
590
|
ro?: boolean | undefined;
|
|
515
591
|
usedSize?: string | number | Long;
|
|
592
|
+
iscsiInfo?: {
|
|
593
|
+
address?: string;
|
|
594
|
+
IQN?: string;
|
|
595
|
+
lun?: string;
|
|
596
|
+
partion?: string | undefined;
|
|
597
|
+
};
|
|
516
598
|
}[];
|
|
517
599
|
} & {
|
|
518
600
|
umounted?: {
|
|
@@ -524,6 +606,12 @@ export declare const ListFilesystemsReply: {
|
|
|
524
606
|
mountpoint?: string | undefined;
|
|
525
607
|
ro?: boolean | undefined;
|
|
526
608
|
usedSize?: string | number | Long;
|
|
609
|
+
iscsiInfo?: {
|
|
610
|
+
address?: string;
|
|
611
|
+
IQN?: string;
|
|
612
|
+
lun?: string;
|
|
613
|
+
partion?: string | undefined;
|
|
614
|
+
};
|
|
527
615
|
}[] & ({
|
|
528
616
|
source?: string;
|
|
529
617
|
fstype?: string;
|
|
@@ -533,6 +621,12 @@ export declare const ListFilesystemsReply: {
|
|
|
533
621
|
mountpoint?: string | undefined;
|
|
534
622
|
ro?: boolean | undefined;
|
|
535
623
|
usedSize?: string | number | Long;
|
|
624
|
+
iscsiInfo?: {
|
|
625
|
+
address?: string;
|
|
626
|
+
IQN?: string;
|
|
627
|
+
lun?: string;
|
|
628
|
+
partion?: string | undefined;
|
|
629
|
+
};
|
|
536
630
|
} & {
|
|
537
631
|
source?: string;
|
|
538
632
|
fstype?: string;
|
|
@@ -541,41 +635,40 @@ export declare const ListFilesystemsReply: {
|
|
|
541
635
|
high: number;
|
|
542
636
|
low: number;
|
|
543
637
|
unsigned: boolean;
|
|
544
|
-
add: (addend:
|
|
545
|
-
and: (other:
|
|
546
|
-
compare: (other:
|
|
547
|
-
comp: (other:
|
|
548
|
-
divide: (divisor:
|
|
549
|
-
div: (divisor:
|
|
550
|
-
equals: (other:
|
|
551
|
-
eq: (other:
|
|
638
|
+
add: (addend: string | number | Long) => Long;
|
|
639
|
+
and: (other: string | number | Long) => Long;
|
|
640
|
+
compare: (other: string | number | Long) => number;
|
|
641
|
+
comp: (other: string | number | Long) => number;
|
|
642
|
+
divide: (divisor: string | number | Long) => Long;
|
|
643
|
+
div: (divisor: string | number | Long) => Long;
|
|
644
|
+
equals: (other: string | number | Long) => boolean;
|
|
645
|
+
eq: (other: string | number | Long) => boolean;
|
|
552
646
|
getHighBits: () => number;
|
|
553
647
|
getHighBitsUnsigned: () => number;
|
|
554
648
|
getLowBits: () => number;
|
|
555
649
|
getLowBitsUnsigned: () => number;
|
|
556
650
|
getNumBitsAbs: () => number;
|
|
557
|
-
greaterThan: (other:
|
|
558
|
-
gt: (other:
|
|
559
|
-
greaterThanOrEqual: (other:
|
|
560
|
-
gte: (other:
|
|
561
|
-
ge: (other:
|
|
651
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
652
|
+
gt: (other: string | number | Long) => boolean;
|
|
653
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
654
|
+
gte: (other: string | number | Long) => boolean;
|
|
655
|
+
ge: (other: string | number | Long) => boolean;
|
|
562
656
|
isEven: () => boolean;
|
|
563
657
|
isNegative: () => boolean;
|
|
564
658
|
isOdd: () => boolean;
|
|
565
659
|
isPositive: () => boolean;
|
|
566
|
-
isSafeInteger: () => boolean;
|
|
567
660
|
isZero: () => boolean;
|
|
568
661
|
eqz: () => boolean;
|
|
569
|
-
lessThan: (other:
|
|
570
|
-
lt: (other:
|
|
571
|
-
lessThanOrEqual: (other:
|
|
572
|
-
lte: (other:
|
|
573
|
-
le: (other:
|
|
574
|
-
modulo: (other:
|
|
575
|
-
mod: (other:
|
|
576
|
-
rem: (other:
|
|
577
|
-
multiply: (multiplier:
|
|
578
|
-
mul: (multiplier:
|
|
662
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
663
|
+
lt: (other: string | number | Long) => boolean;
|
|
664
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
665
|
+
lte: (other: string | number | Long) => boolean;
|
|
666
|
+
le: (other: string | number | Long) => boolean;
|
|
667
|
+
modulo: (other: string | number | Long) => Long;
|
|
668
|
+
mod: (other: string | number | Long) => Long;
|
|
669
|
+
rem: (other: string | number | Long) => Long;
|
|
670
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
671
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
579
672
|
negate: () => Long;
|
|
580
673
|
neg: () => Long;
|
|
581
674
|
not: () => Long;
|
|
@@ -583,10 +676,10 @@ export declare const ListFilesystemsReply: {
|
|
|
583
676
|
clz: () => number;
|
|
584
677
|
countTrailingZeros: () => number;
|
|
585
678
|
ctz: () => number;
|
|
586
|
-
notEquals: (other:
|
|
587
|
-
neq: (other:
|
|
588
|
-
ne: (other:
|
|
589
|
-
or: (other:
|
|
679
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
680
|
+
neq: (other: string | number | Long) => boolean;
|
|
681
|
+
ne: (other: string | number | Long) => boolean;
|
|
682
|
+
or: (other: string | number | Long) => Long;
|
|
590
683
|
shiftLeft: (numBits: number | Long) => Long;
|
|
591
684
|
shl: (numBits: number | Long) => Long;
|
|
592
685
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -598,9 +691,8 @@ export declare const ListFilesystemsReply: {
|
|
|
598
691
|
rotl: (numBits: number | Long) => Long;
|
|
599
692
|
rotateRight: (numBits: number | Long) => Long;
|
|
600
693
|
rotr: (numBits: number | Long) => Long;
|
|
601
|
-
subtract: (subtrahend:
|
|
602
|
-
sub: (subtrahend:
|
|
603
|
-
toBigInt: () => bigint;
|
|
694
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
695
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
604
696
|
toInt: () => number;
|
|
605
697
|
toNumber: () => number;
|
|
606
698
|
toBytes: (le?: boolean) => number[];
|
|
@@ -609,8 +701,8 @@ export declare const ListFilesystemsReply: {
|
|
|
609
701
|
toSigned: () => Long;
|
|
610
702
|
toString: (radix?: number) => string;
|
|
611
703
|
toUnsigned: () => Long;
|
|
612
|
-
xor: (other:
|
|
613
|
-
} & { [
|
|
704
|
+
xor: (other: string | number | Long) => Long;
|
|
705
|
+
} & { [K_11 in Exclude<keyof I_1["umounted"][number]["size"], keyof Long>]: never; });
|
|
614
706
|
uuid?: string | undefined;
|
|
615
707
|
mountpoint?: string | undefined;
|
|
616
708
|
ro?: boolean | undefined;
|
|
@@ -618,41 +710,40 @@ export declare const ListFilesystemsReply: {
|
|
|
618
710
|
high: number;
|
|
619
711
|
low: number;
|
|
620
712
|
unsigned: boolean;
|
|
621
|
-
add: (addend:
|
|
622
|
-
and: (other:
|
|
623
|
-
compare: (other:
|
|
624
|
-
comp: (other:
|
|
625
|
-
divide: (divisor:
|
|
626
|
-
div: (divisor:
|
|
627
|
-
equals: (other:
|
|
628
|
-
eq: (other:
|
|
713
|
+
add: (addend: string | number | Long) => Long;
|
|
714
|
+
and: (other: string | number | Long) => Long;
|
|
715
|
+
compare: (other: string | number | Long) => number;
|
|
716
|
+
comp: (other: string | number | Long) => number;
|
|
717
|
+
divide: (divisor: string | number | Long) => Long;
|
|
718
|
+
div: (divisor: string | number | Long) => Long;
|
|
719
|
+
equals: (other: string | number | Long) => boolean;
|
|
720
|
+
eq: (other: string | number | Long) => boolean;
|
|
629
721
|
getHighBits: () => number;
|
|
630
722
|
getHighBitsUnsigned: () => number;
|
|
631
723
|
getLowBits: () => number;
|
|
632
724
|
getLowBitsUnsigned: () => number;
|
|
633
725
|
getNumBitsAbs: () => number;
|
|
634
|
-
greaterThan: (other:
|
|
635
|
-
gt: (other:
|
|
636
|
-
greaterThanOrEqual: (other:
|
|
637
|
-
gte: (other:
|
|
638
|
-
ge: (other:
|
|
726
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
727
|
+
gt: (other: string | number | Long) => boolean;
|
|
728
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
729
|
+
gte: (other: string | number | Long) => boolean;
|
|
730
|
+
ge: (other: string | number | Long) => boolean;
|
|
639
731
|
isEven: () => boolean;
|
|
640
732
|
isNegative: () => boolean;
|
|
641
733
|
isOdd: () => boolean;
|
|
642
734
|
isPositive: () => boolean;
|
|
643
|
-
isSafeInteger: () => boolean;
|
|
644
735
|
isZero: () => boolean;
|
|
645
736
|
eqz: () => boolean;
|
|
646
|
-
lessThan: (other:
|
|
647
|
-
lt: (other:
|
|
648
|
-
lessThanOrEqual: (other:
|
|
649
|
-
lte: (other:
|
|
650
|
-
le: (other:
|
|
651
|
-
modulo: (other:
|
|
652
|
-
mod: (other:
|
|
653
|
-
rem: (other:
|
|
654
|
-
multiply: (multiplier:
|
|
655
|
-
mul: (multiplier:
|
|
737
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
738
|
+
lt: (other: string | number | Long) => boolean;
|
|
739
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
740
|
+
lte: (other: string | number | Long) => boolean;
|
|
741
|
+
le: (other: string | number | Long) => boolean;
|
|
742
|
+
modulo: (other: string | number | Long) => Long;
|
|
743
|
+
mod: (other: string | number | Long) => Long;
|
|
744
|
+
rem: (other: string | number | Long) => Long;
|
|
745
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
746
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
656
747
|
negate: () => Long;
|
|
657
748
|
neg: () => Long;
|
|
658
749
|
not: () => Long;
|
|
@@ -660,10 +751,10 @@ export declare const ListFilesystemsReply: {
|
|
|
660
751
|
clz: () => number;
|
|
661
752
|
countTrailingZeros: () => number;
|
|
662
753
|
ctz: () => number;
|
|
663
|
-
notEquals: (other:
|
|
664
|
-
neq: (other:
|
|
665
|
-
ne: (other:
|
|
666
|
-
or: (other:
|
|
754
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
755
|
+
neq: (other: string | number | Long) => boolean;
|
|
756
|
+
ne: (other: string | number | Long) => boolean;
|
|
757
|
+
or: (other: string | number | Long) => Long;
|
|
667
758
|
shiftLeft: (numBits: number | Long) => Long;
|
|
668
759
|
shl: (numBits: number | Long) => Long;
|
|
669
760
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -675,9 +766,8 @@ export declare const ListFilesystemsReply: {
|
|
|
675
766
|
rotl: (numBits: number | Long) => Long;
|
|
676
767
|
rotateRight: (numBits: number | Long) => Long;
|
|
677
768
|
rotr: (numBits: number | Long) => Long;
|
|
678
|
-
subtract: (subtrahend:
|
|
679
|
-
sub: (subtrahend:
|
|
680
|
-
toBigInt: () => bigint;
|
|
769
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
770
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
681
771
|
toInt: () => number;
|
|
682
772
|
toNumber: () => number;
|
|
683
773
|
toBytes: (le?: boolean) => number[];
|
|
@@ -686,9 +776,20 @@ export declare const ListFilesystemsReply: {
|
|
|
686
776
|
toSigned: () => Long;
|
|
687
777
|
toString: (radix?: number) => string;
|
|
688
778
|
toUnsigned: () => Long;
|
|
689
|
-
xor: (other:
|
|
690
|
-
} & { [
|
|
691
|
-
|
|
779
|
+
xor: (other: string | number | Long) => Long;
|
|
780
|
+
} & { [K_12 in Exclude<keyof I_1["umounted"][number]["usedSize"], keyof Long>]: never; });
|
|
781
|
+
iscsiInfo?: {
|
|
782
|
+
address?: string;
|
|
783
|
+
IQN?: string;
|
|
784
|
+
lun?: string;
|
|
785
|
+
partion?: string | undefined;
|
|
786
|
+
} & {
|
|
787
|
+
address?: string;
|
|
788
|
+
IQN?: string;
|
|
789
|
+
lun?: string;
|
|
790
|
+
partion?: string | undefined;
|
|
791
|
+
} & { [K_13 in Exclude<keyof I_1["umounted"][number]["iscsiInfo"], keyof ISCSIDeviceInfo>]: never; };
|
|
792
|
+
} & { [K_14 in Exclude<keyof I_1["umounted"][number], keyof Filesystem>]: never; })[] & { [K_15 in Exclude<keyof I_1["umounted"], keyof {
|
|
692
793
|
source?: string;
|
|
693
794
|
fstype?: string;
|
|
694
795
|
name?: string;
|
|
@@ -697,6 +798,12 @@ export declare const ListFilesystemsReply: {
|
|
|
697
798
|
mountpoint?: string | undefined;
|
|
698
799
|
ro?: boolean | undefined;
|
|
699
800
|
usedSize?: string | number | Long;
|
|
801
|
+
iscsiInfo?: {
|
|
802
|
+
address?: string;
|
|
803
|
+
IQN?: string;
|
|
804
|
+
lun?: string;
|
|
805
|
+
partion?: string | undefined;
|
|
806
|
+
};
|
|
700
807
|
}[]>]: never; };
|
|
701
808
|
mounted?: {
|
|
702
809
|
source?: string;
|
|
@@ -707,6 +814,12 @@ export declare const ListFilesystemsReply: {
|
|
|
707
814
|
mountpoint?: string | undefined;
|
|
708
815
|
ro?: boolean | undefined;
|
|
709
816
|
usedSize?: string | number | Long;
|
|
817
|
+
iscsiInfo?: {
|
|
818
|
+
address?: string;
|
|
819
|
+
IQN?: string;
|
|
820
|
+
lun?: string;
|
|
821
|
+
partion?: string | undefined;
|
|
822
|
+
};
|
|
710
823
|
}[] & ({
|
|
711
824
|
source?: string;
|
|
712
825
|
fstype?: string;
|
|
@@ -716,6 +829,12 @@ export declare const ListFilesystemsReply: {
|
|
|
716
829
|
mountpoint?: string | undefined;
|
|
717
830
|
ro?: boolean | undefined;
|
|
718
831
|
usedSize?: string | number | Long;
|
|
832
|
+
iscsiInfo?: {
|
|
833
|
+
address?: string;
|
|
834
|
+
IQN?: string;
|
|
835
|
+
lun?: string;
|
|
836
|
+
partion?: string | undefined;
|
|
837
|
+
};
|
|
719
838
|
} & {
|
|
720
839
|
source?: string;
|
|
721
840
|
fstype?: string;
|
|
@@ -724,41 +843,40 @@ export declare const ListFilesystemsReply: {
|
|
|
724
843
|
high: number;
|
|
725
844
|
low: number;
|
|
726
845
|
unsigned: boolean;
|
|
727
|
-
add: (addend:
|
|
728
|
-
and: (other:
|
|
729
|
-
compare: (other:
|
|
730
|
-
comp: (other:
|
|
731
|
-
divide: (divisor:
|
|
732
|
-
div: (divisor:
|
|
733
|
-
equals: (other:
|
|
734
|
-
eq: (other:
|
|
846
|
+
add: (addend: string | number | Long) => Long;
|
|
847
|
+
and: (other: string | number | Long) => Long;
|
|
848
|
+
compare: (other: string | number | Long) => number;
|
|
849
|
+
comp: (other: string | number | Long) => number;
|
|
850
|
+
divide: (divisor: string | number | Long) => Long;
|
|
851
|
+
div: (divisor: string | number | Long) => Long;
|
|
852
|
+
equals: (other: string | number | Long) => boolean;
|
|
853
|
+
eq: (other: string | number | Long) => boolean;
|
|
735
854
|
getHighBits: () => number;
|
|
736
855
|
getHighBitsUnsigned: () => number;
|
|
737
856
|
getLowBits: () => number;
|
|
738
857
|
getLowBitsUnsigned: () => number;
|
|
739
858
|
getNumBitsAbs: () => number;
|
|
740
|
-
greaterThan: (other:
|
|
741
|
-
gt: (other:
|
|
742
|
-
greaterThanOrEqual: (other:
|
|
743
|
-
gte: (other:
|
|
744
|
-
ge: (other:
|
|
859
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
860
|
+
gt: (other: string | number | Long) => boolean;
|
|
861
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
862
|
+
gte: (other: string | number | Long) => boolean;
|
|
863
|
+
ge: (other: string | number | Long) => boolean;
|
|
745
864
|
isEven: () => boolean;
|
|
746
865
|
isNegative: () => boolean;
|
|
747
866
|
isOdd: () => boolean;
|
|
748
867
|
isPositive: () => boolean;
|
|
749
|
-
isSafeInteger: () => boolean;
|
|
750
868
|
isZero: () => boolean;
|
|
751
869
|
eqz: () => boolean;
|
|
752
|
-
lessThan: (other:
|
|
753
|
-
lt: (other:
|
|
754
|
-
lessThanOrEqual: (other:
|
|
755
|
-
lte: (other:
|
|
756
|
-
le: (other:
|
|
757
|
-
modulo: (other:
|
|
758
|
-
mod: (other:
|
|
759
|
-
rem: (other:
|
|
760
|
-
multiply: (multiplier:
|
|
761
|
-
mul: (multiplier:
|
|
870
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
871
|
+
lt: (other: string | number | Long) => boolean;
|
|
872
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
873
|
+
lte: (other: string | number | Long) => boolean;
|
|
874
|
+
le: (other: string | number | Long) => boolean;
|
|
875
|
+
modulo: (other: string | number | Long) => Long;
|
|
876
|
+
mod: (other: string | number | Long) => Long;
|
|
877
|
+
rem: (other: string | number | Long) => Long;
|
|
878
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
879
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
762
880
|
negate: () => Long;
|
|
763
881
|
neg: () => Long;
|
|
764
882
|
not: () => Long;
|
|
@@ -766,10 +884,10 @@ export declare const ListFilesystemsReply: {
|
|
|
766
884
|
clz: () => number;
|
|
767
885
|
countTrailingZeros: () => number;
|
|
768
886
|
ctz: () => number;
|
|
769
|
-
notEquals: (other:
|
|
770
|
-
neq: (other:
|
|
771
|
-
ne: (other:
|
|
772
|
-
or: (other:
|
|
887
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
888
|
+
neq: (other: string | number | Long) => boolean;
|
|
889
|
+
ne: (other: string | number | Long) => boolean;
|
|
890
|
+
or: (other: string | number | Long) => Long;
|
|
773
891
|
shiftLeft: (numBits: number | Long) => Long;
|
|
774
892
|
shl: (numBits: number | Long) => Long;
|
|
775
893
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -781,9 +899,8 @@ export declare const ListFilesystemsReply: {
|
|
|
781
899
|
rotl: (numBits: number | Long) => Long;
|
|
782
900
|
rotateRight: (numBits: number | Long) => Long;
|
|
783
901
|
rotr: (numBits: number | Long) => Long;
|
|
784
|
-
subtract: (subtrahend:
|
|
785
|
-
sub: (subtrahend:
|
|
786
|
-
toBigInt: () => bigint;
|
|
902
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
903
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
787
904
|
toInt: () => number;
|
|
788
905
|
toNumber: () => number;
|
|
789
906
|
toBytes: (le?: boolean) => number[];
|
|
@@ -792,8 +909,8 @@ export declare const ListFilesystemsReply: {
|
|
|
792
909
|
toSigned: () => Long;
|
|
793
910
|
toString: (radix?: number) => string;
|
|
794
911
|
toUnsigned: () => Long;
|
|
795
|
-
xor: (other:
|
|
796
|
-
} & { [
|
|
912
|
+
xor: (other: string | number | Long) => Long;
|
|
913
|
+
} & { [K_16 in Exclude<keyof I_1["mounted"][number]["size"], keyof Long>]: never; });
|
|
797
914
|
uuid?: string | undefined;
|
|
798
915
|
mountpoint?: string | undefined;
|
|
799
916
|
ro?: boolean | undefined;
|
|
@@ -801,41 +918,40 @@ export declare const ListFilesystemsReply: {
|
|
|
801
918
|
high: number;
|
|
802
919
|
low: number;
|
|
803
920
|
unsigned: boolean;
|
|
804
|
-
add: (addend:
|
|
805
|
-
and: (other:
|
|
806
|
-
compare: (other:
|
|
807
|
-
comp: (other:
|
|
808
|
-
divide: (divisor:
|
|
809
|
-
div: (divisor:
|
|
810
|
-
equals: (other:
|
|
811
|
-
eq: (other:
|
|
921
|
+
add: (addend: string | number | Long) => Long;
|
|
922
|
+
and: (other: string | number | Long) => Long;
|
|
923
|
+
compare: (other: string | number | Long) => number;
|
|
924
|
+
comp: (other: string | number | Long) => number;
|
|
925
|
+
divide: (divisor: string | number | Long) => Long;
|
|
926
|
+
div: (divisor: string | number | Long) => Long;
|
|
927
|
+
equals: (other: string | number | Long) => boolean;
|
|
928
|
+
eq: (other: string | number | Long) => boolean;
|
|
812
929
|
getHighBits: () => number;
|
|
813
930
|
getHighBitsUnsigned: () => number;
|
|
814
931
|
getLowBits: () => number;
|
|
815
932
|
getLowBitsUnsigned: () => number;
|
|
816
933
|
getNumBitsAbs: () => number;
|
|
817
|
-
greaterThan: (other:
|
|
818
|
-
gt: (other:
|
|
819
|
-
greaterThanOrEqual: (other:
|
|
820
|
-
gte: (other:
|
|
821
|
-
ge: (other:
|
|
934
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
935
|
+
gt: (other: string | number | Long) => boolean;
|
|
936
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
937
|
+
gte: (other: string | number | Long) => boolean;
|
|
938
|
+
ge: (other: string | number | Long) => boolean;
|
|
822
939
|
isEven: () => boolean;
|
|
823
940
|
isNegative: () => boolean;
|
|
824
941
|
isOdd: () => boolean;
|
|
825
942
|
isPositive: () => boolean;
|
|
826
|
-
isSafeInteger: () => boolean;
|
|
827
943
|
isZero: () => boolean;
|
|
828
944
|
eqz: () => boolean;
|
|
829
|
-
lessThan: (other:
|
|
830
|
-
lt: (other:
|
|
831
|
-
lessThanOrEqual: (other:
|
|
832
|
-
lte: (other:
|
|
833
|
-
le: (other:
|
|
834
|
-
modulo: (other:
|
|
835
|
-
mod: (other:
|
|
836
|
-
rem: (other:
|
|
837
|
-
multiply: (multiplier:
|
|
838
|
-
mul: (multiplier:
|
|
945
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
946
|
+
lt: (other: string | number | Long) => boolean;
|
|
947
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
948
|
+
lte: (other: string | number | Long) => boolean;
|
|
949
|
+
le: (other: string | number | Long) => boolean;
|
|
950
|
+
modulo: (other: string | number | Long) => Long;
|
|
951
|
+
mod: (other: string | number | Long) => Long;
|
|
952
|
+
rem: (other: string | number | Long) => Long;
|
|
953
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
954
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
839
955
|
negate: () => Long;
|
|
840
956
|
neg: () => Long;
|
|
841
957
|
not: () => Long;
|
|
@@ -843,10 +959,10 @@ export declare const ListFilesystemsReply: {
|
|
|
843
959
|
clz: () => number;
|
|
844
960
|
countTrailingZeros: () => number;
|
|
845
961
|
ctz: () => number;
|
|
846
|
-
notEquals: (other:
|
|
847
|
-
neq: (other:
|
|
848
|
-
ne: (other:
|
|
849
|
-
or: (other:
|
|
962
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
963
|
+
neq: (other: string | number | Long) => boolean;
|
|
964
|
+
ne: (other: string | number | Long) => boolean;
|
|
965
|
+
or: (other: string | number | Long) => Long;
|
|
850
966
|
shiftLeft: (numBits: number | Long) => Long;
|
|
851
967
|
shl: (numBits: number | Long) => Long;
|
|
852
968
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -858,9 +974,8 @@ export declare const ListFilesystemsReply: {
|
|
|
858
974
|
rotl: (numBits: number | Long) => Long;
|
|
859
975
|
rotateRight: (numBits: number | Long) => Long;
|
|
860
976
|
rotr: (numBits: number | Long) => Long;
|
|
861
|
-
subtract: (subtrahend:
|
|
862
|
-
sub: (subtrahend:
|
|
863
|
-
toBigInt: () => bigint;
|
|
977
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
978
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
864
979
|
toInt: () => number;
|
|
865
980
|
toNumber: () => number;
|
|
866
981
|
toBytes: (le?: boolean) => number[];
|
|
@@ -869,9 +984,20 @@ export declare const ListFilesystemsReply: {
|
|
|
869
984
|
toSigned: () => Long;
|
|
870
985
|
toString: (radix?: number) => string;
|
|
871
986
|
toUnsigned: () => Long;
|
|
872
|
-
xor: (other:
|
|
873
|
-
} & { [
|
|
874
|
-
|
|
987
|
+
xor: (other: string | number | Long) => Long;
|
|
988
|
+
} & { [K_17 in Exclude<keyof I_1["mounted"][number]["usedSize"], keyof Long>]: never; });
|
|
989
|
+
iscsiInfo?: {
|
|
990
|
+
address?: string;
|
|
991
|
+
IQN?: string;
|
|
992
|
+
lun?: string;
|
|
993
|
+
partion?: string | undefined;
|
|
994
|
+
} & {
|
|
995
|
+
address?: string;
|
|
996
|
+
IQN?: string;
|
|
997
|
+
lun?: string;
|
|
998
|
+
partion?: string | undefined;
|
|
999
|
+
} & { [K_18 in Exclude<keyof I_1["mounted"][number]["iscsiInfo"], keyof ISCSIDeviceInfo>]: never; };
|
|
1000
|
+
} & { [K_19 in Exclude<keyof I_1["mounted"][number], keyof Filesystem>]: never; })[] & { [K_20 in Exclude<keyof I_1["mounted"], keyof {
|
|
875
1001
|
source?: string;
|
|
876
1002
|
fstype?: string;
|
|
877
1003
|
name?: string;
|
|
@@ -880,8 +1006,14 @@ export declare const ListFilesystemsReply: {
|
|
|
880
1006
|
mountpoint?: string | undefined;
|
|
881
1007
|
ro?: boolean | undefined;
|
|
882
1008
|
usedSize?: string | number | Long;
|
|
1009
|
+
iscsiInfo?: {
|
|
1010
|
+
address?: string;
|
|
1011
|
+
IQN?: string;
|
|
1012
|
+
lun?: string;
|
|
1013
|
+
partion?: string | undefined;
|
|
1014
|
+
};
|
|
883
1015
|
}[]>]: never; };
|
|
884
|
-
} & { [
|
|
1016
|
+
} & { [K_21 in Exclude<keyof I_1, keyof ListFilesystemsReply>]: never; }>(object: I_1): ListFilesystemsReply;
|
|
885
1017
|
};
|
|
886
1018
|
export declare const Filesystem: {
|
|
887
1019
|
encode(message: Filesystem, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -897,6 +1029,12 @@ export declare const Filesystem: {
|
|
|
897
1029
|
mountpoint?: string | undefined;
|
|
898
1030
|
ro?: boolean | undefined;
|
|
899
1031
|
usedSize?: string | number | Long;
|
|
1032
|
+
iscsiInfo?: {
|
|
1033
|
+
address?: string;
|
|
1034
|
+
IQN?: string;
|
|
1035
|
+
lun?: string;
|
|
1036
|
+
partion?: string | undefined;
|
|
1037
|
+
};
|
|
900
1038
|
} & {
|
|
901
1039
|
source?: string;
|
|
902
1040
|
fstype?: string;
|
|
@@ -905,41 +1043,40 @@ export declare const Filesystem: {
|
|
|
905
1043
|
high: number;
|
|
906
1044
|
low: number;
|
|
907
1045
|
unsigned: boolean;
|
|
908
|
-
add: (addend:
|
|
909
|
-
and: (other:
|
|
910
|
-
compare: (other:
|
|
911
|
-
comp: (other:
|
|
912
|
-
divide: (divisor:
|
|
913
|
-
div: (divisor:
|
|
914
|
-
equals: (other:
|
|
915
|
-
eq: (other:
|
|
1046
|
+
add: (addend: string | number | Long) => Long;
|
|
1047
|
+
and: (other: string | number | Long) => Long;
|
|
1048
|
+
compare: (other: string | number | Long) => number;
|
|
1049
|
+
comp: (other: string | number | Long) => number;
|
|
1050
|
+
divide: (divisor: string | number | Long) => Long;
|
|
1051
|
+
div: (divisor: string | number | Long) => Long;
|
|
1052
|
+
equals: (other: string | number | Long) => boolean;
|
|
1053
|
+
eq: (other: string | number | Long) => boolean;
|
|
916
1054
|
getHighBits: () => number;
|
|
917
1055
|
getHighBitsUnsigned: () => number;
|
|
918
1056
|
getLowBits: () => number;
|
|
919
1057
|
getLowBitsUnsigned: () => number;
|
|
920
1058
|
getNumBitsAbs: () => number;
|
|
921
|
-
greaterThan: (other:
|
|
922
|
-
gt: (other:
|
|
923
|
-
greaterThanOrEqual: (other:
|
|
924
|
-
gte: (other:
|
|
925
|
-
ge: (other:
|
|
1059
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
1060
|
+
gt: (other: string | number | Long) => boolean;
|
|
1061
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
1062
|
+
gte: (other: string | number | Long) => boolean;
|
|
1063
|
+
ge: (other: string | number | Long) => boolean;
|
|
926
1064
|
isEven: () => boolean;
|
|
927
1065
|
isNegative: () => boolean;
|
|
928
1066
|
isOdd: () => boolean;
|
|
929
1067
|
isPositive: () => boolean;
|
|
930
|
-
isSafeInteger: () => boolean;
|
|
931
1068
|
isZero: () => boolean;
|
|
932
1069
|
eqz: () => boolean;
|
|
933
|
-
lessThan: (other:
|
|
934
|
-
lt: (other:
|
|
935
|
-
lessThanOrEqual: (other:
|
|
936
|
-
lte: (other:
|
|
937
|
-
le: (other:
|
|
938
|
-
modulo: (other:
|
|
939
|
-
mod: (other:
|
|
940
|
-
rem: (other:
|
|
941
|
-
multiply: (multiplier:
|
|
942
|
-
mul: (multiplier:
|
|
1070
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
1071
|
+
lt: (other: string | number | Long) => boolean;
|
|
1072
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
1073
|
+
lte: (other: string | number | Long) => boolean;
|
|
1074
|
+
le: (other: string | number | Long) => boolean;
|
|
1075
|
+
modulo: (other: string | number | Long) => Long;
|
|
1076
|
+
mod: (other: string | number | Long) => Long;
|
|
1077
|
+
rem: (other: string | number | Long) => Long;
|
|
1078
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
1079
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
943
1080
|
negate: () => Long;
|
|
944
1081
|
neg: () => Long;
|
|
945
1082
|
not: () => Long;
|
|
@@ -947,10 +1084,10 @@ export declare const Filesystem: {
|
|
|
947
1084
|
clz: () => number;
|
|
948
1085
|
countTrailingZeros: () => number;
|
|
949
1086
|
ctz: () => number;
|
|
950
|
-
notEquals: (other:
|
|
951
|
-
neq: (other:
|
|
952
|
-
ne: (other:
|
|
953
|
-
or: (other:
|
|
1087
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
1088
|
+
neq: (other: string | number | Long) => boolean;
|
|
1089
|
+
ne: (other: string | number | Long) => boolean;
|
|
1090
|
+
or: (other: string | number | Long) => Long;
|
|
954
1091
|
shiftLeft: (numBits: number | Long) => Long;
|
|
955
1092
|
shl: (numBits: number | Long) => Long;
|
|
956
1093
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -962,9 +1099,8 @@ export declare const Filesystem: {
|
|
|
962
1099
|
rotl: (numBits: number | Long) => Long;
|
|
963
1100
|
rotateRight: (numBits: number | Long) => Long;
|
|
964
1101
|
rotr: (numBits: number | Long) => Long;
|
|
965
|
-
subtract: (subtrahend:
|
|
966
|
-
sub: (subtrahend:
|
|
967
|
-
toBigInt: () => bigint;
|
|
1102
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
1103
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
968
1104
|
toInt: () => number;
|
|
969
1105
|
toNumber: () => number;
|
|
970
1106
|
toBytes: (le?: boolean) => number[];
|
|
@@ -973,7 +1109,7 @@ export declare const Filesystem: {
|
|
|
973
1109
|
toSigned: () => Long;
|
|
974
1110
|
toString: (radix?: number) => string;
|
|
975
1111
|
toUnsigned: () => Long;
|
|
976
|
-
xor: (other:
|
|
1112
|
+
xor: (other: string | number | Long) => Long;
|
|
977
1113
|
} & { [K in Exclude<keyof I["size"], keyof Long>]: never; });
|
|
978
1114
|
uuid?: string | undefined;
|
|
979
1115
|
mountpoint?: string | undefined;
|
|
@@ -982,41 +1118,40 @@ export declare const Filesystem: {
|
|
|
982
1118
|
high: number;
|
|
983
1119
|
low: number;
|
|
984
1120
|
unsigned: boolean;
|
|
985
|
-
add: (addend:
|
|
986
|
-
and: (other:
|
|
987
|
-
compare: (other:
|
|
988
|
-
comp: (other:
|
|
989
|
-
divide: (divisor:
|
|
990
|
-
div: (divisor:
|
|
991
|
-
equals: (other:
|
|
992
|
-
eq: (other:
|
|
1121
|
+
add: (addend: string | number | Long) => Long;
|
|
1122
|
+
and: (other: string | number | Long) => Long;
|
|
1123
|
+
compare: (other: string | number | Long) => number;
|
|
1124
|
+
comp: (other: string | number | Long) => number;
|
|
1125
|
+
divide: (divisor: string | number | Long) => Long;
|
|
1126
|
+
div: (divisor: string | number | Long) => Long;
|
|
1127
|
+
equals: (other: string | number | Long) => boolean;
|
|
1128
|
+
eq: (other: string | number | Long) => boolean;
|
|
993
1129
|
getHighBits: () => number;
|
|
994
1130
|
getHighBitsUnsigned: () => number;
|
|
995
1131
|
getLowBits: () => number;
|
|
996
1132
|
getLowBitsUnsigned: () => number;
|
|
997
1133
|
getNumBitsAbs: () => number;
|
|
998
|
-
greaterThan: (other:
|
|
999
|
-
gt: (other:
|
|
1000
|
-
greaterThanOrEqual: (other:
|
|
1001
|
-
gte: (other:
|
|
1002
|
-
ge: (other:
|
|
1134
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
1135
|
+
gt: (other: string | number | Long) => boolean;
|
|
1136
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
1137
|
+
gte: (other: string | number | Long) => boolean;
|
|
1138
|
+
ge: (other: string | number | Long) => boolean;
|
|
1003
1139
|
isEven: () => boolean;
|
|
1004
1140
|
isNegative: () => boolean;
|
|
1005
1141
|
isOdd: () => boolean;
|
|
1006
1142
|
isPositive: () => boolean;
|
|
1007
|
-
isSafeInteger: () => boolean;
|
|
1008
1143
|
isZero: () => boolean;
|
|
1009
1144
|
eqz: () => boolean;
|
|
1010
|
-
lessThan: (other:
|
|
1011
|
-
lt: (other:
|
|
1012
|
-
lessThanOrEqual: (other:
|
|
1013
|
-
lte: (other:
|
|
1014
|
-
le: (other:
|
|
1015
|
-
modulo: (other:
|
|
1016
|
-
mod: (other:
|
|
1017
|
-
rem: (other:
|
|
1018
|
-
multiply: (multiplier:
|
|
1019
|
-
mul: (multiplier:
|
|
1145
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
1146
|
+
lt: (other: string | number | Long) => boolean;
|
|
1147
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
1148
|
+
lte: (other: string | number | Long) => boolean;
|
|
1149
|
+
le: (other: string | number | Long) => boolean;
|
|
1150
|
+
modulo: (other: string | number | Long) => Long;
|
|
1151
|
+
mod: (other: string | number | Long) => Long;
|
|
1152
|
+
rem: (other: string | number | Long) => Long;
|
|
1153
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
1154
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
1020
1155
|
negate: () => Long;
|
|
1021
1156
|
neg: () => Long;
|
|
1022
1157
|
not: () => Long;
|
|
@@ -1024,10 +1159,10 @@ export declare const Filesystem: {
|
|
|
1024
1159
|
clz: () => number;
|
|
1025
1160
|
countTrailingZeros: () => number;
|
|
1026
1161
|
ctz: () => number;
|
|
1027
|
-
notEquals: (other:
|
|
1028
|
-
neq: (other:
|
|
1029
|
-
ne: (other:
|
|
1030
|
-
or: (other:
|
|
1162
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
1163
|
+
neq: (other: string | number | Long) => boolean;
|
|
1164
|
+
ne: (other: string | number | Long) => boolean;
|
|
1165
|
+
or: (other: string | number | Long) => Long;
|
|
1031
1166
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1032
1167
|
shl: (numBits: number | Long) => Long;
|
|
1033
1168
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1039,9 +1174,8 @@ export declare const Filesystem: {
|
|
|
1039
1174
|
rotl: (numBits: number | Long) => Long;
|
|
1040
1175
|
rotateRight: (numBits: number | Long) => Long;
|
|
1041
1176
|
rotr: (numBits: number | Long) => Long;
|
|
1042
|
-
subtract: (subtrahend:
|
|
1043
|
-
sub: (subtrahend:
|
|
1044
|
-
toBigInt: () => bigint;
|
|
1177
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
1178
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
1045
1179
|
toInt: () => number;
|
|
1046
1180
|
toNumber: () => number;
|
|
1047
1181
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1050,9 +1184,20 @@ export declare const Filesystem: {
|
|
|
1050
1184
|
toSigned: () => Long;
|
|
1051
1185
|
toString: (radix?: number) => string;
|
|
1052
1186
|
toUnsigned: () => Long;
|
|
1053
|
-
xor: (other:
|
|
1187
|
+
xor: (other: string | number | Long) => Long;
|
|
1054
1188
|
} & { [K_1 in Exclude<keyof I["usedSize"], keyof Long>]: never; });
|
|
1055
|
-
|
|
1189
|
+
iscsiInfo?: {
|
|
1190
|
+
address?: string;
|
|
1191
|
+
IQN?: string;
|
|
1192
|
+
lun?: string;
|
|
1193
|
+
partion?: string | undefined;
|
|
1194
|
+
} & {
|
|
1195
|
+
address?: string;
|
|
1196
|
+
IQN?: string;
|
|
1197
|
+
lun?: string;
|
|
1198
|
+
partion?: string | undefined;
|
|
1199
|
+
} & { [K_2 in Exclude<keyof I["iscsiInfo"], keyof ISCSIDeviceInfo>]: never; };
|
|
1200
|
+
} & { [K_3 in Exclude<keyof I, keyof Filesystem>]: never; }>(base?: I): Filesystem;
|
|
1056
1201
|
fromPartial<I_1 extends {
|
|
1057
1202
|
source?: string;
|
|
1058
1203
|
fstype?: string;
|
|
@@ -1062,6 +1207,12 @@ export declare const Filesystem: {
|
|
|
1062
1207
|
mountpoint?: string | undefined;
|
|
1063
1208
|
ro?: boolean | undefined;
|
|
1064
1209
|
usedSize?: string | number | Long;
|
|
1210
|
+
iscsiInfo?: {
|
|
1211
|
+
address?: string;
|
|
1212
|
+
IQN?: string;
|
|
1213
|
+
lun?: string;
|
|
1214
|
+
partion?: string | undefined;
|
|
1215
|
+
};
|
|
1065
1216
|
} & {
|
|
1066
1217
|
source?: string;
|
|
1067
1218
|
fstype?: string;
|
|
@@ -1070,41 +1221,40 @@ export declare const Filesystem: {
|
|
|
1070
1221
|
high: number;
|
|
1071
1222
|
low: number;
|
|
1072
1223
|
unsigned: boolean;
|
|
1073
|
-
add: (addend:
|
|
1074
|
-
and: (other:
|
|
1075
|
-
compare: (other:
|
|
1076
|
-
comp: (other:
|
|
1077
|
-
divide: (divisor:
|
|
1078
|
-
div: (divisor:
|
|
1079
|
-
equals: (other:
|
|
1080
|
-
eq: (other:
|
|
1224
|
+
add: (addend: string | number | Long) => Long;
|
|
1225
|
+
and: (other: string | number | Long) => Long;
|
|
1226
|
+
compare: (other: string | number | Long) => number;
|
|
1227
|
+
comp: (other: string | number | Long) => number;
|
|
1228
|
+
divide: (divisor: string | number | Long) => Long;
|
|
1229
|
+
div: (divisor: string | number | Long) => Long;
|
|
1230
|
+
equals: (other: string | number | Long) => boolean;
|
|
1231
|
+
eq: (other: string | number | Long) => boolean;
|
|
1081
1232
|
getHighBits: () => number;
|
|
1082
1233
|
getHighBitsUnsigned: () => number;
|
|
1083
1234
|
getLowBits: () => number;
|
|
1084
1235
|
getLowBitsUnsigned: () => number;
|
|
1085
1236
|
getNumBitsAbs: () => number;
|
|
1086
|
-
greaterThan: (other:
|
|
1087
|
-
gt: (other:
|
|
1088
|
-
greaterThanOrEqual: (other:
|
|
1089
|
-
gte: (other:
|
|
1090
|
-
ge: (other:
|
|
1237
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
1238
|
+
gt: (other: string | number | Long) => boolean;
|
|
1239
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
1240
|
+
gte: (other: string | number | Long) => boolean;
|
|
1241
|
+
ge: (other: string | number | Long) => boolean;
|
|
1091
1242
|
isEven: () => boolean;
|
|
1092
1243
|
isNegative: () => boolean;
|
|
1093
1244
|
isOdd: () => boolean;
|
|
1094
1245
|
isPositive: () => boolean;
|
|
1095
|
-
isSafeInteger: () => boolean;
|
|
1096
1246
|
isZero: () => boolean;
|
|
1097
1247
|
eqz: () => boolean;
|
|
1098
|
-
lessThan: (other:
|
|
1099
|
-
lt: (other:
|
|
1100
|
-
lessThanOrEqual: (other:
|
|
1101
|
-
lte: (other:
|
|
1102
|
-
le: (other:
|
|
1103
|
-
modulo: (other:
|
|
1104
|
-
mod: (other:
|
|
1105
|
-
rem: (other:
|
|
1106
|
-
multiply: (multiplier:
|
|
1107
|
-
mul: (multiplier:
|
|
1248
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
1249
|
+
lt: (other: string | number | Long) => boolean;
|
|
1250
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
1251
|
+
lte: (other: string | number | Long) => boolean;
|
|
1252
|
+
le: (other: string | number | Long) => boolean;
|
|
1253
|
+
modulo: (other: string | number | Long) => Long;
|
|
1254
|
+
mod: (other: string | number | Long) => Long;
|
|
1255
|
+
rem: (other: string | number | Long) => Long;
|
|
1256
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
1257
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
1108
1258
|
negate: () => Long;
|
|
1109
1259
|
neg: () => Long;
|
|
1110
1260
|
not: () => Long;
|
|
@@ -1112,10 +1262,10 @@ export declare const Filesystem: {
|
|
|
1112
1262
|
clz: () => number;
|
|
1113
1263
|
countTrailingZeros: () => number;
|
|
1114
1264
|
ctz: () => number;
|
|
1115
|
-
notEquals: (other:
|
|
1116
|
-
neq: (other:
|
|
1117
|
-
ne: (other:
|
|
1118
|
-
or: (other:
|
|
1265
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
1266
|
+
neq: (other: string | number | Long) => boolean;
|
|
1267
|
+
ne: (other: string | number | Long) => boolean;
|
|
1268
|
+
or: (other: string | number | Long) => Long;
|
|
1119
1269
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1120
1270
|
shl: (numBits: number | Long) => Long;
|
|
1121
1271
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1127,9 +1277,8 @@ export declare const Filesystem: {
|
|
|
1127
1277
|
rotl: (numBits: number | Long) => Long;
|
|
1128
1278
|
rotateRight: (numBits: number | Long) => Long;
|
|
1129
1279
|
rotr: (numBits: number | Long) => Long;
|
|
1130
|
-
subtract: (subtrahend:
|
|
1131
|
-
sub: (subtrahend:
|
|
1132
|
-
toBigInt: () => bigint;
|
|
1280
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
1281
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
1133
1282
|
toInt: () => number;
|
|
1134
1283
|
toNumber: () => number;
|
|
1135
1284
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1138,8 +1287,8 @@ export declare const Filesystem: {
|
|
|
1138
1287
|
toSigned: () => Long;
|
|
1139
1288
|
toString: (radix?: number) => string;
|
|
1140
1289
|
toUnsigned: () => Long;
|
|
1141
|
-
xor: (other:
|
|
1142
|
-
} & { [
|
|
1290
|
+
xor: (other: string | number | Long) => Long;
|
|
1291
|
+
} & { [K_4 in Exclude<keyof I_1["size"], keyof Long>]: never; });
|
|
1143
1292
|
uuid?: string | undefined;
|
|
1144
1293
|
mountpoint?: string | undefined;
|
|
1145
1294
|
ro?: boolean | undefined;
|
|
@@ -1147,41 +1296,40 @@ export declare const Filesystem: {
|
|
|
1147
1296
|
high: number;
|
|
1148
1297
|
low: number;
|
|
1149
1298
|
unsigned: boolean;
|
|
1150
|
-
add: (addend:
|
|
1151
|
-
and: (other:
|
|
1152
|
-
compare: (other:
|
|
1153
|
-
comp: (other:
|
|
1154
|
-
divide: (divisor:
|
|
1155
|
-
div: (divisor:
|
|
1156
|
-
equals: (other:
|
|
1157
|
-
eq: (other:
|
|
1299
|
+
add: (addend: string | number | Long) => Long;
|
|
1300
|
+
and: (other: string | number | Long) => Long;
|
|
1301
|
+
compare: (other: string | number | Long) => number;
|
|
1302
|
+
comp: (other: string | number | Long) => number;
|
|
1303
|
+
divide: (divisor: string | number | Long) => Long;
|
|
1304
|
+
div: (divisor: string | number | Long) => Long;
|
|
1305
|
+
equals: (other: string | number | Long) => boolean;
|
|
1306
|
+
eq: (other: string | number | Long) => boolean;
|
|
1158
1307
|
getHighBits: () => number;
|
|
1159
1308
|
getHighBitsUnsigned: () => number;
|
|
1160
1309
|
getLowBits: () => number;
|
|
1161
1310
|
getLowBitsUnsigned: () => number;
|
|
1162
1311
|
getNumBitsAbs: () => number;
|
|
1163
|
-
greaterThan: (other:
|
|
1164
|
-
gt: (other:
|
|
1165
|
-
greaterThanOrEqual: (other:
|
|
1166
|
-
gte: (other:
|
|
1167
|
-
ge: (other:
|
|
1312
|
+
greaterThan: (other: string | number | Long) => boolean;
|
|
1313
|
+
gt: (other: string | number | Long) => boolean;
|
|
1314
|
+
greaterThanOrEqual: (other: string | number | Long) => boolean;
|
|
1315
|
+
gte: (other: string | number | Long) => boolean;
|
|
1316
|
+
ge: (other: string | number | Long) => boolean;
|
|
1168
1317
|
isEven: () => boolean;
|
|
1169
1318
|
isNegative: () => boolean;
|
|
1170
1319
|
isOdd: () => boolean;
|
|
1171
1320
|
isPositive: () => boolean;
|
|
1172
|
-
isSafeInteger: () => boolean;
|
|
1173
1321
|
isZero: () => boolean;
|
|
1174
1322
|
eqz: () => boolean;
|
|
1175
|
-
lessThan: (other:
|
|
1176
|
-
lt: (other:
|
|
1177
|
-
lessThanOrEqual: (other:
|
|
1178
|
-
lte: (other:
|
|
1179
|
-
le: (other:
|
|
1180
|
-
modulo: (other:
|
|
1181
|
-
mod: (other:
|
|
1182
|
-
rem: (other:
|
|
1183
|
-
multiply: (multiplier:
|
|
1184
|
-
mul: (multiplier:
|
|
1323
|
+
lessThan: (other: string | number | Long) => boolean;
|
|
1324
|
+
lt: (other: string | number | Long) => boolean;
|
|
1325
|
+
lessThanOrEqual: (other: string | number | Long) => boolean;
|
|
1326
|
+
lte: (other: string | number | Long) => boolean;
|
|
1327
|
+
le: (other: string | number | Long) => boolean;
|
|
1328
|
+
modulo: (other: string | number | Long) => Long;
|
|
1329
|
+
mod: (other: string | number | Long) => Long;
|
|
1330
|
+
rem: (other: string | number | Long) => Long;
|
|
1331
|
+
multiply: (multiplier: string | number | Long) => Long;
|
|
1332
|
+
mul: (multiplier: string | number | Long) => Long;
|
|
1185
1333
|
negate: () => Long;
|
|
1186
1334
|
neg: () => Long;
|
|
1187
1335
|
not: () => Long;
|
|
@@ -1189,10 +1337,10 @@ export declare const Filesystem: {
|
|
|
1189
1337
|
clz: () => number;
|
|
1190
1338
|
countTrailingZeros: () => number;
|
|
1191
1339
|
ctz: () => number;
|
|
1192
|
-
notEquals: (other:
|
|
1193
|
-
neq: (other:
|
|
1194
|
-
ne: (other:
|
|
1195
|
-
or: (other:
|
|
1340
|
+
notEquals: (other: string | number | Long) => boolean;
|
|
1341
|
+
neq: (other: string | number | Long) => boolean;
|
|
1342
|
+
ne: (other: string | number | Long) => boolean;
|
|
1343
|
+
or: (other: string | number | Long) => Long;
|
|
1196
1344
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1197
1345
|
shl: (numBits: number | Long) => Long;
|
|
1198
1346
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1204,9 +1352,8 @@ export declare const Filesystem: {
|
|
|
1204
1352
|
rotl: (numBits: number | Long) => Long;
|
|
1205
1353
|
rotateRight: (numBits: number | Long) => Long;
|
|
1206
1354
|
rotr: (numBits: number | Long) => Long;
|
|
1207
|
-
subtract: (subtrahend:
|
|
1208
|
-
sub: (subtrahend:
|
|
1209
|
-
toBigInt: () => bigint;
|
|
1355
|
+
subtract: (subtrahend: string | number | Long) => Long;
|
|
1356
|
+
sub: (subtrahend: string | number | Long) => Long;
|
|
1210
1357
|
toInt: () => number;
|
|
1211
1358
|
toNumber: () => number;
|
|
1212
1359
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1215,9 +1362,48 @@ export declare const Filesystem: {
|
|
|
1215
1362
|
toSigned: () => Long;
|
|
1216
1363
|
toString: (radix?: number) => string;
|
|
1217
1364
|
toUnsigned: () => Long;
|
|
1218
|
-
xor: (other:
|
|
1219
|
-
} & { [
|
|
1220
|
-
|
|
1365
|
+
xor: (other: string | number | Long) => Long;
|
|
1366
|
+
} & { [K_5 in Exclude<keyof I_1["usedSize"], keyof Long>]: never; });
|
|
1367
|
+
iscsiInfo?: {
|
|
1368
|
+
address?: string;
|
|
1369
|
+
IQN?: string;
|
|
1370
|
+
lun?: string;
|
|
1371
|
+
partion?: string | undefined;
|
|
1372
|
+
} & {
|
|
1373
|
+
address?: string;
|
|
1374
|
+
IQN?: string;
|
|
1375
|
+
lun?: string;
|
|
1376
|
+
partion?: string | undefined;
|
|
1377
|
+
} & { [K_6 in Exclude<keyof I_1["iscsiInfo"], keyof ISCSIDeviceInfo>]: never; };
|
|
1378
|
+
} & { [K_7 in Exclude<keyof I_1, keyof Filesystem>]: never; }>(object: I_1): Filesystem;
|
|
1379
|
+
};
|
|
1380
|
+
export declare const ISCSIDeviceInfo: {
|
|
1381
|
+
encode(message: ISCSIDeviceInfo, writer?: _m0.Writer): _m0.Writer;
|
|
1382
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ISCSIDeviceInfo;
|
|
1383
|
+
fromJSON(object: any): ISCSIDeviceInfo;
|
|
1384
|
+
toJSON(message: ISCSIDeviceInfo): unknown;
|
|
1385
|
+
create<I extends {
|
|
1386
|
+
address?: string;
|
|
1387
|
+
IQN?: string;
|
|
1388
|
+
lun?: string;
|
|
1389
|
+
partion?: string | undefined;
|
|
1390
|
+
} & {
|
|
1391
|
+
address?: string;
|
|
1392
|
+
IQN?: string;
|
|
1393
|
+
lun?: string;
|
|
1394
|
+
partion?: string | undefined;
|
|
1395
|
+
} & { [K in Exclude<keyof I, keyof ISCSIDeviceInfo>]: never; }>(base?: I): ISCSIDeviceInfo;
|
|
1396
|
+
fromPartial<I_1 extends {
|
|
1397
|
+
address?: string;
|
|
1398
|
+
IQN?: string;
|
|
1399
|
+
lun?: string;
|
|
1400
|
+
partion?: string | undefined;
|
|
1401
|
+
} & {
|
|
1402
|
+
address?: string;
|
|
1403
|
+
IQN?: string;
|
|
1404
|
+
lun?: string;
|
|
1405
|
+
partion?: string | undefined;
|
|
1406
|
+
} & { [K_1 in Exclude<keyof I_1, keyof ISCSIDeviceInfo>]: never; }>(object: I_1): ISCSIDeviceInfo;
|
|
1221
1407
|
};
|
|
1222
1408
|
export declare const ListRemoteFilesystemReply: {
|
|
1223
1409
|
encode(message: ListRemoteFilesystemReply, writer?: _m0.Writer): _m0.Writer;
|