waldur-js-client 7.8.8-dev.0 → 7.8.8-dev.2
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/sdk.gen.d.ts +19 -1
- package/dist/sdk.gen.js +165 -0
- package/dist/types.gen.d.ts +387 -7
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2251,6 +2251,10 @@ export type Customer = {
|
|
|
2251
2251
|
*/
|
|
2252
2252
|
readonly max_service_accounts?: number | null;
|
|
2253
2253
|
readonly project_metadata_checklist?: string | null;
|
|
2254
|
+
/**
|
|
2255
|
+
* Number of extra days after project end date before resources are terminated
|
|
2256
|
+
*/
|
|
2257
|
+
readonly grace_period_days?: number | null;
|
|
2254
2258
|
name?: string;
|
|
2255
2259
|
slug?: string;
|
|
2256
2260
|
native_name?: string;
|
|
@@ -3711,6 +3715,7 @@ export type LexisLinkRequest = {
|
|
|
3711
3715
|
heappe_project_id?: number | null;
|
|
3712
3716
|
};
|
|
3713
3717
|
export type LimitPeriodEnum = 'month' | 'quarterly' | 'annual' | 'total';
|
|
3718
|
+
export type LimitTypeEnum = 'GrpTRESMins' | 'MaxTRESMins' | 'GrpTRES';
|
|
3714
3719
|
export type LinkOpenstackRequest = {
|
|
3715
3720
|
instance: string;
|
|
3716
3721
|
};
|
|
@@ -9166,6 +9171,10 @@ export type PatchedProjectRequest = {
|
|
|
9166
9171
|
*/
|
|
9167
9172
|
kind?: KindEnum;
|
|
9168
9173
|
staff_notes?: string;
|
|
9174
|
+
/**
|
|
9175
|
+
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
9176
|
+
*/
|
|
9177
|
+
grace_period_days?: number | null;
|
|
9169
9178
|
};
|
|
9170
9179
|
export type PatchedProjectServiceAccountRequest = {
|
|
9171
9180
|
username?: string;
|
|
@@ -9289,6 +9298,22 @@ export type PatchedQuestionAdminRequest = {
|
|
|
9289
9298
|
* Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
|
|
9290
9299
|
*/
|
|
9291
9300
|
dependency_logic_operator?: DependencyLogicOperatorEnum;
|
|
9301
|
+
/**
|
|
9302
|
+
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
9303
|
+
*/
|
|
9304
|
+
allowed_file_types?: unknown;
|
|
9305
|
+
/**
|
|
9306
|
+
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
9307
|
+
*/
|
|
9308
|
+
allowed_mime_types?: unknown;
|
|
9309
|
+
/**
|
|
9310
|
+
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
9311
|
+
*/
|
|
9312
|
+
max_file_size_mb?: number | null;
|
|
9313
|
+
/**
|
|
9314
|
+
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
9315
|
+
*/
|
|
9316
|
+
max_files_count?: number | null;
|
|
9292
9317
|
};
|
|
9293
9318
|
export type PatchedQuestionDependencyRequest = {
|
|
9294
9319
|
question?: string;
|
|
@@ -9526,6 +9551,49 @@ export type PatchedSlurmAllocationRequest = {
|
|
|
9526
9551
|
name?: string;
|
|
9527
9552
|
description?: string;
|
|
9528
9553
|
};
|
|
9554
|
+
export type PatchedSlurmPeriodicUsagePolicyRequest = {
|
|
9555
|
+
scope?: string;
|
|
9556
|
+
actions?: string;
|
|
9557
|
+
/**
|
|
9558
|
+
* Fields for saving actions extra data. Keys are name of actions.
|
|
9559
|
+
*/
|
|
9560
|
+
options?: unknown;
|
|
9561
|
+
organization_groups?: Array<string>;
|
|
9562
|
+
component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
|
|
9563
|
+
period?: PeriodEnum;
|
|
9564
|
+
/**
|
|
9565
|
+
* SLURM limit type to apply
|
|
9566
|
+
*/
|
|
9567
|
+
limit_type?: LimitTypeEnum;
|
|
9568
|
+
/**
|
|
9569
|
+
* Use TRES billing units instead of raw TRES values
|
|
9570
|
+
*/
|
|
9571
|
+
tres_billing_enabled?: boolean;
|
|
9572
|
+
/**
|
|
9573
|
+
* TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
|
|
9574
|
+
*/
|
|
9575
|
+
tres_billing_weights?: unknown;
|
|
9576
|
+
/**
|
|
9577
|
+
* Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
|
|
9578
|
+
*/
|
|
9579
|
+
fairshare_decay_half_life?: number;
|
|
9580
|
+
/**
|
|
9581
|
+
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
9582
|
+
*/
|
|
9583
|
+
grace_ratio?: number;
|
|
9584
|
+
/**
|
|
9585
|
+
* Enable unused allocation carryover to next period
|
|
9586
|
+
*/
|
|
9587
|
+
carryover_enabled?: boolean;
|
|
9588
|
+
/**
|
|
9589
|
+
* Reset raw usage at period transitions (PriorityUsageResetPeriod=None)
|
|
9590
|
+
*/
|
|
9591
|
+
raw_usage_reset?: boolean;
|
|
9592
|
+
/**
|
|
9593
|
+
* QoS management strategy
|
|
9594
|
+
*/
|
|
9595
|
+
qos_strategy?: QosStrategyEnum;
|
|
9596
|
+
};
|
|
9529
9597
|
export type PatchedSoftwareCatalogRequest = {
|
|
9530
9598
|
/**
|
|
9531
9599
|
* Catalog name (e.g., EESSI)
|
|
@@ -9870,6 +9938,10 @@ export type Project = {
|
|
|
9870
9938
|
readonly is_removed?: boolean;
|
|
9871
9939
|
readonly termination_metadata?: unknown;
|
|
9872
9940
|
staff_notes?: string;
|
|
9941
|
+
/**
|
|
9942
|
+
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
9943
|
+
*/
|
|
9944
|
+
grace_period_days?: number | null;
|
|
9873
9945
|
readonly project_credit?: number | null;
|
|
9874
9946
|
readonly marketplace_resource_count?: {
|
|
9875
9947
|
[key: string]: number;
|
|
@@ -10076,6 +10148,10 @@ export type ProjectRequest = {
|
|
|
10076
10148
|
*/
|
|
10077
10149
|
kind?: KindEnum;
|
|
10078
10150
|
staff_notes?: string;
|
|
10151
|
+
/**
|
|
10152
|
+
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
10153
|
+
*/
|
|
10154
|
+
grace_period_days?: number | null;
|
|
10079
10155
|
};
|
|
10080
10156
|
export type ProjectServiceAccount = {
|
|
10081
10157
|
readonly url: string;
|
|
@@ -10816,6 +10892,7 @@ export type PublicOfferingDetails = {
|
|
|
10816
10892
|
export type PullMarketplaceScriptResourceRequest = {
|
|
10817
10893
|
resource_uuid: string;
|
|
10818
10894
|
};
|
|
10895
|
+
export type QosStrategyEnum = 'threshold' | 'progressive';
|
|
10819
10896
|
export type QueryRequest = {
|
|
10820
10897
|
query: string;
|
|
10821
10898
|
};
|
|
@@ -10880,6 +10957,22 @@ export type QuestionAdmin = {
|
|
|
10880
10957
|
* Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
|
|
10881
10958
|
*/
|
|
10882
10959
|
dependency_logic_operator?: DependencyLogicOperatorEnum;
|
|
10960
|
+
/**
|
|
10961
|
+
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
10962
|
+
*/
|
|
10963
|
+
allowed_file_types?: unknown;
|
|
10964
|
+
/**
|
|
10965
|
+
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
10966
|
+
*/
|
|
10967
|
+
allowed_mime_types?: unknown;
|
|
10968
|
+
/**
|
|
10969
|
+
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
10970
|
+
*/
|
|
10971
|
+
max_file_size_mb?: number | null;
|
|
10972
|
+
/**
|
|
10973
|
+
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
10974
|
+
*/
|
|
10975
|
+
max_files_count?: number | null;
|
|
10883
10976
|
};
|
|
10884
10977
|
export type QuestionAdminRequest = {
|
|
10885
10978
|
required?: boolean;
|
|
@@ -10927,6 +11020,22 @@ export type QuestionAdminRequest = {
|
|
|
10927
11020
|
* Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
|
|
10928
11021
|
*/
|
|
10929
11022
|
dependency_logic_operator?: DependencyLogicOperatorEnum;
|
|
11023
|
+
/**
|
|
11024
|
+
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
11025
|
+
*/
|
|
11026
|
+
allowed_file_types?: unknown;
|
|
11027
|
+
/**
|
|
11028
|
+
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
11029
|
+
*/
|
|
11030
|
+
allowed_mime_types?: unknown;
|
|
11031
|
+
/**
|
|
11032
|
+
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
11033
|
+
*/
|
|
11034
|
+
max_file_size_mb?: number | null;
|
|
11035
|
+
/**
|
|
11036
|
+
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
11037
|
+
*/
|
|
11038
|
+
max_files_count?: number | null;
|
|
10930
11039
|
};
|
|
10931
11040
|
export type QuestionAnswer = {
|
|
10932
11041
|
readonly question_uuid: string;
|
|
@@ -10997,7 +11106,7 @@ export type QuestionOptionsAdminRequest = {
|
|
|
10997
11106
|
order?: number;
|
|
10998
11107
|
question: string;
|
|
10999
11108
|
};
|
|
11000
|
-
export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file';
|
|
11109
|
+
export type QuestionTypeEnum = 'boolean' | 'single_select' | 'multi_select' | 'text_input' | 'text_area' | 'number' | 'date' | 'file' | 'multiple_files';
|
|
11001
11110
|
export type QuestionWithAnswer = {
|
|
11002
11111
|
readonly uuid: string;
|
|
11003
11112
|
readonly description: string;
|
|
@@ -11020,6 +11129,22 @@ export type QuestionWithAnswer = {
|
|
|
11020
11129
|
* Maximum value allowed for NUMBER type questions
|
|
11021
11130
|
*/
|
|
11022
11131
|
readonly max_value: string | null;
|
|
11132
|
+
/**
|
|
11133
|
+
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
11134
|
+
*/
|
|
11135
|
+
readonly allowed_file_types: unknown;
|
|
11136
|
+
/**
|
|
11137
|
+
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
11138
|
+
*/
|
|
11139
|
+
readonly allowed_mime_types: unknown;
|
|
11140
|
+
/**
|
|
11141
|
+
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
11142
|
+
*/
|
|
11143
|
+
readonly max_file_size_mb: number | null;
|
|
11144
|
+
/**
|
|
11145
|
+
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
11146
|
+
*/
|
|
11147
|
+
readonly max_files_count: number | null;
|
|
11023
11148
|
};
|
|
11024
11149
|
export type QuestionWithAnswerReviewer = {
|
|
11025
11150
|
readonly uuid: string;
|
|
@@ -11043,6 +11168,22 @@ export type QuestionWithAnswerReviewer = {
|
|
|
11043
11168
|
* Maximum value allowed for NUMBER type questions
|
|
11044
11169
|
*/
|
|
11045
11170
|
readonly max_value: string | null;
|
|
11171
|
+
/**
|
|
11172
|
+
* List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
|
|
11173
|
+
*/
|
|
11174
|
+
readonly allowed_file_types: unknown;
|
|
11175
|
+
/**
|
|
11176
|
+
* List of allowed MIME types (e.g., ['application/pdf', 'application/msword']). If empty, MIME type validation is not enforced. When both extensions and MIME types are specified, files must match both criteria for security.
|
|
11177
|
+
*/
|
|
11178
|
+
readonly allowed_mime_types: unknown;
|
|
11179
|
+
/**
|
|
11180
|
+
* Maximum file size in megabytes. If not set, no size limit is enforced.
|
|
11181
|
+
*/
|
|
11182
|
+
readonly max_file_size_mb: number | null;
|
|
11183
|
+
/**
|
|
11184
|
+
* Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
|
|
11185
|
+
*/
|
|
11186
|
+
readonly max_files_count: number | null;
|
|
11046
11187
|
operator?: ChecklistOperators | BlankEnum;
|
|
11047
11188
|
/**
|
|
11048
11189
|
* Answer value that trigger review.
|
|
@@ -13023,6 +13164,102 @@ export type SlurmAssociation = {
|
|
|
13023
13164
|
username: string;
|
|
13024
13165
|
allocation: string;
|
|
13025
13166
|
};
|
|
13167
|
+
export type SlurmPeriodicUsagePolicy = {
|
|
13168
|
+
readonly uuid: string;
|
|
13169
|
+
readonly url: string;
|
|
13170
|
+
scope: string;
|
|
13171
|
+
readonly scope_name: string;
|
|
13172
|
+
readonly scope_uuid: string;
|
|
13173
|
+
actions: string;
|
|
13174
|
+
readonly created: string;
|
|
13175
|
+
readonly created_by_full_name: string;
|
|
13176
|
+
readonly created_by_username: string;
|
|
13177
|
+
readonly has_fired: boolean;
|
|
13178
|
+
readonly fired_datetime: string;
|
|
13179
|
+
/**
|
|
13180
|
+
* Fields for saving actions extra data. Keys are name of actions.
|
|
13181
|
+
*/
|
|
13182
|
+
options?: unknown;
|
|
13183
|
+
organization_groups: Array<string>;
|
|
13184
|
+
component_limits_set: Array<NestedOfferingComponentLimit>;
|
|
13185
|
+
period?: PeriodEnum;
|
|
13186
|
+
readonly period_name: string;
|
|
13187
|
+
/**
|
|
13188
|
+
* SLURM limit type to apply
|
|
13189
|
+
*/
|
|
13190
|
+
limit_type?: LimitTypeEnum;
|
|
13191
|
+
/**
|
|
13192
|
+
* Use TRES billing units instead of raw TRES values
|
|
13193
|
+
*/
|
|
13194
|
+
tres_billing_enabled?: boolean;
|
|
13195
|
+
/**
|
|
13196
|
+
* TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
|
|
13197
|
+
*/
|
|
13198
|
+
tres_billing_weights?: unknown;
|
|
13199
|
+
/**
|
|
13200
|
+
* Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
|
|
13201
|
+
*/
|
|
13202
|
+
fairshare_decay_half_life?: number;
|
|
13203
|
+
/**
|
|
13204
|
+
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
13205
|
+
*/
|
|
13206
|
+
grace_ratio?: number;
|
|
13207
|
+
/**
|
|
13208
|
+
* Enable unused allocation carryover to next period
|
|
13209
|
+
*/
|
|
13210
|
+
carryover_enabled?: boolean;
|
|
13211
|
+
/**
|
|
13212
|
+
* Reset raw usage at period transitions (PriorityUsageResetPeriod=None)
|
|
13213
|
+
*/
|
|
13214
|
+
raw_usage_reset?: boolean;
|
|
13215
|
+
/**
|
|
13216
|
+
* QoS management strategy
|
|
13217
|
+
*/
|
|
13218
|
+
qos_strategy?: QosStrategyEnum;
|
|
13219
|
+
};
|
|
13220
|
+
export type SlurmPeriodicUsagePolicyRequest = {
|
|
13221
|
+
scope: string;
|
|
13222
|
+
actions: string;
|
|
13223
|
+
/**
|
|
13224
|
+
* Fields for saving actions extra data. Keys are name of actions.
|
|
13225
|
+
*/
|
|
13226
|
+
options?: unknown;
|
|
13227
|
+
organization_groups: Array<string>;
|
|
13228
|
+
component_limits_set: Array<NestedOfferingComponentLimitRequest>;
|
|
13229
|
+
period?: PeriodEnum;
|
|
13230
|
+
/**
|
|
13231
|
+
* SLURM limit type to apply
|
|
13232
|
+
*/
|
|
13233
|
+
limit_type?: LimitTypeEnum;
|
|
13234
|
+
/**
|
|
13235
|
+
* Use TRES billing units instead of raw TRES values
|
|
13236
|
+
*/
|
|
13237
|
+
tres_billing_enabled?: boolean;
|
|
13238
|
+
/**
|
|
13239
|
+
* TRES billing weights (e.g., {"CPU": 0.015625, "Mem": 0.001953125, "GRES/gpu": 0.25})
|
|
13240
|
+
*/
|
|
13241
|
+
tres_billing_weights?: unknown;
|
|
13242
|
+
/**
|
|
13243
|
+
* Fairshare decay half-life in days (matches SLURM PriorityDecayHalfLife)
|
|
13244
|
+
*/
|
|
13245
|
+
fairshare_decay_half_life?: number;
|
|
13246
|
+
/**
|
|
13247
|
+
* Grace period ratio (0.2 = 20% overconsumption allowed)
|
|
13248
|
+
*/
|
|
13249
|
+
grace_ratio?: number;
|
|
13250
|
+
/**
|
|
13251
|
+
* Enable unused allocation carryover to next period
|
|
13252
|
+
*/
|
|
13253
|
+
carryover_enabled?: boolean;
|
|
13254
|
+
/**
|
|
13255
|
+
* Reset raw usage at period transitions (PriorityUsageResetPeriod=None)
|
|
13256
|
+
*/
|
|
13257
|
+
raw_usage_reset?: boolean;
|
|
13258
|
+
/**
|
|
13259
|
+
* QoS management strategy
|
|
13260
|
+
*/
|
|
13261
|
+
qos_strategy?: QosStrategyEnum;
|
|
13262
|
+
};
|
|
13026
13263
|
export type SmaxWebHookReceiver = {
|
|
13027
13264
|
id: string;
|
|
13028
13265
|
};
|
|
@@ -14888,6 +15125,10 @@ export type ProjectRequestForm = {
|
|
|
14888
15125
|
*/
|
|
14889
15126
|
kind?: KindEnum;
|
|
14890
15127
|
staff_notes?: string;
|
|
15128
|
+
/**
|
|
15129
|
+
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
15130
|
+
*/
|
|
15131
|
+
grace_period_days?: number | null;
|
|
14891
15132
|
};
|
|
14892
15133
|
export type ProjectRequestMultipart = {
|
|
14893
15134
|
name: string;
|
|
@@ -14912,6 +15153,10 @@ export type ProjectRequestMultipart = {
|
|
|
14912
15153
|
*/
|
|
14913
15154
|
kind?: KindEnum;
|
|
14914
15155
|
staff_notes?: string;
|
|
15156
|
+
/**
|
|
15157
|
+
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
15158
|
+
*/
|
|
15159
|
+
grace_period_days?: number | null;
|
|
14915
15160
|
};
|
|
14916
15161
|
export type PatchedProjectRequestForm = {
|
|
14917
15162
|
name?: string;
|
|
@@ -14936,6 +15181,10 @@ export type PatchedProjectRequestForm = {
|
|
|
14936
15181
|
*/
|
|
14937
15182
|
kind?: KindEnum;
|
|
14938
15183
|
staff_notes?: string;
|
|
15184
|
+
/**
|
|
15185
|
+
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
15186
|
+
*/
|
|
15187
|
+
grace_period_days?: number | null;
|
|
14939
15188
|
};
|
|
14940
15189
|
export type PatchedProjectRequestMultipart = {
|
|
14941
15190
|
name?: string;
|
|
@@ -14960,6 +15209,10 @@ export type PatchedProjectRequestMultipart = {
|
|
|
14960
15209
|
*/
|
|
14961
15210
|
kind?: KindEnum;
|
|
14962
15211
|
staff_notes?: string;
|
|
15212
|
+
/**
|
|
15213
|
+
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
15214
|
+
*/
|
|
15215
|
+
grace_period_days?: number | null;
|
|
14963
15216
|
};
|
|
14964
15217
|
export type ProposalDocumentationRequestForm = {
|
|
14965
15218
|
/**
|
|
@@ -19778,7 +20031,7 @@ export type CustomersListData = {
|
|
|
19778
20031
|
archived?: boolean;
|
|
19779
20032
|
backend_id?: string;
|
|
19780
20033
|
contact_details?: string;
|
|
19781
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
20034
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
19782
20035
|
name?: string;
|
|
19783
20036
|
name_exact?: string;
|
|
19784
20037
|
native_name?: string;
|
|
@@ -20056,7 +20309,7 @@ export type CustomersRetrieveData = {
|
|
|
20056
20309
|
uuid: string;
|
|
20057
20310
|
};
|
|
20058
20311
|
query?: {
|
|
20059
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
20312
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
20060
20313
|
};
|
|
20061
20314
|
url: '/api/customers/{uuid}/';
|
|
20062
20315
|
};
|
|
@@ -28525,7 +28778,7 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
|
28525
28778
|
uuid: string;
|
|
28526
28779
|
};
|
|
28527
28780
|
query?: {
|
|
28528
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
28781
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
28529
28782
|
/**
|
|
28530
28783
|
* A page number within the paginated result set.
|
|
28531
28784
|
*/
|
|
@@ -32006,7 +32259,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
32006
32259
|
customer_name?: string;
|
|
32007
32260
|
customer_native_name?: string;
|
|
32008
32261
|
description?: string;
|
|
32009
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
32262
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
32010
32263
|
is_removed?: boolean;
|
|
32011
32264
|
/**
|
|
32012
32265
|
* Modified after
|
|
@@ -32720,6 +32973,133 @@ export type MarketplaceSiteAgentServicesSetStatisticsResponses = {
|
|
|
32720
32973
|
200: AgentService;
|
|
32721
32974
|
};
|
|
32722
32975
|
export type MarketplaceSiteAgentServicesSetStatisticsResponse = MarketplaceSiteAgentServicesSetStatisticsResponses[keyof MarketplaceSiteAgentServicesSetStatisticsResponses];
|
|
32976
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesListData = {
|
|
32977
|
+
body?: never;
|
|
32978
|
+
path?: never;
|
|
32979
|
+
query?: {
|
|
32980
|
+
/**
|
|
32981
|
+
* A page number within the paginated result set.
|
|
32982
|
+
*/
|
|
32983
|
+
page?: number;
|
|
32984
|
+
/**
|
|
32985
|
+
* Number of results to return per page.
|
|
32986
|
+
*/
|
|
32987
|
+
page_size?: number;
|
|
32988
|
+
scope?: string;
|
|
32989
|
+
scope_uuid?: string;
|
|
32990
|
+
};
|
|
32991
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/';
|
|
32992
|
+
};
|
|
32993
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesListResponses = {
|
|
32994
|
+
200: Array<SlurmPeriodicUsagePolicy>;
|
|
32995
|
+
};
|
|
32996
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesListResponse = MarketplaceSlurmPeriodicUsagePoliciesListResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesListResponses];
|
|
32997
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCountData = {
|
|
32998
|
+
body?: never;
|
|
32999
|
+
path?: never;
|
|
33000
|
+
query?: {
|
|
33001
|
+
/**
|
|
33002
|
+
* A page number within the paginated result set.
|
|
33003
|
+
*/
|
|
33004
|
+
page?: number;
|
|
33005
|
+
/**
|
|
33006
|
+
* Number of results to return per page.
|
|
33007
|
+
*/
|
|
33008
|
+
page_size?: number;
|
|
33009
|
+
scope?: string;
|
|
33010
|
+
scope_uuid?: string;
|
|
33011
|
+
};
|
|
33012
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/';
|
|
33013
|
+
};
|
|
33014
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCountResponses = {
|
|
33015
|
+
/**
|
|
33016
|
+
* No response body
|
|
33017
|
+
*/
|
|
33018
|
+
200: unknown;
|
|
33019
|
+
};
|
|
33020
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCreateData = {
|
|
33021
|
+
body: SlurmPeriodicUsagePolicyRequest;
|
|
33022
|
+
path?: never;
|
|
33023
|
+
query?: never;
|
|
33024
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/';
|
|
33025
|
+
};
|
|
33026
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCreateResponses = {
|
|
33027
|
+
201: SlurmPeriodicUsagePolicy;
|
|
33028
|
+
};
|
|
33029
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesCreateResponse = MarketplaceSlurmPeriodicUsagePoliciesCreateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesCreateResponses];
|
|
33030
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDestroyData = {
|
|
33031
|
+
body?: never;
|
|
33032
|
+
path: {
|
|
33033
|
+
uuid: string;
|
|
33034
|
+
};
|
|
33035
|
+
query?: never;
|
|
33036
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
|
|
33037
|
+
};
|
|
33038
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDestroyResponses = {
|
|
33039
|
+
/**
|
|
33040
|
+
* No response body
|
|
33041
|
+
*/
|
|
33042
|
+
204: void;
|
|
33043
|
+
};
|
|
33044
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesDestroyResponse = MarketplaceSlurmPeriodicUsagePoliciesDestroyResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesDestroyResponses];
|
|
33045
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesRetrieveData = {
|
|
33046
|
+
body?: never;
|
|
33047
|
+
path: {
|
|
33048
|
+
uuid: string;
|
|
33049
|
+
};
|
|
33050
|
+
query?: never;
|
|
33051
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
|
|
33052
|
+
};
|
|
33053
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponses = {
|
|
33054
|
+
200: SlurmPeriodicUsagePolicy;
|
|
33055
|
+
};
|
|
33056
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponse = MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesRetrieveResponses];
|
|
33057
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateData = {
|
|
33058
|
+
body?: PatchedSlurmPeriodicUsagePolicyRequest;
|
|
33059
|
+
path: {
|
|
33060
|
+
uuid: string;
|
|
33061
|
+
};
|
|
33062
|
+
query?: never;
|
|
33063
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
|
|
33064
|
+
};
|
|
33065
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponses = {
|
|
33066
|
+
200: SlurmPeriodicUsagePolicy;
|
|
33067
|
+
};
|
|
33068
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponse = MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesPartialUpdateResponses];
|
|
33069
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesUpdateData = {
|
|
33070
|
+
body: SlurmPeriodicUsagePolicyRequest;
|
|
33071
|
+
path: {
|
|
33072
|
+
uuid: string;
|
|
33073
|
+
};
|
|
33074
|
+
query?: never;
|
|
33075
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/{uuid}/';
|
|
33076
|
+
};
|
|
33077
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses = {
|
|
33078
|
+
200: SlurmPeriodicUsagePolicy;
|
|
33079
|
+
};
|
|
33080
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesUpdateResponse = MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesUpdateResponses];
|
|
33081
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveData = {
|
|
33082
|
+
body?: never;
|
|
33083
|
+
path?: never;
|
|
33084
|
+
query?: never;
|
|
33085
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/actions/';
|
|
33086
|
+
};
|
|
33087
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses = {
|
|
33088
|
+
200: SlurmPeriodicUsagePolicy;
|
|
33089
|
+
};
|
|
33090
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponse = MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses];
|
|
33091
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountData = {
|
|
33092
|
+
body?: never;
|
|
33093
|
+
path?: never;
|
|
33094
|
+
query?: never;
|
|
33095
|
+
url: '/api/marketplace-slurm-periodic-usage-policies/actions/';
|
|
33096
|
+
};
|
|
33097
|
+
export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountResponses = {
|
|
33098
|
+
/**
|
|
33099
|
+
* No response body
|
|
33100
|
+
*/
|
|
33101
|
+
200: unknown;
|
|
33102
|
+
};
|
|
32723
33103
|
export type MarketplaceSoftwareCatalogsListData = {
|
|
32724
33104
|
body?: never;
|
|
32725
33105
|
path?: never;
|
|
@@ -39556,7 +39936,7 @@ export type ProjectsListData = {
|
|
|
39556
39936
|
customer_name?: string;
|
|
39557
39937
|
customer_native_name?: string;
|
|
39558
39938
|
description?: string;
|
|
39559
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
39939
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
39560
39940
|
/**
|
|
39561
39941
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
39562
39942
|
*/
|
|
@@ -39751,7 +40131,7 @@ export type ProjectsRetrieveData = {
|
|
|
39751
40131
|
uuid: string;
|
|
39752
40132
|
};
|
|
39753
40133
|
query?: {
|
|
39754
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
40134
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
39755
40135
|
};
|
|
39756
40136
|
url: '/api/projects/{uuid}/';
|
|
39757
40137
|
};
|