waldur-js-client 7.9.9-dev.8 → 7.9.9

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.
@@ -4006,6 +4006,7 @@ export type CreateRouterRequest = {
4006
4006
  tenant: string;
4007
4007
  name: string;
4008
4008
  };
4009
+ export type CurrentQosStatusEnum = 'normal' | 'notification' | 'slowdown' | 'blocked';
4009
4010
  export type Customer = {
4010
4011
  readonly url?: string;
4011
4012
  readonly uuid?: string;
@@ -4456,6 +4457,10 @@ export type DailyOrderStats = {
4456
4457
  * Total cost of orders
4457
4458
  */
4458
4459
  total_cost: string | null;
4460
+ /**
4461
+ * Revenue from create/update orders
4462
+ */
4463
+ revenue: string | null;
4459
4464
  /**
4460
4465
  * Order counts grouped by state
4461
4466
  */
@@ -5091,6 +5096,7 @@ export type ExecuteActionResponse = {
5091
5096
  [key: string]: unknown;
5092
5097
  };
5093
5098
  };
5099
+ export type ExecutionModeEnum = 'production' | 'emulator';
5094
5100
  export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
5095
5101
  export type ExpertiseCategory = {
5096
5102
  readonly url: string;
@@ -7291,6 +7297,10 @@ export type MergedPluginOptions = {
7291
7297
  * Enable display of order actions for service provider
7292
7298
  */
7293
7299
  enable_display_of_order_actions_for_service_provider?: boolean;
7300
+ /**
7301
+ * Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
7302
+ */
7303
+ slurm_periodic_policy_enabled?: boolean;
7294
7304
  /**
7295
7305
  * If set to False, all orders require manual provider approval, including for service provider owners and staff
7296
7306
  */
@@ -7541,6 +7551,10 @@ export type MergedPluginOptionsRequest = {
7541
7551
  * Enable display of order actions for service provider
7542
7552
  */
7543
7553
  enable_display_of_order_actions_for_service_provider?: boolean;
7554
+ /**
7555
+ * Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
7556
+ */
7557
+ slurm_periodic_policy_enabled?: boolean;
7544
7558
  /**
7545
7559
  * If set to False, all orders require manual provider approval, including for service provider owners and staff
7546
7560
  */
@@ -8700,6 +8714,15 @@ export type NestedSoftwareVersion = {
8700
8714
  version: string;
8701
8715
  release_date?: string | null;
8702
8716
  readonly targets: Array<NestedSoftwareTarget>;
8717
+ readonly module: {
8718
+ [key: string]: unknown;
8719
+ };
8720
+ readonly required_modules: Array<unknown>;
8721
+ readonly extensions: Array<unknown>;
8722
+ readonly toolchain: {
8723
+ [key: string]: unknown;
8724
+ };
8725
+ readonly toolchain_families_compatibility: Array<unknown>;
8703
8726
  };
8704
8727
  export type NestedSoftwareVersionRequest = {
8705
8728
  version: string;
@@ -12019,6 +12042,10 @@ export type OrderStatsSummary = {
12019
12042
  * Total cost of orders
12020
12043
  */
12021
12044
  total_cost: string | null;
12045
+ /**
12046
+ * Total revenue from create/update orders
12047
+ */
12048
+ total_revenue: string | null;
12022
12049
  /**
12023
12050
  * Number of pending orders
12024
12051
  */
@@ -17656,6 +17683,17 @@ export type ResourceUserRequest = {
17656
17683
  role: string;
17657
17684
  user: string;
17658
17685
  };
17686
+ export type ResourceVersion = {
17687
+ id: number;
17688
+ revision_date: string;
17689
+ readonly revision_user: {
17690
+ [key: string]: unknown;
17691
+ } | null;
17692
+ revision_comment: string;
17693
+ readonly serialized_data: {
17694
+ [key: string]: unknown;
17695
+ };
17696
+ };
17659
17697
  export type ResourcesLimits = {
17660
17698
  /**
17661
17699
  * UUID of the offering
@@ -19075,6 +19113,24 @@ export type SilenceActionResponse = {
19075
19113
  status: string;
19076
19114
  duration_days?: number | null;
19077
19115
  };
19116
+ export type SiteAgentConfigGenerationRequest = {
19117
+ /**
19118
+ * List of SLURM offering UUIDs to include in configuration
19119
+ */
19120
+ offering_uuids: Array<string>;
19121
+ /**
19122
+ * Include SLURM periodic usage policy settings in configuration
19123
+ */
19124
+ include_policy_settings?: boolean;
19125
+ /**
19126
+ * Waldur API URL (defaults to current server URL)
19127
+ */
19128
+ waldur_api_url?: string;
19129
+ /**
19130
+ * Timezone for the site agent
19131
+ */
19132
+ timezone?: string;
19133
+ };
19078
19134
  export type SlurmAllocation = {
19079
19135
  readonly url?: string;
19080
19136
  readonly uuid?: string;
@@ -19155,6 +19211,58 @@ export type SlurmAssociation = {
19155
19211
  username: string;
19156
19212
  allocation: string;
19157
19213
  };
19214
+ export type SlurmCommand = {
19215
+ /**
19216
+ * Command type: fairshare, limits, qos, reset_usage
19217
+ */
19218
+ type: string;
19219
+ /**
19220
+ * Human-readable description
19221
+ */
19222
+ description: string;
19223
+ /**
19224
+ * Actual shell command
19225
+ */
19226
+ command: string;
19227
+ /**
19228
+ * Command parameters
19229
+ */
19230
+ parameters: {
19231
+ [key: string]: unknown;
19232
+ };
19233
+ };
19234
+ export type SlurmCommandHistory = {
19235
+ readonly uuid: string;
19236
+ /**
19237
+ * Type of command: fairshare, limits, qos, reset_usage
19238
+ */
19239
+ command_type: string;
19240
+ /**
19241
+ * Human-readable description of what the command does
19242
+ */
19243
+ description: string;
19244
+ /**
19245
+ * Actual shell command that was/would be executed
19246
+ */
19247
+ shell_command: string;
19248
+ /**
19249
+ * Command parameters as key-value pairs
19250
+ */
19251
+ parameters?: unknown;
19252
+ readonly executed_at: string;
19253
+ /**
19254
+ * Whether command was executed in production or emulator mode
19255
+ */
19256
+ execution_mode?: ExecutionModeEnum;
19257
+ /**
19258
+ * Whether the command execution was successful
19259
+ */
19260
+ success?: boolean;
19261
+ /**
19262
+ * Error message if command execution failed
19263
+ */
19264
+ error_message?: string;
19265
+ };
19158
19266
  export type SlurmPeriodicUsagePolicy = {
19159
19267
  readonly uuid: string;
19160
19268
  readonly url: string;
@@ -19259,6 +19367,91 @@ export type SlurmPeriodicUsagePolicyRequest = {
19259
19367
  */
19260
19368
  qos_strategy?: QosStrategyEnum;
19261
19369
  };
19370
+ export type SlurmPolicyCarryover = {
19371
+ previous_usage: number;
19372
+ days_elapsed: number;
19373
+ half_life: number;
19374
+ decay_factor: number;
19375
+ effective_usage: number;
19376
+ base_allocation: number;
19377
+ unused_carryover: number;
19378
+ total_allocation: number;
19379
+ };
19380
+ export type SlurmPolicyDateProjection = {
19381
+ days: number | null;
19382
+ date: string | null;
19383
+ status: SlurmPolicyDateProjectionStatusEnum;
19384
+ };
19385
+ export type SlurmPolicyDateProjectionStatusEnum = 'never' | 'exceeded' | 'projected';
19386
+ export type SlurmPolicyDateProjections = {
19387
+ notification: SlurmPolicyDateProjection;
19388
+ slowdown: SlurmPolicyDateProjection;
19389
+ blocked: SlurmPolicyDateProjection;
19390
+ };
19391
+ export type SlurmPolicyPreviewRequestRequest = {
19392
+ /**
19393
+ * Base allocation for the period (in node-hours or billing units)
19394
+ */
19395
+ allocation?: number;
19396
+ /**
19397
+ * Grace ratio for overconsumption allowance (0.2 = 20%)
19398
+ */
19399
+ grace_ratio?: number;
19400
+ /**
19401
+ * Usage from the previous period
19402
+ */
19403
+ previous_usage?: number;
19404
+ /**
19405
+ * Decay half-life in days for fairshare calculations
19406
+ */
19407
+ fairshare_decay_half_life?: number;
19408
+ /**
19409
+ * Whether unused allocation carries over to next period
19410
+ */
19411
+ carryover_enabled?: boolean;
19412
+ /**
19413
+ * Days elapsed since previous period (90 for quarterly)
19414
+ */
19415
+ days_elapsed?: number;
19416
+ /**
19417
+ * Optional resource UUID to use for current usage data
19418
+ */
19419
+ resource_uuid?: string | null;
19420
+ /**
19421
+ * Current usage in this period (manual input or from resource)
19422
+ */
19423
+ current_usage?: number;
19424
+ /**
19425
+ * Average daily usage rate for projections
19426
+ */
19427
+ daily_usage_rate?: number;
19428
+ };
19429
+ export type SlurmPolicyPreviewResponse = {
19430
+ base_allocation: number;
19431
+ effective_allocation: number;
19432
+ carryover_enabled: boolean;
19433
+ carryover: SlurmPolicyCarryover | null;
19434
+ thresholds: SlurmPolicyThresholds;
19435
+ grace_ratio: number;
19436
+ half_life: number;
19437
+ current_usage?: number;
19438
+ daily_usage_rate?: number;
19439
+ usage_percentage?: number;
19440
+ current_qos_status?: CurrentQosStatusEnum;
19441
+ date_projections?: SlurmPolicyDateProjections;
19442
+ preview_commands?: Array<SlurmCommand>;
19443
+ command_history?: Array<SlurmCommandHistory>;
19444
+ billing_period_start?: string;
19445
+ billing_period_end?: string;
19446
+ };
19447
+ export type SlurmPolicyThresholds = {
19448
+ allocation: number;
19449
+ grace_ratio: number;
19450
+ notification_ratio: number;
19451
+ notification_threshold: number;
19452
+ slowdown_threshold: number;
19453
+ blocked_threshold: number;
19454
+ };
19262
19455
  export type SmaxWebHookReceiver = {
19263
19456
  id: string;
19264
19457
  };
@@ -19442,6 +19635,15 @@ export type SoftwareVersion = {
19442
19635
  readonly package_name: string;
19443
19636
  readonly catalog_type: string;
19444
19637
  readonly target_count: number;
19638
+ readonly module: {
19639
+ [key: string]: unknown;
19640
+ };
19641
+ readonly required_modules: Array<unknown>;
19642
+ readonly extensions: Array<unknown>;
19643
+ readonly toolchain: {
19644
+ [key: string]: unknown;
19645
+ };
19646
+ readonly toolchain_families_compatibility: Array<unknown>;
19445
19647
  };
19446
19648
  export type SourceTypeEnum = 'call_description' | 'all_proposals' | 'selected_proposals' | 'custom_keywords';
19447
19649
  export type SshKey = {
@@ -41182,6 +41384,217 @@ export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponses = {
41182
41384
  200: string;
41183
41385
  };
41184
41386
  export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponse = MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponses[keyof MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponses];
41387
+ export type MarketplaceProviderResourcesHistoryListData = {
41388
+ body?: never;
41389
+ path: {
41390
+ uuid: string;
41391
+ };
41392
+ query?: {
41393
+ /**
41394
+ * Backend ID
41395
+ */
41396
+ backend_id?: string;
41397
+ /**
41398
+ * Category UUID
41399
+ */
41400
+ category_uuid?: string;
41401
+ /**
41402
+ * Filter by exact number of components
41403
+ */
41404
+ component_count?: number;
41405
+ /**
41406
+ * Created after
41407
+ */
41408
+ created?: string;
41409
+ /**
41410
+ * Filter versions created after this timestamp (ISO 8601)
41411
+ */
41412
+ created_after?: string;
41413
+ /**
41414
+ * Filter versions created before this timestamp (ISO 8601)
41415
+ */
41416
+ created_before?: string;
41417
+ /**
41418
+ * Customer URL
41419
+ */
41420
+ customer?: string;
41421
+ /**
41422
+ * Customer UUID
41423
+ */
41424
+ customer_uuid?: string;
41425
+ /**
41426
+ * Downscaled
41427
+ */
41428
+ downscaled?: boolean;
41429
+ /**
41430
+ * Has termination date
41431
+ */
41432
+ has_terminate_date?: boolean;
41433
+ /**
41434
+ * Filter by attached state
41435
+ */
41436
+ is_attached?: boolean;
41437
+ /**
41438
+ * LEXIS links supported
41439
+ */
41440
+ lexis_links_supported?: boolean;
41441
+ /**
41442
+ * Filter by limit-based offerings
41443
+ */
41444
+ limit_based?: boolean;
41445
+ /**
41446
+ * Filter by exact number of limit-based components
41447
+ */
41448
+ limit_component_count?: number;
41449
+ /**
41450
+ * Modified after
41451
+ */
41452
+ modified?: string;
41453
+ /**
41454
+ * Name
41455
+ */
41456
+ name?: string;
41457
+ /**
41458
+ * Name (exact)
41459
+ */
41460
+ name_exact?: string;
41461
+ /**
41462
+ * Ordering
41463
+ *
41464
+ *
41465
+ */
41466
+ o?: Array<'-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state'>;
41467
+ offering?: string;
41468
+ /**
41469
+ * Offering billable
41470
+ */
41471
+ offering_billable?: boolean;
41472
+ /**
41473
+ * Offering shared
41474
+ */
41475
+ offering_shared?: boolean;
41476
+ /**
41477
+ * Multiple values may be separated by commas.
41478
+ */
41479
+ offering_slug?: Array<string>;
41480
+ /**
41481
+ * Offering type
41482
+ */
41483
+ offering_type?: string;
41484
+ /**
41485
+ * Multiple values may be separated by commas.
41486
+ */
41487
+ offering_uuid?: Array<string>;
41488
+ /**
41489
+ * Filter resources with only limit-based components
41490
+ */
41491
+ only_limit_based?: boolean;
41492
+ /**
41493
+ * Filter resources with only usage-based components
41494
+ */
41495
+ only_usage_based?: boolean;
41496
+ /**
41497
+ * Order state
41498
+ *
41499
+ *
41500
+ */
41501
+ order_state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
41502
+ /**
41503
+ * A page number within the paginated result set.
41504
+ */
41505
+ page?: number;
41506
+ /**
41507
+ * Number of results to return per page.
41508
+ */
41509
+ page_size?: number;
41510
+ parent_offering_uuid?: string;
41511
+ /**
41512
+ * Paused
41513
+ */
41514
+ paused?: boolean;
41515
+ /**
41516
+ * Plan UUID
41517
+ */
41518
+ plan_uuid?: string;
41519
+ /**
41520
+ * Project name
41521
+ */
41522
+ project_name?: string;
41523
+ /**
41524
+ * Project UUID
41525
+ */
41526
+ project_uuid?: string;
41527
+ /**
41528
+ * Provider UUID
41529
+ */
41530
+ provider_uuid?: string;
41531
+ /**
41532
+ * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
41533
+ */
41534
+ query?: string;
41535
+ /**
41536
+ * Restrict member access
41537
+ */
41538
+ restrict_member_access?: boolean;
41539
+ /**
41540
+ * Runtime state
41541
+ */
41542
+ runtime_state?: string;
41543
+ /**
41544
+ * Service manager UUID
41545
+ */
41546
+ service_manager_uuid?: string;
41547
+ /**
41548
+ * Resource state
41549
+ *
41550
+ *
41551
+ */
41552
+ state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
41553
+ /**
41554
+ * Filter by usage-based offerings
41555
+ */
41556
+ usage_based?: boolean;
41557
+ /**
41558
+ * Include only resources visible to service providers
41559
+ */
41560
+ visible_to_providers?: boolean;
41561
+ /**
41562
+ * Visible to username
41563
+ */
41564
+ visible_to_username?: string;
41565
+ };
41566
+ url: '/api/marketplace-provider-resources/{uuid}/history/';
41567
+ };
41568
+ export type MarketplaceProviderResourcesHistoryListResponses = {
41569
+ 200: Array<ResourceVersion>;
41570
+ };
41571
+ export type MarketplaceProviderResourcesHistoryListResponse = MarketplaceProviderResourcesHistoryListResponses[keyof MarketplaceProviderResourcesHistoryListResponses];
41572
+ export type MarketplaceProviderResourcesHistoryAtRetrieveData = {
41573
+ body?: never;
41574
+ path: {
41575
+ uuid: string;
41576
+ };
41577
+ query: {
41578
+ /**
41579
+ * ISO 8601 timestamp to query the resource state at
41580
+ */
41581
+ timestamp: string;
41582
+ };
41583
+ url: '/api/marketplace-provider-resources/{uuid}/history/at/';
41584
+ };
41585
+ export type MarketplaceProviderResourcesHistoryAtRetrieveErrors = {
41586
+ 400: {
41587
+ [key: string]: unknown;
41588
+ };
41589
+ 404: {
41590
+ [key: string]: unknown;
41591
+ };
41592
+ };
41593
+ export type MarketplaceProviderResourcesHistoryAtRetrieveError = MarketplaceProviderResourcesHistoryAtRetrieveErrors[keyof MarketplaceProviderResourcesHistoryAtRetrieveErrors];
41594
+ export type MarketplaceProviderResourcesHistoryAtRetrieveResponses = {
41595
+ 200: ResourceVersion;
41596
+ };
41597
+ export type MarketplaceProviderResourcesHistoryAtRetrieveResponse = MarketplaceProviderResourcesHistoryAtRetrieveResponses[keyof MarketplaceProviderResourcesHistoryAtRetrieveResponses];
41185
41598
  export type MarketplaceProviderResourcesMoveResourceData = {
41186
41599
  body: MoveResourceRequest;
41187
41600
  path: {
@@ -42603,6 +43016,217 @@ export type MarketplaceResourcesGlauthUsersConfigRetrieveResponses = {
42603
43016
  200: string;
42604
43017
  };
42605
43018
  export type MarketplaceResourcesGlauthUsersConfigRetrieveResponse = MarketplaceResourcesGlauthUsersConfigRetrieveResponses[keyof MarketplaceResourcesGlauthUsersConfigRetrieveResponses];
43019
+ export type MarketplaceResourcesHistoryListData = {
43020
+ body?: never;
43021
+ path: {
43022
+ uuid: string;
43023
+ };
43024
+ query?: {
43025
+ /**
43026
+ * Backend ID
43027
+ */
43028
+ backend_id?: string;
43029
+ /**
43030
+ * Category UUID
43031
+ */
43032
+ category_uuid?: string;
43033
+ /**
43034
+ * Filter by exact number of components
43035
+ */
43036
+ component_count?: number;
43037
+ /**
43038
+ * Created after
43039
+ */
43040
+ created?: string;
43041
+ /**
43042
+ * Filter versions created after this timestamp (ISO 8601)
43043
+ */
43044
+ created_after?: string;
43045
+ /**
43046
+ * Filter versions created before this timestamp (ISO 8601)
43047
+ */
43048
+ created_before?: string;
43049
+ /**
43050
+ * Customer URL
43051
+ */
43052
+ customer?: string;
43053
+ /**
43054
+ * Customer UUID
43055
+ */
43056
+ customer_uuid?: string;
43057
+ /**
43058
+ * Downscaled
43059
+ */
43060
+ downscaled?: boolean;
43061
+ /**
43062
+ * Has termination date
43063
+ */
43064
+ has_terminate_date?: boolean;
43065
+ /**
43066
+ * Filter by attached state
43067
+ */
43068
+ is_attached?: boolean;
43069
+ /**
43070
+ * LEXIS links supported
43071
+ */
43072
+ lexis_links_supported?: boolean;
43073
+ /**
43074
+ * Filter by limit-based offerings
43075
+ */
43076
+ limit_based?: boolean;
43077
+ /**
43078
+ * Filter by exact number of limit-based components
43079
+ */
43080
+ limit_component_count?: number;
43081
+ /**
43082
+ * Modified after
43083
+ */
43084
+ modified?: string;
43085
+ /**
43086
+ * Name
43087
+ */
43088
+ name?: string;
43089
+ /**
43090
+ * Name (exact)
43091
+ */
43092
+ name_exact?: string;
43093
+ /**
43094
+ * Ordering
43095
+ *
43096
+ *
43097
+ */
43098
+ o?: Array<'-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state'>;
43099
+ offering?: string;
43100
+ /**
43101
+ * Offering billable
43102
+ */
43103
+ offering_billable?: boolean;
43104
+ /**
43105
+ * Offering shared
43106
+ */
43107
+ offering_shared?: boolean;
43108
+ /**
43109
+ * Multiple values may be separated by commas.
43110
+ */
43111
+ offering_slug?: Array<string>;
43112
+ /**
43113
+ * Offering type
43114
+ */
43115
+ offering_type?: string;
43116
+ /**
43117
+ * Multiple values may be separated by commas.
43118
+ */
43119
+ offering_uuid?: Array<string>;
43120
+ /**
43121
+ * Filter resources with only limit-based components
43122
+ */
43123
+ only_limit_based?: boolean;
43124
+ /**
43125
+ * Filter resources with only usage-based components
43126
+ */
43127
+ only_usage_based?: boolean;
43128
+ /**
43129
+ * Order state
43130
+ *
43131
+ *
43132
+ */
43133
+ order_state?: Array<'canceled' | 'done' | 'erred' | 'executing' | 'pending-consumer' | 'pending-project' | 'pending-provider' | 'pending-start-date' | 'rejected'>;
43134
+ /**
43135
+ * A page number within the paginated result set.
43136
+ */
43137
+ page?: number;
43138
+ /**
43139
+ * Number of results to return per page.
43140
+ */
43141
+ page_size?: number;
43142
+ parent_offering_uuid?: string;
43143
+ /**
43144
+ * Paused
43145
+ */
43146
+ paused?: boolean;
43147
+ /**
43148
+ * Plan UUID
43149
+ */
43150
+ plan_uuid?: string;
43151
+ /**
43152
+ * Project name
43153
+ */
43154
+ project_name?: string;
43155
+ /**
43156
+ * Project UUID
43157
+ */
43158
+ project_uuid?: string;
43159
+ /**
43160
+ * Provider UUID
43161
+ */
43162
+ provider_uuid?: string;
43163
+ /**
43164
+ * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
43165
+ */
43166
+ query?: string;
43167
+ /**
43168
+ * Restrict member access
43169
+ */
43170
+ restrict_member_access?: boolean;
43171
+ /**
43172
+ * Runtime state
43173
+ */
43174
+ runtime_state?: string;
43175
+ /**
43176
+ * Service manager UUID
43177
+ */
43178
+ service_manager_uuid?: string;
43179
+ /**
43180
+ * Resource state
43181
+ *
43182
+ *
43183
+ */
43184
+ state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
43185
+ /**
43186
+ * Filter by usage-based offerings
43187
+ */
43188
+ usage_based?: boolean;
43189
+ /**
43190
+ * Include only resources visible to service providers
43191
+ */
43192
+ visible_to_providers?: boolean;
43193
+ /**
43194
+ * Visible to username
43195
+ */
43196
+ visible_to_username?: string;
43197
+ };
43198
+ url: '/api/marketplace-resources/{uuid}/history/';
43199
+ };
43200
+ export type MarketplaceResourcesHistoryListResponses = {
43201
+ 200: Array<ResourceVersion>;
43202
+ };
43203
+ export type MarketplaceResourcesHistoryListResponse = MarketplaceResourcesHistoryListResponses[keyof MarketplaceResourcesHistoryListResponses];
43204
+ export type MarketplaceResourcesHistoryAtRetrieveData = {
43205
+ body?: never;
43206
+ path: {
43207
+ uuid: string;
43208
+ };
43209
+ query: {
43210
+ /**
43211
+ * ISO 8601 timestamp to query the resource state at
43212
+ */
43213
+ timestamp: string;
43214
+ };
43215
+ url: '/api/marketplace-resources/{uuid}/history/at/';
43216
+ };
43217
+ export type MarketplaceResourcesHistoryAtRetrieveErrors = {
43218
+ 400: {
43219
+ [key: string]: unknown;
43220
+ };
43221
+ 404: {
43222
+ [key: string]: unknown;
43223
+ };
43224
+ };
43225
+ export type MarketplaceResourcesHistoryAtRetrieveError = MarketplaceResourcesHistoryAtRetrieveErrors[keyof MarketplaceResourcesHistoryAtRetrieveErrors];
43226
+ export type MarketplaceResourcesHistoryAtRetrieveResponses = {
43227
+ 200: ResourceVersion;
43228
+ };
43229
+ export type MarketplaceResourcesHistoryAtRetrieveResponse = MarketplaceResourcesHistoryAtRetrieveResponses[keyof MarketplaceResourcesHistoryAtRetrieveResponses];
42606
43230
  export type MarketplaceResourcesMoveResourceData = {
42607
43231
  body: MoveResourceRequest;
42608
43232
  path: {
@@ -44559,6 +45183,18 @@ export type MarketplaceServiceProvidersDeleteUserResponses = {
44559
45183
  */
44560
45184
  200: unknown;
44561
45185
  };
45186
+ export type MarketplaceServiceProvidersGenerateSiteAgentConfigData = {
45187
+ body: SiteAgentConfigGenerationRequest;
45188
+ path: {
45189
+ uuid: string;
45190
+ };
45191
+ query?: never;
45192
+ url: '/api/marketplace-service-providers/{uuid}/generate_site_agent_config/';
45193
+ };
45194
+ export type MarketplaceServiceProvidersGenerateSiteAgentConfigResponses = {
45195
+ 200: Blob | File;
45196
+ };
45197
+ export type MarketplaceServiceProvidersGenerateSiteAgentConfigResponse = MarketplaceServiceProvidersGenerateSiteAgentConfigResponses[keyof MarketplaceServiceProvidersGenerateSiteAgentConfigResponses];
44562
45198
  export type MarketplaceServiceProvidersListUsersListData = {
44563
45199
  body?: never;
44564
45200
  path: {
@@ -45268,6 +45904,16 @@ export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountResponses = {
45268
45904
  */
45269
45905
  200: unknown;
45270
45906
  };
45907
+ export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactData = {
45908
+ body?: SlurmPolicyPreviewRequestRequest;
45909
+ path?: never;
45910
+ query?: never;
45911
+ url: '/api/marketplace-slurm-periodic-usage-policies/preview_impact/';
45912
+ };
45913
+ export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses = {
45914
+ 200: SlurmPolicyPreviewResponse;
45915
+ };
45916
+ export type MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponse = MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesPreviewImpactResponses];
45271
45917
  export type MarketplaceSoftwareCatalogsListData = {
45272
45918
  body?: never;
45273
45919
  path?: never;
@@ -45413,6 +46059,14 @@ export type MarketplaceSoftwarePackagesListData = {
45413
46059
  * Filter packages by description (case-insensitive partial match)
45414
46060
  */
45415
46061
  description?: string;
46062
+ /**
46063
+ * Filter packages having extensions with a specific name
46064
+ */
46065
+ extension_name?: string;
46066
+ /**
46067
+ * Filter packages having extensions of a specific type (e.g., 'python')
46068
+ */
46069
+ extension_type?: string;
45416
46070
  /**
45417
46071
  * Filter packages that have a specific version
45418
46072
  */
@@ -45478,6 +46132,14 @@ export type MarketplaceSoftwarePackagesCountData = {
45478
46132
  * Filter packages by description (case-insensitive partial match)
45479
46133
  */
45480
46134
  description?: string;
46135
+ /**
46136
+ * Filter packages having extensions with a specific name
46137
+ */
46138
+ extension_name?: string;
46139
+ /**
46140
+ * Filter packages having extensions of a specific type (e.g., 'python')
46141
+ */
46142
+ extension_type?: string;
45481
46143
  /**
45482
46144
  * Filter packages that have a specific version
45483
46145
  */