waldur-js-client 8.0.6-dev.14 → 8.0.6-dev.15

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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +116 -0
  2. package/package.json +1 -1
@@ -10155,6 +10155,14 @@ export type NestedPartition = {
10155
10155
  * Name of the SLURM partition
10156
10156
  */
10157
10157
  partition_name?: string;
10158
+ /**
10159
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10160
+ */
10161
+ cpu_arch?: string;
10162
+ /**
10163
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10164
+ */
10165
+ gpu_arch?: string;
10158
10166
  /**
10159
10167
  * Default task binding policy (SLURM cpu_bind)
10160
10168
  */
@@ -10237,6 +10245,14 @@ export type NestedPartitionRequest = {
10237
10245
  * Name of the SLURM partition
10238
10246
  */
10239
10247
  partition_name: string;
10248
+ /**
10249
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
10250
+ */
10251
+ cpu_arch?: string;
10252
+ /**
10253
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
10254
+ */
10255
+ gpu_arch?: string;
10240
10256
  /**
10241
10257
  * Default task binding policy (SLURM cpu_bind)
10242
10258
  */
@@ -10603,6 +10619,10 @@ export type NestedSoftwareTarget = {
10603
10619
  * Target-specific metadata (build options, system requirements, etc.)
10604
10620
  */
10605
10621
  metadata?: unknown;
10622
+ /**
10623
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10624
+ */
10625
+ gpu_architectures?: unknown;
10606
10626
  };
10607
10627
  export type NestedSoftwareTargetRequest = {
10608
10628
  /**
@@ -10625,6 +10645,10 @@ export type NestedSoftwareTargetRequest = {
10625
10645
  * Target-specific metadata (build options, system requirements, etc.)
10626
10646
  */
10627
10647
  metadata?: unknown;
10648
+ /**
10649
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
10650
+ */
10651
+ gpu_architectures?: unknown;
10628
10652
  };
10629
10653
  export type NestedSoftwareVersion = {
10630
10654
  readonly uuid: string;
@@ -11397,6 +11421,14 @@ export type OfferingPartition = {
11397
11421
  * Name of the SLURM partition
11398
11422
  */
11399
11423
  partition_name: string;
11424
+ /**
11425
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11426
+ */
11427
+ cpu_arch?: string;
11428
+ /**
11429
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11430
+ */
11431
+ gpu_arch?: string;
11400
11432
  /**
11401
11433
  * Default task binding policy (SLURM cpu_bind)
11402
11434
  */
@@ -11480,6 +11512,14 @@ export type OfferingPartitionRequest = {
11480
11512
  * Name of the SLURM partition
11481
11513
  */
11482
11514
  partition_name: string;
11515
+ /**
11516
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
11517
+ */
11518
+ cpu_arch?: string;
11519
+ /**
11520
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
11521
+ */
11522
+ gpu_arch?: string;
11483
11523
  /**
11484
11524
  * Default task binding policy (SLURM cpu_bind)
11485
11525
  */
@@ -14782,6 +14822,14 @@ export type PartitionSummary = {
14782
14822
  * Quality of Service (QOS) name
14783
14823
  */
14784
14824
  qos?: string;
14825
+ /**
14826
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14827
+ */
14828
+ cpu_arch?: string;
14829
+ /**
14830
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14831
+ */
14832
+ gpu_arch?: string;
14785
14833
  };
14786
14834
  export type PartitionSummaryRequest = {
14787
14835
  /**
@@ -14796,6 +14844,14 @@ export type PartitionSummaryRequest = {
14796
14844
  * Quality of Service (QOS) name
14797
14845
  */
14798
14846
  qos?: string;
14847
+ /**
14848
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
14849
+ */
14850
+ cpu_arch?: string;
14851
+ /**
14852
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
14853
+ */
14854
+ gpu_arch?: string;
14799
14855
  };
14800
14856
  export type PasswordChangeRequest = {
14801
14857
  new_password: string;
@@ -15531,6 +15587,14 @@ export type PatchedOfferingPartitionUpdateRequest = {
15531
15587
  * Name of the SLURM partition
15532
15588
  */
15533
15589
  partition_name?: string;
15590
+ /**
15591
+ * CPU architecture of the partition (e.g., x86_64/amd/zen3)
15592
+ */
15593
+ cpu_arch?: string;
15594
+ /**
15595
+ * GPU architecture of the partition (e.g., nvidia/cc90, amd/gfx90a)
15596
+ */
15597
+ gpu_arch?: string;
15534
15598
  /**
15535
15599
  * Default task binding policy (SLURM cpu_bind)
15536
15600
  */
@@ -23003,6 +23067,10 @@ export type SoftwareTarget = {
23003
23067
  * Target-specific metadata (build options, system requirements, etc.)
23004
23068
  */
23005
23069
  readonly metadata: unknown;
23070
+ /**
23071
+ * List of GPU architectures this target supports (e.g., ['nvidia/cc70', 'nvidia/cc90'])
23072
+ */
23073
+ readonly gpu_architectures: unknown;
23006
23074
  };
23007
23075
  export type SoftwareVersion = {
23008
23076
  readonly url: string;
@@ -52925,6 +52993,14 @@ export type MarketplaceSoftwarePackagesListData = {
52925
52993
  * Filter packages having extensions of a specific type (e.g., 'python')
52926
52994
  */
52927
52995
  extension_type?: string;
52996
+ /**
52997
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
52998
+ */
52999
+ gpu_arch?: string;
53000
+ /**
53001
+ * Filter packages that have GPU-enabled builds
53002
+ */
53003
+ has_gpu?: boolean;
52928
53004
  /**
52929
53005
  * Filter packages that have a specific version
52930
53006
  */
@@ -53032,6 +53108,14 @@ export type MarketplaceSoftwarePackagesCountData = {
53032
53108
  * Filter packages having extensions of a specific type (e.g., 'python')
53033
53109
  */
53034
53110
  extension_type?: string;
53111
+ /**
53112
+ * Filter packages by GPU architecture (e.g., nvidia/cc90)
53113
+ */
53114
+ gpu_arch?: string;
53115
+ /**
53116
+ * Filter packages that have GPU-enabled builds
53117
+ */
53118
+ has_gpu?: boolean;
53035
53119
  /**
53036
53120
  * Filter packages that have a specific version
53037
53121
  */
@@ -53163,6 +53247,14 @@ export type MarketplaceSoftwareTargetsListData = {
53163
53247
  catalog_uuid?: string;
53164
53248
  cpu_family?: string;
53165
53249
  cpu_microarchitecture?: string;
53250
+ /**
53251
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53252
+ */
53253
+ gpu_arch?: string;
53254
+ /**
53255
+ * Filter targets that have GPU architectures
53256
+ */
53257
+ has_gpu?: boolean;
53166
53258
  /**
53167
53259
  * Ordering
53168
53260
  *
@@ -53207,6 +53299,14 @@ export type MarketplaceSoftwareTargetsCountData = {
53207
53299
  catalog_uuid?: string;
53208
53300
  cpu_family?: string;
53209
53301
  cpu_microarchitecture?: string;
53302
+ /**
53303
+ * Filter targets by GPU architecture (e.g., nvidia/cc90)
53304
+ */
53305
+ gpu_arch?: string;
53306
+ /**
53307
+ * Filter targets that have GPU architectures
53308
+ */
53309
+ has_gpu?: boolean;
53210
53310
  /**
53211
53311
  * Ordering
53212
53312
  *
@@ -53320,6 +53420,14 @@ export type MarketplaceSoftwareVersionsListData = {
53320
53420
  catalog_uuid?: string;
53321
53421
  cpu_family?: string;
53322
53422
  cpu_microarchitecture?: string;
53423
+ /**
53424
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
53425
+ */
53426
+ gpu_arch?: string;
53427
+ /**
53428
+ * Filter versions that have GPU-enabled builds
53429
+ */
53430
+ has_gpu?: boolean;
53323
53431
  /**
53324
53432
  * Ordering
53325
53433
  *
@@ -53382,6 +53490,14 @@ export type MarketplaceSoftwareVersionsCountData = {
53382
53490
  catalog_uuid?: string;
53383
53491
  cpu_family?: string;
53384
53492
  cpu_microarchitecture?: string;
53493
+ /**
53494
+ * Filter versions by GPU architecture (e.g., nvidia/cc90)
53495
+ */
53496
+ gpu_arch?: string;
53497
+ /**
53498
+ * Filter versions that have GPU-enabled builds
53499
+ */
53500
+ has_gpu?: boolean;
53385
53501
  /**
53386
53502
  * Ordering
53387
53503
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.6-dev.14",
3
+ "version": "8.0.6-dev.15",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",