waldur-js-client 8.0.6-dev.14 → 8.0.6-dev.16
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/types.gen.d.ts +122 -5
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4708,7 +4708,7 @@ export type CourseAccount = {
|
|
|
4708
4708
|
readonly username: string;
|
|
4709
4709
|
readonly customer_uuid: string;
|
|
4710
4710
|
readonly customer_name: string;
|
|
4711
|
-
state:
|
|
4711
|
+
state: CourseAccountStateEnum;
|
|
4712
4712
|
email?: string;
|
|
4713
4713
|
description?: string;
|
|
4714
4714
|
readonly error_message: string;
|
|
@@ -4723,6 +4723,7 @@ export type CourseAccountRequest = {
|
|
|
4723
4723
|
email?: string;
|
|
4724
4724
|
description?: string;
|
|
4725
4725
|
};
|
|
4726
|
+
export type CourseAccountStateEnum = 'OK' | 'Closed' | 'Erred' | 'Pending';
|
|
4726
4727
|
export type CourseAccountsBulkCreateRequest = {
|
|
4727
4728
|
course_accounts: Array<CourseAccountCreateNestedRequest>;
|
|
4728
4729
|
project: string;
|
|
@@ -10155,6 +10156,14 @@ export type NestedPartition = {
|
|
|
10155
10156
|
* Name of the SLURM partition
|
|
10156
10157
|
*/
|
|
10157
10158
|
partition_name?: string;
|
|
10159
|
+
/**
|
|
10160
|
+
* CPU architecture of the partition (e.g., x86_64/amd/zen3)
|
|
10161
|
+
*/
|
|
10162
|
+
cpu_arch?: string;
|
|
10163
|
+
/**
|
|
10164
|
+
* GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
|
|
10165
|
+
*/
|
|
10166
|
+
gpu_arch?: string;
|
|
10158
10167
|
/**
|
|
10159
10168
|
* Default task binding policy (SLURM cpu_bind)
|
|
10160
10169
|
*/
|
|
@@ -10237,6 +10246,14 @@ export type NestedPartitionRequest = {
|
|
|
10237
10246
|
* Name of the SLURM partition
|
|
10238
10247
|
*/
|
|
10239
10248
|
partition_name: string;
|
|
10249
|
+
/**
|
|
10250
|
+
* CPU architecture of the partition (e.g., x86_64/amd/zen3)
|
|
10251
|
+
*/
|
|
10252
|
+
cpu_arch?: string;
|
|
10253
|
+
/**
|
|
10254
|
+
* GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
|
|
10255
|
+
*/
|
|
10256
|
+
gpu_arch?: string;
|
|
10240
10257
|
/**
|
|
10241
10258
|
* Default task binding policy (SLURM cpu_bind)
|
|
10242
10259
|
*/
|
|
@@ -10603,6 +10620,10 @@ export type NestedSoftwareTarget = {
|
|
|
10603
10620
|
* Target-specific metadata (build options, system requirements, etc.)
|
|
10604
10621
|
*/
|
|
10605
10622
|
metadata?: unknown;
|
|
10623
|
+
/**
|
|
10624
|
+
* List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
|
|
10625
|
+
*/
|
|
10626
|
+
gpu_architectures?: unknown;
|
|
10606
10627
|
};
|
|
10607
10628
|
export type NestedSoftwareTargetRequest = {
|
|
10608
10629
|
/**
|
|
@@ -10625,6 +10646,10 @@ export type NestedSoftwareTargetRequest = {
|
|
|
10625
10646
|
* Target-specific metadata (build options, system requirements, etc.)
|
|
10626
10647
|
*/
|
|
10627
10648
|
metadata?: unknown;
|
|
10649
|
+
/**
|
|
10650
|
+
* List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
|
|
10651
|
+
*/
|
|
10652
|
+
gpu_architectures?: unknown;
|
|
10628
10653
|
};
|
|
10629
10654
|
export type NestedSoftwareVersion = {
|
|
10630
10655
|
readonly uuid: string;
|
|
@@ -11397,6 +11422,14 @@ export type OfferingPartition = {
|
|
|
11397
11422
|
* Name of the SLURM partition
|
|
11398
11423
|
*/
|
|
11399
11424
|
partition_name: string;
|
|
11425
|
+
/**
|
|
11426
|
+
* CPU architecture of the partition (e.g., x86_64/amd/zen3)
|
|
11427
|
+
*/
|
|
11428
|
+
cpu_arch?: string;
|
|
11429
|
+
/**
|
|
11430
|
+
* GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
|
|
11431
|
+
*/
|
|
11432
|
+
gpu_arch?: string;
|
|
11400
11433
|
/**
|
|
11401
11434
|
* Default task binding policy (SLURM cpu_bind)
|
|
11402
11435
|
*/
|
|
@@ -11480,6 +11513,14 @@ export type OfferingPartitionRequest = {
|
|
|
11480
11513
|
* Name of the SLURM partition
|
|
11481
11514
|
*/
|
|
11482
11515
|
partition_name: string;
|
|
11516
|
+
/**
|
|
11517
|
+
* CPU architecture of the partition (e.g., x86_64/amd/zen3)
|
|
11518
|
+
*/
|
|
11519
|
+
cpu_arch?: string;
|
|
11520
|
+
/**
|
|
11521
|
+
* GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
|
|
11522
|
+
*/
|
|
11523
|
+
gpu_arch?: string;
|
|
11483
11524
|
/**
|
|
11484
11525
|
* Default task binding policy (SLURM cpu_bind)
|
|
11485
11526
|
*/
|
|
@@ -14782,6 +14823,14 @@ export type PartitionSummary = {
|
|
|
14782
14823
|
* Quality of Service (QOS) name
|
|
14783
14824
|
*/
|
|
14784
14825
|
qos?: string;
|
|
14826
|
+
/**
|
|
14827
|
+
* CPU architecture of the partition (e.g., x86_64/amd/zen3)
|
|
14828
|
+
*/
|
|
14829
|
+
cpu_arch?: string;
|
|
14830
|
+
/**
|
|
14831
|
+
* GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
|
|
14832
|
+
*/
|
|
14833
|
+
gpu_arch?: string;
|
|
14785
14834
|
};
|
|
14786
14835
|
export type PartitionSummaryRequest = {
|
|
14787
14836
|
/**
|
|
@@ -14796,6 +14845,14 @@ export type PartitionSummaryRequest = {
|
|
|
14796
14845
|
* Quality of Service (QOS) name
|
|
14797
14846
|
*/
|
|
14798
14847
|
qos?: string;
|
|
14848
|
+
/**
|
|
14849
|
+
* CPU architecture of the partition (e.g., x86_64/amd/zen3)
|
|
14850
|
+
*/
|
|
14851
|
+
cpu_arch?: string;
|
|
14852
|
+
/**
|
|
14853
|
+
* GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
|
|
14854
|
+
*/
|
|
14855
|
+
gpu_arch?: string;
|
|
14799
14856
|
};
|
|
14800
14857
|
export type PasswordChangeRequest = {
|
|
14801
14858
|
new_password: string;
|
|
@@ -15531,6 +15588,14 @@ export type PatchedOfferingPartitionUpdateRequest = {
|
|
|
15531
15588
|
* Name of the SLURM partition
|
|
15532
15589
|
*/
|
|
15533
15590
|
partition_name?: string;
|
|
15591
|
+
/**
|
|
15592
|
+
* CPU architecture of the partition (e.g., x86_64/amd/zen3)
|
|
15593
|
+
*/
|
|
15594
|
+
cpu_arch?: string;
|
|
15595
|
+
/**
|
|
15596
|
+
* GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
|
|
15597
|
+
*/
|
|
15598
|
+
gpu_arch?: string;
|
|
15534
15599
|
/**
|
|
15535
15600
|
* Default task binding policy (SLURM cpu_bind)
|
|
15536
15601
|
*/
|
|
@@ -23003,6 +23068,10 @@ export type SoftwareTarget = {
|
|
|
23003
23068
|
* Target-specific metadata (build options, system requirements, etc.)
|
|
23004
23069
|
*/
|
|
23005
23070
|
readonly metadata: unknown;
|
|
23071
|
+
/**
|
|
23072
|
+
* List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
|
|
23073
|
+
*/
|
|
23074
|
+
readonly gpu_architectures: unknown;
|
|
23006
23075
|
};
|
|
23007
23076
|
export type SoftwareVersion = {
|
|
23008
23077
|
readonly url: string;
|
|
@@ -40831,7 +40900,7 @@ export type MarketplaceCourseAccountsListData = {
|
|
|
40831
40900
|
*
|
|
40832
40901
|
*
|
|
40833
40902
|
*/
|
|
40834
|
-
state?: Array<
|
|
40903
|
+
state?: Array<CourseAccountStateEnum>;
|
|
40835
40904
|
/**
|
|
40836
40905
|
* Username
|
|
40837
40906
|
*/
|
|
@@ -40890,7 +40959,7 @@ export type MarketplaceCourseAccountsCountData = {
|
|
|
40890
40959
|
*
|
|
40891
40960
|
*
|
|
40892
40961
|
*/
|
|
40893
|
-
state?: Array<
|
|
40962
|
+
state?: Array<CourseAccountStateEnum>;
|
|
40894
40963
|
/**
|
|
40895
40964
|
* Username
|
|
40896
40965
|
*/
|
|
@@ -40988,7 +41057,7 @@ export type MarketplaceCourseAccountsCreateBulkData = {
|
|
|
40988
41057
|
*
|
|
40989
41058
|
*
|
|
40990
41059
|
*/
|
|
40991
|
-
state?: Array<
|
|
41060
|
+
state?: Array<CourseAccountStateEnum>;
|
|
40992
41061
|
/**
|
|
40993
41062
|
* Username
|
|
40994
41063
|
*/
|
|
@@ -50907,7 +50976,7 @@ export type MarketplaceServiceProvidersCourseAccountsListData = {
|
|
|
50907
50976
|
*
|
|
50908
50977
|
*
|
|
50909
50978
|
*/
|
|
50910
|
-
state?: Array<
|
|
50979
|
+
state?: Array<CourseAccountStateEnum>;
|
|
50911
50980
|
/**
|
|
50912
50981
|
* Username
|
|
50913
50982
|
*/
|
|
@@ -52925,6 +52994,14 @@ export type MarketplaceSoftwarePackagesListData = {
|
|
|
52925
52994
|
* Filter packages having extensions of a specific type (e.g., 'python')
|
|
52926
52995
|
*/
|
|
52927
52996
|
extension_type?: string;
|
|
52997
|
+
/**
|
|
52998
|
+
* Filter packages by GPU architecture (e.g., nvidia/cc90)
|
|
52999
|
+
*/
|
|
53000
|
+
gpu_arch?: string;
|
|
53001
|
+
/**
|
|
53002
|
+
* Filter packages that have GPU-enabled builds
|
|
53003
|
+
*/
|
|
53004
|
+
has_gpu?: boolean;
|
|
52928
53005
|
/**
|
|
52929
53006
|
* Filter packages that have a specific version
|
|
52930
53007
|
*/
|
|
@@ -53032,6 +53109,14 @@ export type MarketplaceSoftwarePackagesCountData = {
|
|
|
53032
53109
|
* Filter packages having extensions of a specific type (e.g., 'python')
|
|
53033
53110
|
*/
|
|
53034
53111
|
extension_type?: string;
|
|
53112
|
+
/**
|
|
53113
|
+
* Filter packages by GPU architecture (e.g., nvidia/cc90)
|
|
53114
|
+
*/
|
|
53115
|
+
gpu_arch?: string;
|
|
53116
|
+
/**
|
|
53117
|
+
* Filter packages that have GPU-enabled builds
|
|
53118
|
+
*/
|
|
53119
|
+
has_gpu?: boolean;
|
|
53035
53120
|
/**
|
|
53036
53121
|
* Filter packages that have a specific version
|
|
53037
53122
|
*/
|
|
@@ -53163,6 +53248,14 @@ export type MarketplaceSoftwareTargetsListData = {
|
|
|
53163
53248
|
catalog_uuid?: string;
|
|
53164
53249
|
cpu_family?: string;
|
|
53165
53250
|
cpu_microarchitecture?: string;
|
|
53251
|
+
/**
|
|
53252
|
+
* Filter targets by GPU architecture (e.g., nvidia/cc90)
|
|
53253
|
+
*/
|
|
53254
|
+
gpu_arch?: string;
|
|
53255
|
+
/**
|
|
53256
|
+
* Filter targets that have GPU architectures
|
|
53257
|
+
*/
|
|
53258
|
+
has_gpu?: boolean;
|
|
53166
53259
|
/**
|
|
53167
53260
|
* Ordering
|
|
53168
53261
|
*
|
|
@@ -53207,6 +53300,14 @@ export type MarketplaceSoftwareTargetsCountData = {
|
|
|
53207
53300
|
catalog_uuid?: string;
|
|
53208
53301
|
cpu_family?: string;
|
|
53209
53302
|
cpu_microarchitecture?: string;
|
|
53303
|
+
/**
|
|
53304
|
+
* Filter targets by GPU architecture (e.g., nvidia/cc90)
|
|
53305
|
+
*/
|
|
53306
|
+
gpu_arch?: string;
|
|
53307
|
+
/**
|
|
53308
|
+
* Filter targets that have GPU architectures
|
|
53309
|
+
*/
|
|
53310
|
+
has_gpu?: boolean;
|
|
53210
53311
|
/**
|
|
53211
53312
|
* Ordering
|
|
53212
53313
|
*
|
|
@@ -53320,6 +53421,14 @@ export type MarketplaceSoftwareVersionsListData = {
|
|
|
53320
53421
|
catalog_uuid?: string;
|
|
53321
53422
|
cpu_family?: string;
|
|
53322
53423
|
cpu_microarchitecture?: string;
|
|
53424
|
+
/**
|
|
53425
|
+
* Filter versions by GPU architecture (e.g., nvidia/cc90)
|
|
53426
|
+
*/
|
|
53427
|
+
gpu_arch?: string;
|
|
53428
|
+
/**
|
|
53429
|
+
* Filter versions that have GPU-enabled builds
|
|
53430
|
+
*/
|
|
53431
|
+
has_gpu?: boolean;
|
|
53323
53432
|
/**
|
|
53324
53433
|
* Ordering
|
|
53325
53434
|
*
|
|
@@ -53382,6 +53491,14 @@ export type MarketplaceSoftwareVersionsCountData = {
|
|
|
53382
53491
|
catalog_uuid?: string;
|
|
53383
53492
|
cpu_family?: string;
|
|
53384
53493
|
cpu_microarchitecture?: string;
|
|
53494
|
+
/**
|
|
53495
|
+
* Filter versions by GPU architecture (e.g., nvidia/cc90)
|
|
53496
|
+
*/
|
|
53497
|
+
gpu_arch?: string;
|
|
53498
|
+
/**
|
|
53499
|
+
* Filter versions that have GPU-enabled builds
|
|
53500
|
+
*/
|
|
53501
|
+
has_gpu?: boolean;
|
|
53385
53502
|
/**
|
|
53386
53503
|
* Ordering
|
|
53387
53504
|
*
|