waldur-js-client 7.8.8-dev.7 → 7.8.8-dev.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.
@@ -9497,12 +9497,35 @@ export type PatchedQuestionAdminRequest = {
9497
9497
  * Additional guidance text visible to users when answering and reviewing
9498
9498
  */
9499
9499
  user_guidance?: string;
9500
- checklist?: string;
9501
- order?: number;
9502
9500
  /**
9503
9501
  * Type of question and expected answer format
9504
9502
  */
9505
9503
  question_type?: QuestionTypeEnum;
9504
+ order?: number;
9505
+ /**
9506
+ * Minimum value allowed for NUMBER type questions
9507
+ */
9508
+ min_value?: string | null;
9509
+ /**
9510
+ * Maximum value allowed for NUMBER type questions
9511
+ */
9512
+ max_value?: string | null;
9513
+ /**
9514
+ * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
9515
+ */
9516
+ allowed_file_types?: unknown;
9517
+ /**
9518
+ * 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.
9519
+ */
9520
+ allowed_mime_types?: unknown;
9521
+ /**
9522
+ * Maximum file size in megabytes. If not set, no size limit is enforced.
9523
+ */
9524
+ max_file_size_mb?: number | null;
9525
+ /**
9526
+ * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
9527
+ */
9528
+ max_files_count?: number | null;
9506
9529
  operator?: ChecklistOperators | BlankEnum;
9507
9530
  /**
9508
9531
  * Answer value that trigger review.
@@ -9524,34 +9547,11 @@ export type PatchedQuestionAdminRequest = {
9524
9547
  * Show user guidance always, regardless of answer. If False, guidance is conditional on answer matching guidance_answer_value with guidance_operator
9525
9548
  */
9526
9549
  always_show_guidance?: boolean;
9527
- /**
9528
- * Minimum value allowed for NUMBER type questions
9529
- */
9530
- min_value?: string | null;
9531
- /**
9532
- * Maximum value allowed for NUMBER type questions
9533
- */
9534
- max_value?: string | null;
9535
9550
  /**
9536
9551
  * Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
9537
9552
  */
9538
9553
  dependency_logic_operator?: DependencyLogicOperatorEnum;
9539
- /**
9540
- * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
9541
- */
9542
- allowed_file_types?: unknown;
9543
- /**
9544
- * 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.
9545
- */
9546
- allowed_mime_types?: unknown;
9547
- /**
9548
- * Maximum file size in megabytes. If not set, no size limit is enforced.
9549
- */
9550
- max_file_size_mb?: number | null;
9551
- /**
9552
- * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
9553
- */
9554
- max_files_count?: number | null;
9554
+ checklist?: string;
9555
9555
  };
9556
9556
  export type PatchedQuestionDependencyRequest = {
9557
9557
  question?: string;
@@ -11302,25 +11302,35 @@ export type Question = {
11302
11302
  */
11303
11303
  user_guidance?: string;
11304
11304
  readonly question_options: Array<QuestionOptions>;
11305
- };
11306
- export type QuestionAdmin = {
11307
- readonly uuid: string;
11308
- required?: boolean;
11309
- description?: string;
11310
11305
  /**
11311
- * Additional guidance text visible to users when answering and reviewing
11306
+ * Type of question and expected answer format
11312
11307
  */
11313
- user_guidance?: string;
11314
- readonly question_options: Array<QuestionOptionsAdmin>;
11315
- readonly url: string;
11316
- readonly checklist_name: string;
11317
- readonly checklist_uuid: string;
11318
- checklist: string;
11308
+ question_type?: QuestionTypeEnum;
11319
11309
  order?: number;
11320
11310
  /**
11321
- * Type of question and expected answer format
11311
+ * Minimum value allowed for NUMBER type questions
11322
11312
  */
11323
- question_type?: QuestionTypeEnum;
11313
+ min_value?: string | null;
11314
+ /**
11315
+ * Maximum value allowed for NUMBER type questions
11316
+ */
11317
+ max_value?: string | null;
11318
+ /**
11319
+ * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
11320
+ */
11321
+ allowed_file_types?: unknown;
11322
+ /**
11323
+ * 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.
11324
+ */
11325
+ allowed_mime_types?: unknown;
11326
+ /**
11327
+ * Maximum file size in megabytes. If not set, no size limit is enforced.
11328
+ */
11329
+ max_file_size_mb?: number | null;
11330
+ /**
11331
+ * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
11332
+ */
11333
+ max_files_count?: number | null;
11324
11334
  operator?: ChecklistOperators | BlankEnum;
11325
11335
  /**
11326
11336
  * Answer value that trigger review.
@@ -11342,6 +11352,25 @@ export type QuestionAdmin = {
11342
11352
  * Show user guidance always, regardless of answer. If False, guidance is conditional on answer matching guidance_answer_value with guidance_operator
11343
11353
  */
11344
11354
  always_show_guidance?: boolean;
11355
+ /**
11356
+ * Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
11357
+ */
11358
+ dependency_logic_operator?: DependencyLogicOperatorEnum;
11359
+ };
11360
+ export type QuestionAdmin = {
11361
+ readonly uuid: string;
11362
+ required?: boolean;
11363
+ description?: string;
11364
+ /**
11365
+ * Additional guidance text visible to users when answering and reviewing
11366
+ */
11367
+ user_guidance?: string;
11368
+ readonly question_options: Array<QuestionOptionsAdmin>;
11369
+ /**
11370
+ * Type of question and expected answer format
11371
+ */
11372
+ question_type?: QuestionTypeEnum;
11373
+ order?: number;
11345
11374
  /**
11346
11375
  * Minimum value allowed for NUMBER type questions
11347
11376
  */
@@ -11350,10 +11379,6 @@ export type QuestionAdmin = {
11350
11379
  * Maximum value allowed for NUMBER type questions
11351
11380
  */
11352
11381
  max_value?: string | null;
11353
- /**
11354
- * Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
11355
- */
11356
- dependency_logic_operator?: DependencyLogicOperatorEnum;
11357
11382
  /**
11358
11383
  * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
11359
11384
  */
@@ -11370,20 +11395,6 @@ export type QuestionAdmin = {
11370
11395
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
11371
11396
  */
11372
11397
  max_files_count?: number | null;
11373
- };
11374
- export type QuestionAdminRequest = {
11375
- required?: boolean;
11376
- description?: string;
11377
- /**
11378
- * Additional guidance text visible to users when answering and reviewing
11379
- */
11380
- user_guidance?: string;
11381
- checklist: string;
11382
- order?: number;
11383
- /**
11384
- * Type of question and expected answer format
11385
- */
11386
- question_type?: QuestionTypeEnum;
11387
11398
  operator?: ChecklistOperators | BlankEnum;
11388
11399
  /**
11389
11400
  * Answer value that trigger review.
@@ -11405,6 +11416,27 @@ export type QuestionAdminRequest = {
11405
11416
  * Show user guidance always, regardless of answer. If False, guidance is conditional on answer matching guidance_answer_value with guidance_operator
11406
11417
  */
11407
11418
  always_show_guidance?: boolean;
11419
+ /**
11420
+ * Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
11421
+ */
11422
+ dependency_logic_operator?: DependencyLogicOperatorEnum;
11423
+ readonly url: string;
11424
+ readonly checklist_name: string;
11425
+ readonly checklist_uuid: string;
11426
+ checklist: string;
11427
+ };
11428
+ export type QuestionAdminRequest = {
11429
+ required?: boolean;
11430
+ description?: string;
11431
+ /**
11432
+ * Additional guidance text visible to users when answering and reviewing
11433
+ */
11434
+ user_guidance?: string;
11435
+ /**
11436
+ * Type of question and expected answer format
11437
+ */
11438
+ question_type?: QuestionTypeEnum;
11439
+ order?: number;
11408
11440
  /**
11409
11441
  * Minimum value allowed for NUMBER type questions
11410
11442
  */
@@ -11413,10 +11445,6 @@ export type QuestionAdminRequest = {
11413
11445
  * Maximum value allowed for NUMBER type questions
11414
11446
  */
11415
11447
  max_value?: string | null;
11416
- /**
11417
- * Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
11418
- */
11419
- dependency_logic_operator?: DependencyLogicOperatorEnum;
11420
11448
  /**
11421
11449
  * List of allowed file extensions (e.g., ['.pdf', '.doc', '.docx']). If empty, all file types are allowed.
11422
11450
  */
@@ -11433,6 +11461,32 @@ export type QuestionAdminRequest = {
11433
11461
  * Maximum number of files allowed for MULTIPLE_FILES type questions. If not set, no count limit is enforced.
11434
11462
  */
11435
11463
  max_files_count?: number | null;
11464
+ operator?: ChecklistOperators | BlankEnum;
11465
+ /**
11466
+ * Answer value that trigger review.
11467
+ */
11468
+ review_answer_value?: unknown;
11469
+ /**
11470
+ * This question always requires review regardless of answer
11471
+ */
11472
+ always_requires_review?: boolean;
11473
+ /**
11474
+ * Answer value that triggers display of user guidance.
11475
+ */
11476
+ guidance_answer_value?: unknown;
11477
+ /**
11478
+ * Operator to use when comparing answer with guidance_answer_value
11479
+ */
11480
+ guidance_operator?: ChecklistOperators | BlankEnum;
11481
+ /**
11482
+ * Show user guidance always, regardless of answer. If False, guidance is conditional on answer matching guidance_answer_value with guidance_operator
11483
+ */
11484
+ always_show_guidance?: boolean;
11485
+ /**
11486
+ * Defines how multiple dependencies are evaluated. AND: All dependencies must be satisfied. OR: At least one dependency must be satisfied.
11487
+ */
11488
+ dependency_logic_operator?: DependencyLogicOperatorEnum;
11489
+ checklist: string;
11436
11490
  };
11437
11491
  export type QuestionAnswer = {
11438
11492
  readonly question_uuid: string;
@@ -12924,9 +12978,6 @@ export type ResourcesLimits = {
12924
12978
  readonly organization_group_name: string;
12925
12979
  readonly organization_group_uuid: string;
12926
12980
  };
12927
- export type ReviewComment = {
12928
- comment?: string;
12929
- };
12930
12981
  export type ReviewCommentRequest = {
12931
12982
  comment?: string;
12932
12983
  };
@@ -16860,11 +16911,17 @@ export type AwsInstancesPullData = {
16860
16911
  query?: never;
16861
16912
  url: '/api/aws-instances/{uuid}/pull/';
16862
16913
  };
16914
+ export type AwsInstancesPullErrors = {
16915
+ /**
16916
+ * No response body
16917
+ */
16918
+ 409: unknown;
16919
+ };
16863
16920
  export type AwsInstancesPullResponses = {
16864
16921
  /**
16865
16922
  * No response body
16866
16923
  */
16867
- 200: unknown;
16924
+ 202: unknown;
16868
16925
  };
16869
16926
  export type AwsInstancesResizeData = {
16870
16927
  body: AwsInstanceResizeRequest;
@@ -16932,8 +16989,9 @@ export type AwsInstancesUnlinkResponses = {
16932
16989
  /**
16933
16990
  * No response body
16934
16991
  */
16935
- 200: unknown;
16992
+ 204: void;
16936
16993
  };
16994
+ export type AwsInstancesUnlinkResponse = AwsInstancesUnlinkResponses[keyof AwsInstancesUnlinkResponses];
16937
16995
  export type AwsRegionsListData = {
16938
16996
  body?: never;
16939
16997
  path?: never;
@@ -17186,11 +17244,17 @@ export type AwsVolumesPullData = {
17186
17244
  query?: never;
17187
17245
  url: '/api/aws-volumes/{uuid}/pull/';
17188
17246
  };
17247
+ export type AwsVolumesPullErrors = {
17248
+ /**
17249
+ * No response body
17250
+ */
17251
+ 409: unknown;
17252
+ };
17189
17253
  export type AwsVolumesPullResponses = {
17190
17254
  /**
17191
17255
  * No response body
17192
17256
  */
17193
- 200: unknown;
17257
+ 202: unknown;
17194
17258
  };
17195
17259
  export type AwsVolumesUnlinkData = {
17196
17260
  body?: never;
@@ -17204,8 +17268,9 @@ export type AwsVolumesUnlinkResponses = {
17204
17268
  /**
17205
17269
  * No response body
17206
17270
  */
17207
- 200: unknown;
17271
+ 204: void;
17208
17272
  };
17273
+ export type AwsVolumesUnlinkResponse = AwsVolumesUnlinkResponses[keyof AwsVolumesUnlinkResponses];
17209
17274
  export type AzureImagesListData = {
17210
17275
  body?: never;
17211
17276
  path?: never;
@@ -17490,11 +17555,17 @@ export type AzurePublicIpsPullData = {
17490
17555
  query?: never;
17491
17556
  url: '/api/azure-public-ips/{uuid}/pull/';
17492
17557
  };
17558
+ export type AzurePublicIpsPullErrors = {
17559
+ /**
17560
+ * No response body
17561
+ */
17562
+ 409: unknown;
17563
+ };
17493
17564
  export type AzurePublicIpsPullResponses = {
17494
17565
  /**
17495
17566
  * No response body
17496
17567
  */
17497
- 200: unknown;
17568
+ 202: unknown;
17498
17569
  };
17499
17570
  export type AzurePublicIpsUnlinkData = {
17500
17571
  body?: never;
@@ -17508,8 +17579,9 @@ export type AzurePublicIpsUnlinkResponses = {
17508
17579
  /**
17509
17580
  * No response body
17510
17581
  */
17511
- 200: unknown;
17582
+ 204: void;
17512
17583
  };
17584
+ export type AzurePublicIpsUnlinkResponse = AzurePublicIpsUnlinkResponses[keyof AzurePublicIpsUnlinkResponses];
17513
17585
  export type AzureResourceGroupsListData = {
17514
17586
  body?: never;
17515
17587
  path?: never;
@@ -17793,11 +17865,17 @@ export type AzureSqlDatabasesPullData = {
17793
17865
  query?: never;
17794
17866
  url: '/api/azure-sql-databases/{uuid}/pull/';
17795
17867
  };
17868
+ export type AzureSqlDatabasesPullErrors = {
17869
+ /**
17870
+ * No response body
17871
+ */
17872
+ 409: unknown;
17873
+ };
17796
17874
  export type AzureSqlDatabasesPullResponses = {
17797
17875
  /**
17798
17876
  * No response body
17799
17877
  */
17800
- 200: unknown;
17878
+ 202: unknown;
17801
17879
  };
17802
17880
  export type AzureSqlDatabasesUnlinkData = {
17803
17881
  body?: never;
@@ -17811,8 +17889,9 @@ export type AzureSqlDatabasesUnlinkResponses = {
17811
17889
  /**
17812
17890
  * No response body
17813
17891
  */
17814
- 200: unknown;
17892
+ 204: void;
17815
17893
  };
17894
+ export type AzureSqlDatabasesUnlinkResponse = AzureSqlDatabasesUnlinkResponses[keyof AzureSqlDatabasesUnlinkResponses];
17816
17895
  export type AzureSqlServersListData = {
17817
17896
  body?: never;
17818
17897
  path?: never;
@@ -17983,11 +18062,17 @@ export type AzureSqlServersPullData = {
17983
18062
  query?: never;
17984
18063
  url: '/api/azure-sql-servers/{uuid}/pull/';
17985
18064
  };
18065
+ export type AzureSqlServersPullErrors = {
18066
+ /**
18067
+ * No response body
18068
+ */
18069
+ 409: unknown;
18070
+ };
17986
18071
  export type AzureSqlServersPullResponses = {
17987
18072
  /**
17988
18073
  * No response body
17989
18074
  */
17990
- 200: unknown;
18075
+ 202: unknown;
17991
18076
  };
17992
18077
  export type AzureSqlServersUnlinkData = {
17993
18078
  body?: never;
@@ -18001,8 +18086,9 @@ export type AzureSqlServersUnlinkResponses = {
18001
18086
  /**
18002
18087
  * No response body
18003
18088
  */
18004
- 200: unknown;
18089
+ 204: void;
18005
18090
  };
18091
+ export type AzureSqlServersUnlinkResponse = AzureSqlServersUnlinkResponses[keyof AzureSqlServersUnlinkResponses];
18006
18092
  export type AzureVirtualmachinesListData = {
18007
18093
  body?: never;
18008
18094
  path?: never;
@@ -18161,11 +18247,17 @@ export type AzureVirtualmachinesPullData = {
18161
18247
  query?: never;
18162
18248
  url: '/api/azure-virtualmachines/{uuid}/pull/';
18163
18249
  };
18250
+ export type AzureVirtualmachinesPullErrors = {
18251
+ /**
18252
+ * No response body
18253
+ */
18254
+ 409: unknown;
18255
+ };
18164
18256
  export type AzureVirtualmachinesPullResponses = {
18165
18257
  /**
18166
18258
  * No response body
18167
18259
  */
18168
- 200: unknown;
18260
+ 202: unknown;
18169
18261
  };
18170
18262
  export type AzureVirtualmachinesRestartData = {
18171
18263
  body?: never;
@@ -18221,8 +18313,9 @@ export type AzureVirtualmachinesUnlinkResponses = {
18221
18313
  /**
18222
18314
  * No response body
18223
18315
  */
18224
- 200: unknown;
18316
+ 204: void;
18225
18317
  };
18318
+ export type AzureVirtualmachinesUnlinkResponse = AzureVirtualmachinesUnlinkResponses[keyof AzureVirtualmachinesUnlinkResponses];
18226
18319
  export type BackendResourceRequestsListData = {
18227
18320
  body?: never;
18228
18321
  path?: never;
@@ -19300,13 +19393,10 @@ export type CallManagingOrganisationsAddUserData = {
19300
19393
  };
19301
19394
  export type CallManagingOrganisationsAddUserErrors = {
19302
19395
  /**
19303
- * Validation error when trying to add user to terminated project
19396
+ * Validation error, for example when trying to add a user to a terminated project.
19304
19397
  */
19305
- 400: {
19306
- non_field_errors?: Array<string>;
19307
- };
19398
+ 400: unknown;
19308
19399
  };
19309
- export type CallManagingOrganisationsAddUserError = CallManagingOrganisationsAddUserErrors[keyof CallManagingOrganisationsAddUserErrors];
19310
19400
  export type CallManagingOrganisationsAddUserResponses = {
19311
19401
  201: UserRoleExpirationTime;
19312
19402
  };
@@ -19321,7 +19411,7 @@ export type CallManagingOrganisationsDeleteUserData = {
19321
19411
  };
19322
19412
  export type CallManagingOrganisationsDeleteUserResponses = {
19323
19413
  /**
19324
- * No response body
19414
+ * Role revoked successfully.
19325
19415
  */
19326
19416
  200: unknown;
19327
19417
  };
@@ -19593,11 +19683,11 @@ export type CeleryStatsRetrieveData = {
19593
19683
  url: '/api/celery-stats/';
19594
19684
  };
19595
19685
  export type CeleryStatsRetrieveResponses = {
19596
- /**
19597
- * No response body
19598
- */
19599
- 200: unknown;
19686
+ 200: {
19687
+ [key: string]: unknown;
19688
+ };
19600
19689
  };
19690
+ export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
19601
19691
  export type ChecklistsAdminListData = {
19602
19692
  body?: never;
19603
19693
  path?: never;
@@ -20955,13 +21045,10 @@ export type CustomersAddUserData = {
20955
21045
  };
20956
21046
  export type CustomersAddUserErrors = {
20957
21047
  /**
20958
- * Validation error when trying to add user to terminated project
21048
+ * Validation error, for example when trying to add a user to a terminated project.
20959
21049
  */
20960
- 400: {
20961
- non_field_errors?: Array<string>;
20962
- };
21050
+ 400: unknown;
20963
21051
  };
20964
- export type CustomersAddUserError = CustomersAddUserErrors[keyof CustomersAddUserErrors];
20965
21052
  export type CustomersAddUserResponses = {
20966
21053
  201: UserRoleExpirationTime;
20967
21054
  };
@@ -20976,7 +21063,7 @@ export type CustomersDeleteUserData = {
20976
21063
  };
20977
21064
  export type CustomersDeleteUserResponses = {
20978
21065
  /**
20979
- * No response body
21066
+ * Role revoked successfully.
20980
21067
  */
20981
21068
  200: unknown;
20982
21069
  };
@@ -21047,6 +21134,9 @@ export type CustomersStatsRetrieveData = {
21047
21134
  uuid: string;
21048
21135
  };
21049
21136
  query?: {
21137
+ /**
21138
+ * If true, returns usage data for the current month only. Otherwise, returns total usage.
21139
+ */
21050
21140
  for_current_month?: boolean;
21051
21141
  };
21052
21142
  url: '/api/customers/{uuid}/stats/';
@@ -21366,11 +21456,17 @@ export type DigitaloceanDropletsPullData = {
21366
21456
  query?: never;
21367
21457
  url: '/api/digitalocean-droplets/{uuid}/pull/';
21368
21458
  };
21459
+ export type DigitaloceanDropletsPullErrors = {
21460
+ /**
21461
+ * No response body
21462
+ */
21463
+ 409: unknown;
21464
+ };
21369
21465
  export type DigitaloceanDropletsPullResponses = {
21370
21466
  /**
21371
21467
  * No response body
21372
21468
  */
21373
- 200: unknown;
21469
+ 202: unknown;
21374
21470
  };
21375
21471
  export type DigitaloceanDropletsResizeData = {
21376
21472
  body: DigitalOceanDropletResizeRequest;
@@ -21438,8 +21534,9 @@ export type DigitaloceanDropletsUnlinkResponses = {
21438
21534
  /**
21439
21535
  * No response body
21440
21536
  */
21441
- 200: unknown;
21537
+ 204: void;
21442
21538
  };
21539
+ export type DigitaloceanDropletsUnlinkResponse = DigitaloceanDropletsUnlinkResponses[keyof DigitaloceanDropletsUnlinkResponses];
21443
21540
  export type DigitaloceanImagesListData = {
21444
21541
  body?: never;
21445
21542
  path?: never;
@@ -28571,6 +28668,7 @@ export type MarketplaceProviderOfferingsListData = {
28571
28668
  allowed_customer_uuid?: string;
28572
28669
  attributes?: string;
28573
28670
  billable?: boolean;
28671
+ can_create_offering_user?: boolean;
28574
28672
  category_group_uuid?: string;
28575
28673
  category_uuid?: string;
28576
28674
  /**
@@ -28675,6 +28773,7 @@ export type MarketplaceProviderOfferingsCountData = {
28675
28773
  allowed_customer_uuid?: string;
28676
28774
  attributes?: string;
28677
28775
  billable?: boolean;
28776
+ can_create_offering_user?: boolean;
28678
28777
  category_group_uuid?: string;
28679
28778
  category_uuid?: string;
28680
28779
  /**
@@ -28863,13 +28962,10 @@ export type MarketplaceProviderOfferingsAddUserData = {
28863
28962
  };
28864
28963
  export type MarketplaceProviderOfferingsAddUserErrors = {
28865
28964
  /**
28866
- * Validation error when trying to add user to terminated project
28965
+ * Validation error, for example when trying to add a user to a terminated project.
28867
28966
  */
28868
- 400: {
28869
- non_field_errors?: Array<string>;
28870
- };
28967
+ 400: unknown;
28871
28968
  };
28872
- export type MarketplaceProviderOfferingsAddUserError = MarketplaceProviderOfferingsAddUserErrors[keyof MarketplaceProviderOfferingsAddUserErrors];
28873
28969
  export type MarketplaceProviderOfferingsAddUserResponses = {
28874
28970
  201: UserRoleExpirationTime;
28875
28971
  };
@@ -28902,6 +28998,7 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
28902
28998
  allowed_customer_uuid?: string;
28903
28999
  attributes?: string;
28904
29000
  billable?: boolean;
29001
+ can_create_offering_user?: boolean;
28905
29002
  category_group_uuid?: string;
28906
29003
  category_uuid?: string;
28907
29004
  /**
@@ -29016,6 +29113,7 @@ export type MarketplaceProviderOfferingsCostsListData = {
29016
29113
  allowed_customer_uuid?: string;
29017
29114
  attributes?: string;
29018
29115
  billable?: boolean;
29116
+ can_create_offering_user?: boolean;
29019
29117
  category_group_uuid?: string;
29020
29118
  category_uuid?: string;
29021
29119
  /**
@@ -29143,6 +29241,7 @@ export type MarketplaceProviderOfferingsCustomersListData = {
29143
29241
  allowed_customer_uuid?: string;
29144
29242
  attributes?: string;
29145
29243
  billable?: boolean;
29244
+ can_create_offering_user?: boolean;
29146
29245
  category_group_uuid?: string;
29147
29246
  category_uuid?: string;
29148
29247
  /**
@@ -29301,7 +29400,7 @@ export type MarketplaceProviderOfferingsDeleteUserData = {
29301
29400
  };
29302
29401
  export type MarketplaceProviderOfferingsDeleteUserResponses = {
29303
29402
  /**
29304
- * No response body
29403
+ * Role revoked successfully.
29305
29404
  */
29306
29405
  200: unknown;
29307
29406
  };
@@ -29924,6 +30023,7 @@ export type MarketplaceProviderOfferingsGroupsListData = {
29924
30023
  allowed_customer_uuid?: string;
29925
30024
  attributes?: string;
29926
30025
  billable?: boolean;
30026
+ can_create_offering_user?: boolean;
29927
30027
  category_group_uuid?: string;
29928
30028
  category_uuid?: string;
29929
30029
  /**
@@ -30027,6 +30127,7 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
30027
30127
  allowed_customer_uuid?: string;
30028
30128
  attributes?: string;
30029
30129
  billable?: boolean;
30130
+ can_create_offering_user?: boolean;
30030
30131
  category_group_uuid?: string;
30031
30132
  category_uuid?: string;
30032
30133
  /**
@@ -30743,6 +30844,7 @@ export type MarketplacePublicOfferingsListData = {
30743
30844
  allowed_customer_uuid?: string;
30744
30845
  attributes?: string;
30745
30846
  billable?: boolean;
30847
+ can_create_offering_user?: boolean;
30746
30848
  category_group_uuid?: string;
30747
30849
  category_uuid?: string;
30748
30850
  /**
@@ -30847,6 +30949,7 @@ export type MarketplacePublicOfferingsCountData = {
30847
30949
  allowed_customer_uuid?: string;
30848
30950
  attributes?: string;
30849
30951
  billable?: boolean;
30952
+ can_create_offering_user?: boolean;
30850
30953
  category_group_uuid?: string;
30851
30954
  category_uuid?: string;
30852
30955
  /**
@@ -32647,6 +32750,7 @@ export type MarketplaceServiceProvidersOfferingsListData = {
32647
32750
  allowed_customer_uuid?: string;
32648
32751
  attributes?: string;
32649
32752
  billable?: boolean;
32753
+ can_create_offering_user?: boolean;
32650
32754
  category_group_uuid?: string;
32651
32755
  category_uuid?: string;
32652
32756
  /**
@@ -33086,13 +33190,10 @@ export type MarketplaceServiceProvidersAddUserData = {
33086
33190
  };
33087
33191
  export type MarketplaceServiceProvidersAddUserErrors = {
33088
33192
  /**
33089
- * Validation error when trying to add user to terminated project
33193
+ * Validation error, for example when trying to add a user to a terminated project.
33090
33194
  */
33091
- 400: {
33092
- non_field_errors?: Array<string>;
33093
- };
33195
+ 400: unknown;
33094
33196
  };
33095
- export type MarketplaceServiceProvidersAddUserError = MarketplaceServiceProvidersAddUserErrors[keyof MarketplaceServiceProvidersAddUserErrors];
33096
33197
  export type MarketplaceServiceProvidersAddUserResponses = {
33097
33198
  201: UserRoleExpirationTime;
33098
33199
  };
@@ -33131,7 +33232,7 @@ export type MarketplaceServiceProvidersDeleteUserData = {
33131
33232
  };
33132
33233
  export type MarketplaceServiceProvidersDeleteUserResponses = {
33133
33234
  /**
33134
- * No response body
33235
+ * Role revoked successfully.
33135
33236
  */
33136
33237
  200: unknown;
33137
33238
  };
@@ -36384,11 +36485,17 @@ export type OpenportalAllocationsPullData = {
36384
36485
  query?: never;
36385
36486
  url: '/api/openportal-allocations/{uuid}/pull/';
36386
36487
  };
36488
+ export type OpenportalAllocationsPullErrors = {
36489
+ /**
36490
+ * No response body
36491
+ */
36492
+ 409: unknown;
36493
+ };
36387
36494
  export type OpenportalAllocationsPullResponses = {
36388
36495
  /**
36389
36496
  * No response body
36390
36497
  */
36391
- 200: unknown;
36498
+ 202: unknown;
36392
36499
  };
36393
36500
  export type OpenportalAllocationsSetLimitsData = {
36394
36501
  body: AllocationSetLimitsRequest;
@@ -36414,8 +36521,9 @@ export type OpenportalAllocationsUnlinkResponses = {
36414
36521
  /**
36415
36522
  * No response body
36416
36523
  */
36417
- 200: unknown;
36524
+ 204: void;
36418
36525
  };
36526
+ export type OpenportalAllocationsUnlinkResponse = OpenportalAllocationsUnlinkResponses[keyof OpenportalAllocationsUnlinkResponses];
36419
36527
  export type OpenportalAssociationsListData = {
36420
36528
  body?: never;
36421
36529
  path?: never;
@@ -37079,11 +37187,17 @@ export type OpenportalRemoteAllocationsPullData = {
37079
37187
  query?: never;
37080
37188
  url: '/api/openportal-remote-allocations/{uuid}/pull/';
37081
37189
  };
37190
+ export type OpenportalRemoteAllocationsPullErrors = {
37191
+ /**
37192
+ * No response body
37193
+ */
37194
+ 409: unknown;
37195
+ };
37082
37196
  export type OpenportalRemoteAllocationsPullResponses = {
37083
37197
  /**
37084
37198
  * No response body
37085
37199
  */
37086
- 200: unknown;
37200
+ 202: unknown;
37087
37201
  };
37088
37202
  export type OpenportalRemoteAllocationsSetLimitsData = {
37089
37203
  body: RemoteAllocationSetLimitsRequest;
@@ -37109,8 +37223,9 @@ export type OpenportalRemoteAllocationsUnlinkResponses = {
37109
37223
  /**
37110
37224
  * No response body
37111
37225
  */
37112
- 200: unknown;
37226
+ 204: void;
37113
37227
  };
37228
+ export type OpenportalRemoteAllocationsUnlinkResponse = OpenportalRemoteAllocationsUnlinkResponses[keyof OpenportalRemoteAllocationsUnlinkResponses];
37114
37229
  export type OpenportalRemoteAssociationsListData = {
37115
37230
  body?: never;
37116
37231
  path?: never;
@@ -37375,13 +37490,10 @@ export type OpenportalUnmanagedProjectsAddUserData = {
37375
37490
  };
37376
37491
  export type OpenportalUnmanagedProjectsAddUserErrors = {
37377
37492
  /**
37378
- * Validation error when trying to add user to terminated project
37493
+ * Validation error, for example when trying to add a user to a terminated project.
37379
37494
  */
37380
- 400: {
37381
- non_field_errors?: Array<string>;
37382
- };
37495
+ 400: unknown;
37383
37496
  };
37384
- export type OpenportalUnmanagedProjectsAddUserError = OpenportalUnmanagedProjectsAddUserErrors[keyof OpenportalUnmanagedProjectsAddUserErrors];
37385
37497
  export type OpenportalUnmanagedProjectsAddUserResponses = {
37386
37498
  201: UserRoleExpirationTime;
37387
37499
  };
@@ -37440,7 +37552,7 @@ export type OpenportalUnmanagedProjectsDeleteUserData = {
37440
37552
  };
37441
37553
  export type OpenportalUnmanagedProjectsDeleteUserResponses = {
37442
37554
  /**
37443
- * No response body
37555
+ * Role revoked successfully.
37444
37556
  */
37445
37557
  200: unknown;
37446
37558
  };
@@ -37544,6 +37656,9 @@ export type OpenportalUnmanagedProjectsStatsRetrieveData = {
37544
37656
  uuid: string;
37545
37657
  };
37546
37658
  query?: {
37659
+ /**
37660
+ * If true, returns usage data for the current month only. Otherwise, returns total usage.
37661
+ */
37547
37662
  for_current_month?: boolean;
37548
37663
  };
37549
37664
  url: '/api/openportal-unmanaged-projects/{uuid}/stats/';
@@ -37919,11 +38034,17 @@ export type OpenstackBackupsPullData = {
37919
38034
  query?: never;
37920
38035
  url: '/api/openstack-backups/{uuid}/pull/';
37921
38036
  };
38037
+ export type OpenstackBackupsPullErrors = {
38038
+ /**
38039
+ * No response body
38040
+ */
38041
+ 409: unknown;
38042
+ };
37922
38043
  export type OpenstackBackupsPullResponses = {
37923
38044
  /**
37924
38045
  * No response body
37925
38046
  */
37926
- 200: unknown;
38047
+ 202: unknown;
37927
38048
  };
37928
38049
  export type OpenstackBackupsRestoreData = {
37929
38050
  body: OpenStackBackupRestorationCreateRequest;
@@ -37949,8 +38070,9 @@ export type OpenstackBackupsUnlinkResponses = {
37949
38070
  /**
37950
38071
  * No response body
37951
38072
  */
37952
- 200: unknown;
38073
+ 204: void;
37953
38074
  };
38075
+ export type OpenstackBackupsUnlinkResponse = OpenstackBackupsUnlinkResponses[keyof OpenstackBackupsUnlinkResponses];
37954
38076
  export type OpenstackFlavorsListData = {
37955
38077
  body?: never;
37956
38078
  path?: never;
@@ -38234,11 +38356,17 @@ export type OpenstackFloatingIpsPullData = {
38234
38356
  query?: never;
38235
38357
  url: '/api/openstack-floating-ips/{uuid}/pull/';
38236
38358
  };
38359
+ export type OpenstackFloatingIpsPullErrors = {
38360
+ /**
38361
+ * No response body
38362
+ */
38363
+ 409: unknown;
38364
+ };
38237
38365
  export type OpenstackFloatingIpsPullResponses = {
38238
38366
  /**
38239
38367
  * No response body
38240
38368
  */
38241
- 200: unknown;
38369
+ 202: unknown;
38242
38370
  };
38243
38371
  export type OpenstackFloatingIpsUnlinkData = {
38244
38372
  body?: never;
@@ -38252,8 +38380,9 @@ export type OpenstackFloatingIpsUnlinkResponses = {
38252
38380
  /**
38253
38381
  * No response body
38254
38382
  */
38255
- 200: unknown;
38383
+ 204: void;
38256
38384
  };
38385
+ export type OpenstackFloatingIpsUnlinkResponse = OpenstackFloatingIpsUnlinkResponses[keyof OpenstackFloatingIpsUnlinkResponses];
38257
38386
  export type OpenstackFloatingIpsUpdateDescriptionData = {
38258
38387
  body?: OpenStackFloatingIpDescriptionUpdateRequest;
38259
38388
  path: {
@@ -38661,11 +38790,17 @@ export type OpenstackInstancesPullData = {
38661
38790
  query?: never;
38662
38791
  url: '/api/openstack-instances/{uuid}/pull/';
38663
38792
  };
38793
+ export type OpenstackInstancesPullErrors = {
38794
+ /**
38795
+ * No response body
38796
+ */
38797
+ 409: unknown;
38798
+ };
38664
38799
  export type OpenstackInstancesPullResponses = {
38665
38800
  /**
38666
38801
  * No response body
38667
38802
  */
38668
- 200: unknown;
38803
+ 202: unknown;
38669
38804
  };
38670
38805
  export type OpenstackInstancesRestartData = {
38671
38806
  body?: never;
@@ -38721,8 +38856,9 @@ export type OpenstackInstancesUnlinkResponses = {
38721
38856
  /**
38722
38857
  * No response body
38723
38858
  */
38724
- 200: unknown;
38859
+ 204: void;
38725
38860
  };
38861
+ export type OpenstackInstancesUnlinkResponse = OpenstackInstancesUnlinkResponses[keyof OpenstackInstancesUnlinkResponses];
38726
38862
  export type OpenstackInstancesUpdateAllowedAddressPairsData = {
38727
38863
  body: OpenStackInstanceAllowedAddressPairsUpdateRequest;
38728
38864
  path: {
@@ -39320,11 +39456,17 @@ export type OpenstackNetworksPullData = {
39320
39456
  query?: never;
39321
39457
  url: '/api/openstack-networks/{uuid}/pull/';
39322
39458
  };
39459
+ export type OpenstackNetworksPullErrors = {
39460
+ /**
39461
+ * No response body
39462
+ */
39463
+ 409: unknown;
39464
+ };
39323
39465
  export type OpenstackNetworksPullResponses = {
39324
39466
  /**
39325
39467
  * No response body
39326
39468
  */
39327
- 200: unknown;
39469
+ 202: unknown;
39328
39470
  };
39329
39471
  export type OpenstackNetworksRbacPolicyCreateData = {
39330
39472
  body: DeprecatedNetworkRbacPolicyRequest;
@@ -39381,8 +39523,9 @@ export type OpenstackNetworksUnlinkResponses = {
39381
39523
  /**
39382
39524
  * No response body
39383
39525
  */
39384
- 200: unknown;
39526
+ 204: void;
39385
39527
  };
39528
+ export type OpenstackNetworksUnlinkResponse = OpenstackNetworksUnlinkResponses[keyof OpenstackNetworksUnlinkResponses];
39386
39529
  export type OpenstackPortsListData = {
39387
39530
  body?: never;
39388
39531
  path?: never;
@@ -39631,11 +39774,17 @@ export type OpenstackPortsPullData = {
39631
39774
  query?: never;
39632
39775
  url: '/api/openstack-ports/{uuid}/pull/';
39633
39776
  };
39777
+ export type OpenstackPortsPullErrors = {
39778
+ /**
39779
+ * No response body
39780
+ */
39781
+ 409: unknown;
39782
+ };
39634
39783
  export type OpenstackPortsPullResponses = {
39635
39784
  /**
39636
39785
  * No response body
39637
39786
  */
39638
- 200: unknown;
39787
+ 202: unknown;
39639
39788
  };
39640
39789
  export type OpenstackPortsUnlinkData = {
39641
39790
  body?: never;
@@ -39649,8 +39798,9 @@ export type OpenstackPortsUnlinkResponses = {
39649
39798
  /**
39650
39799
  * No response body
39651
39800
  */
39652
- 200: unknown;
39801
+ 204: void;
39653
39802
  };
39803
+ export type OpenstackPortsUnlinkResponse = OpenstackPortsUnlinkResponses[keyof OpenstackPortsUnlinkResponses];
39654
39804
  export type OpenstackPortsUpdatePortIpData = {
39655
39805
  body: OpenStackPortIpUpdateRequest;
39656
39806
  path: {
@@ -39963,11 +40113,17 @@ export type OpenstackSecurityGroupsPullData = {
39963
40113
  query?: never;
39964
40114
  url: '/api/openstack-security-groups/{uuid}/pull/';
39965
40115
  };
40116
+ export type OpenstackSecurityGroupsPullErrors = {
40117
+ /**
40118
+ * No response body
40119
+ */
40120
+ 409: unknown;
40121
+ };
39966
40122
  export type OpenstackSecurityGroupsPullResponses = {
39967
40123
  /**
39968
40124
  * No response body
39969
40125
  */
39970
- 200: unknown;
40126
+ 202: unknown;
39971
40127
  };
39972
40128
  export type OpenstackSecurityGroupsSetRulesData = {
39973
40129
  body: Array<OpenStackSecurityGroupRuleUpdateRequest>;
@@ -39995,8 +40151,9 @@ export type OpenstackSecurityGroupsUnlinkResponses = {
39995
40151
  /**
39996
40152
  * No response body
39997
40153
  */
39998
- 200: unknown;
40154
+ 204: void;
39999
40155
  };
40156
+ export type OpenstackSecurityGroupsUnlinkResponse = OpenstackSecurityGroupsUnlinkResponses[keyof OpenstackSecurityGroupsUnlinkResponses];
40000
40157
  export type OpenstackServerGroupsListData = {
40001
40158
  body?: never;
40002
40159
  path?: never;
@@ -40155,11 +40312,17 @@ export type OpenstackServerGroupsPullData = {
40155
40312
  query?: never;
40156
40313
  url: '/api/openstack-server-groups/{uuid}/pull/';
40157
40314
  };
40315
+ export type OpenstackServerGroupsPullErrors = {
40316
+ /**
40317
+ * No response body
40318
+ */
40319
+ 409: unknown;
40320
+ };
40158
40321
  export type OpenstackServerGroupsPullResponses = {
40159
40322
  /**
40160
40323
  * No response body
40161
40324
  */
40162
- 200: unknown;
40325
+ 202: unknown;
40163
40326
  };
40164
40327
  export type OpenstackServerGroupsUnlinkData = {
40165
40328
  body?: never;
@@ -40173,8 +40336,9 @@ export type OpenstackServerGroupsUnlinkResponses = {
40173
40336
  /**
40174
40337
  * No response body
40175
40338
  */
40176
- 200: unknown;
40339
+ 204: void;
40177
40340
  };
40341
+ export type OpenstackServerGroupsUnlinkResponse = OpenstackServerGroupsUnlinkResponses[keyof OpenstackServerGroupsUnlinkResponses];
40178
40342
  export type OpenstackSnapshotsListData = {
40179
40343
  body?: never;
40180
40344
  path?: never;
@@ -40333,11 +40497,17 @@ export type OpenstackSnapshotsPullData = {
40333
40497
  query?: never;
40334
40498
  url: '/api/openstack-snapshots/{uuid}/pull/';
40335
40499
  };
40500
+ export type OpenstackSnapshotsPullErrors = {
40501
+ /**
40502
+ * No response body
40503
+ */
40504
+ 409: unknown;
40505
+ };
40336
40506
  export type OpenstackSnapshotsPullResponses = {
40337
40507
  /**
40338
40508
  * No response body
40339
40509
  */
40340
- 200: unknown;
40510
+ 202: unknown;
40341
40511
  };
40342
40512
  export type OpenstackSnapshotsRestorationsListData = {
40343
40513
  body?: never;
@@ -40384,8 +40554,9 @@ export type OpenstackSnapshotsUnlinkResponses = {
40384
40554
  /**
40385
40555
  * No response body
40386
40556
  */
40387
- 200: unknown;
40557
+ 204: void;
40388
40558
  };
40559
+ export type OpenstackSnapshotsUnlinkResponse = OpenstackSnapshotsUnlinkResponses[keyof OpenstackSnapshotsUnlinkResponses];
40389
40560
  export type OpenstackSubnetsListData = {
40390
40561
  body?: never;
40391
40562
  path?: never;
@@ -40598,11 +40769,17 @@ export type OpenstackSubnetsPullData = {
40598
40769
  query?: never;
40599
40770
  url: '/api/openstack-subnets/{uuid}/pull/';
40600
40771
  };
40772
+ export type OpenstackSubnetsPullErrors = {
40773
+ /**
40774
+ * No response body
40775
+ */
40776
+ 409: unknown;
40777
+ };
40601
40778
  export type OpenstackSubnetsPullResponses = {
40602
40779
  /**
40603
40780
  * No response body
40604
40781
  */
40605
- 200: unknown;
40782
+ 202: unknown;
40606
40783
  };
40607
40784
  export type OpenstackSubnetsUnlinkData = {
40608
40785
  body?: never;
@@ -40616,8 +40793,9 @@ export type OpenstackSubnetsUnlinkResponses = {
40616
40793
  /**
40617
40794
  * No response body
40618
40795
  */
40619
- 200: unknown;
40796
+ 204: void;
40620
40797
  };
40798
+ export type OpenstackSubnetsUnlinkResponse = OpenstackSubnetsUnlinkResponses[keyof OpenstackSubnetsUnlinkResponses];
40621
40799
  export type OpenstackTenantsListData = {
40622
40800
  body?: never;
40623
40801
  path?: never;
@@ -40918,11 +41096,17 @@ export type OpenstackTenantsPullData = {
40918
41096
  query?: never;
40919
41097
  url: '/api/openstack-tenants/{uuid}/pull/';
40920
41098
  };
41099
+ export type OpenstackTenantsPullErrors = {
41100
+ /**
41101
+ * No response body
41102
+ */
41103
+ 409: unknown;
41104
+ };
40921
41105
  export type OpenstackTenantsPullResponses = {
40922
41106
  /**
40923
41107
  * No response body
40924
41108
  */
40925
- 200: unknown;
41109
+ 202: unknown;
40926
41110
  };
40927
41111
  export type OpenstackTenantsPullFloatingIpsData = {
40928
41112
  body?: never;
@@ -41000,8 +41184,9 @@ export type OpenstackTenantsUnlinkResponses = {
41000
41184
  /**
41001
41185
  * No response body
41002
41186
  */
41003
- 200: unknown;
41187
+ 204: void;
41004
41188
  };
41189
+ export type OpenstackTenantsUnlinkResponse = OpenstackTenantsUnlinkResponses[keyof OpenstackTenantsUnlinkResponses];
41005
41190
  export type OpenstackVolumeAvailabilityZonesListData = {
41006
41191
  body?: never;
41007
41192
  path?: never;
@@ -41343,11 +41528,17 @@ export type OpenstackVolumesPullData = {
41343
41528
  query?: never;
41344
41529
  url: '/api/openstack-volumes/{uuid}/pull/';
41345
41530
  };
41531
+ export type OpenstackVolumesPullErrors = {
41532
+ /**
41533
+ * No response body
41534
+ */
41535
+ 409: unknown;
41536
+ };
41346
41537
  export type OpenstackVolumesPullResponses = {
41347
41538
  /**
41348
41539
  * No response body
41349
41540
  */
41350
- 200: unknown;
41541
+ 202: unknown;
41351
41542
  };
41352
41543
  export type OpenstackVolumesRetypeData = {
41353
41544
  body: OpenStackVolumeRetypeRequest;
@@ -41387,8 +41578,9 @@ export type OpenstackVolumesUnlinkResponses = {
41387
41578
  /**
41388
41579
  * No response body
41389
41580
  */
41390
- 200: unknown;
41581
+ 204: void;
41391
41582
  };
41583
+ export type OpenstackVolumesUnlinkResponse = OpenstackVolumesUnlinkResponses[keyof OpenstackVolumesUnlinkResponses];
41392
41584
  export type OrganizationGroupsListData = {
41393
41585
  body?: never;
41394
41586
  path?: never;
@@ -42383,13 +42575,10 @@ export type ProjectsAddUserData = {
42383
42575
  };
42384
42576
  export type ProjectsAddUserErrors = {
42385
42577
  /**
42386
- * Validation error when trying to add user to terminated project
42578
+ * Validation error, for example when trying to add a user to a terminated project.
42387
42579
  */
42388
- 400: {
42389
- non_field_errors?: Array<string>;
42390
- };
42580
+ 400: unknown;
42391
42581
  };
42392
- export type ProjectsAddUserError = ProjectsAddUserErrors[keyof ProjectsAddUserErrors];
42393
42582
  export type ProjectsAddUserResponses = {
42394
42583
  201: UserRoleExpirationTime;
42395
42584
  };
@@ -42448,7 +42637,7 @@ export type ProjectsDeleteUserData = {
42448
42637
  };
42449
42638
  export type ProjectsDeleteUserResponses = {
42450
42639
  /**
42451
- * No response body
42640
+ * Role revoked successfully.
42452
42641
  */
42453
42642
  200: unknown;
42454
42643
  };
@@ -42552,6 +42741,9 @@ export type ProjectsStatsRetrieveData = {
42552
42741
  uuid: string;
42553
42742
  };
42554
42743
  query?: {
42744
+ /**
42745
+ * If true, returns usage data for the current month only. Otherwise, returns total usage.
42746
+ */
42555
42747
  for_current_month?: boolean;
42556
42748
  };
42557
42749
  url: '/api/projects/{uuid}/stats/';
@@ -42972,13 +43164,10 @@ export type ProposalProposalsAddUserData = {
42972
43164
  };
42973
43165
  export type ProposalProposalsAddUserErrors = {
42974
43166
  /**
42975
- * Validation error when trying to add user to terminated project
43167
+ * Validation error, for example when trying to add a user to a terminated project.
42976
43168
  */
42977
- 400: {
42978
- non_field_errors?: Array<string>;
42979
- };
43169
+ 400: unknown;
42980
43170
  };
42981
- export type ProposalProposalsAddUserError = ProposalProposalsAddUserErrors[keyof ProposalProposalsAddUserErrors];
42982
43171
  export type ProposalProposalsAddUserResponses = {
42983
43172
  201: UserRoleExpirationTime;
42984
43173
  };
@@ -43109,7 +43298,7 @@ export type ProposalProposalsDeleteUserData = {
43109
43298
  };
43110
43299
  export type ProposalProposalsDeleteUserResponses = {
43111
43300
  /**
43112
- * No response body
43301
+ * Role revoked successfully.
43113
43302
  */
43114
43303
  200: unknown;
43115
43304
  };
@@ -43534,13 +43723,10 @@ export type ProposalProtectedCallsAddUserData = {
43534
43723
  };
43535
43724
  export type ProposalProtectedCallsAddUserErrors = {
43536
43725
  /**
43537
- * Validation error when trying to add user to terminated project
43726
+ * Validation error, for example when trying to add a user to a terminated project.
43538
43727
  */
43539
- 400: {
43540
- non_field_errors?: Array<string>;
43541
- };
43728
+ 400: unknown;
43542
43729
  };
43543
- export type ProposalProtectedCallsAddUserError = ProposalProtectedCallsAddUserErrors[keyof ProposalProtectedCallsAddUserErrors];
43544
43730
  export type ProposalProtectedCallsAddUserResponses = {
43545
43731
  201: UserRoleExpirationTime;
43546
43732
  };
@@ -43593,7 +43779,7 @@ export type ProposalProtectedCallsDeleteUserData = {
43593
43779
  };
43594
43780
  export type ProposalProtectedCallsDeleteUserResponses = {
43595
43781
  /**
43596
- * No response body
43782
+ * Role revoked successfully.
43597
43783
  */
43598
43784
  200: unknown;
43599
43785
  };
@@ -44850,11 +45036,17 @@ export type RancherAppsPullData = {
44850
45036
  query?: never;
44851
45037
  url: '/api/rancher-apps/{uuid}/pull/';
44852
45038
  };
45039
+ export type RancherAppsPullErrors = {
45040
+ /**
45041
+ * No response body
45042
+ */
45043
+ 409: unknown;
45044
+ };
44853
45045
  export type RancherAppsPullResponses = {
44854
45046
  /**
44855
45047
  * No response body
44856
45048
  */
44857
- 200: unknown;
45049
+ 202: unknown;
44858
45050
  };
44859
45051
  export type RancherAppsUnlinkData = {
44860
45052
  body?: never;
@@ -44868,8 +45060,9 @@ export type RancherAppsUnlinkResponses = {
44868
45060
  /**
44869
45061
  * No response body
44870
45062
  */
44871
- 200: unknown;
45063
+ 204: void;
44872
45064
  };
45065
+ export type RancherAppsUnlinkResponse = RancherAppsUnlinkResponses[keyof RancherAppsUnlinkResponses];
44873
45066
  export type RancherCatalogsListData = {
44874
45067
  body?: never;
44875
45068
  path?: never;
@@ -45270,11 +45463,17 @@ export type RancherClustersPullData = {
45270
45463
  query?: never;
45271
45464
  url: '/api/rancher-clusters/{uuid}/pull/';
45272
45465
  };
45466
+ export type RancherClustersPullErrors = {
45467
+ /**
45468
+ * No response body
45469
+ */
45470
+ 409: unknown;
45471
+ };
45273
45472
  export type RancherClustersPullResponses = {
45274
45473
  /**
45275
45474
  * No response body
45276
45475
  */
45277
- 200: unknown;
45476
+ 202: unknown;
45278
45477
  };
45279
45478
  export type RancherClustersUnlinkData = {
45280
45479
  body?: never;
@@ -45288,8 +45487,9 @@ export type RancherClustersUnlinkResponses = {
45288
45487
  /**
45289
45488
  * No response body
45290
45489
  */
45291
- 200: unknown;
45490
+ 204: void;
45292
45491
  };
45492
+ export type RancherClustersUnlinkResponse = RancherClustersUnlinkResponses[keyof RancherClustersUnlinkResponses];
45293
45493
  export type RancherHpasListData = {
45294
45494
  body?: never;
45295
45495
  path?: never;
@@ -45415,11 +45615,17 @@ export type RancherHpasPullData = {
45415
45615
  query?: never;
45416
45616
  url: '/api/rancher-hpas/{uuid}/pull/';
45417
45617
  };
45618
+ export type RancherHpasPullErrors = {
45619
+ /**
45620
+ * No response body
45621
+ */
45622
+ 409: unknown;
45623
+ };
45418
45624
  export type RancherHpasPullResponses = {
45419
45625
  /**
45420
45626
  * No response body
45421
45627
  */
45422
- 200: unknown;
45628
+ 202: unknown;
45423
45629
  };
45424
45630
  export type RancherHpasUnlinkData = {
45425
45631
  body?: never;
@@ -45433,8 +45639,9 @@ export type RancherHpasUnlinkResponses = {
45433
45639
  /**
45434
45640
  * No response body
45435
45641
  */
45436
- 200: unknown;
45642
+ 204: void;
45437
45643
  };
45644
+ export type RancherHpasUnlinkResponse = RancherHpasUnlinkResponses[keyof RancherHpasUnlinkResponses];
45438
45645
  export type RancherHpasYamlRetrieveData = {
45439
45646
  body?: never;
45440
45647
  path: {
@@ -45619,11 +45826,17 @@ export type RancherIngressesPullData = {
45619
45826
  query?: never;
45620
45827
  url: '/api/rancher-ingresses/{uuid}/pull/';
45621
45828
  };
45829
+ export type RancherIngressesPullErrors = {
45830
+ /**
45831
+ * No response body
45832
+ */
45833
+ 409: unknown;
45834
+ };
45622
45835
  export type RancherIngressesPullResponses = {
45623
45836
  /**
45624
45837
  * No response body
45625
45838
  */
45626
- 200: unknown;
45839
+ 202: unknown;
45627
45840
  };
45628
45841
  export type RancherIngressesUnlinkData = {
45629
45842
  body?: never;
@@ -45637,8 +45850,9 @@ export type RancherIngressesUnlinkResponses = {
45637
45850
  /**
45638
45851
  * No response body
45639
45852
  */
45640
- 200: unknown;
45853
+ 204: void;
45641
45854
  };
45855
+ export type RancherIngressesUnlinkResponse = RancherIngressesUnlinkResponses[keyof RancherIngressesUnlinkResponses];
45642
45856
  export type RancherIngressesYamlRetrieveData = {
45643
45857
  body?: never;
45644
45858
  path: {
@@ -45874,11 +46088,17 @@ export type RancherNodesPullData = {
45874
46088
  query?: never;
45875
46089
  url: '/api/rancher-nodes/{uuid}/pull/';
45876
46090
  };
46091
+ export type RancherNodesPullErrors = {
46092
+ /**
46093
+ * No response body
46094
+ */
46095
+ 409: unknown;
46096
+ };
45877
46097
  export type RancherNodesPullResponses = {
45878
46098
  /**
45879
46099
  * No response body
45880
46100
  */
45881
- 200: unknown;
46101
+ 202: unknown;
45882
46102
  };
45883
46103
  export type RancherNodesUnlinkData = {
45884
46104
  body?: never;
@@ -45892,8 +46112,9 @@ export type RancherNodesUnlinkResponses = {
45892
46112
  /**
45893
46113
  * No response body
45894
46114
  */
45895
- 200: unknown;
46115
+ 204: void;
45896
46116
  };
46117
+ export type RancherNodesUnlinkResponse = RancherNodesUnlinkResponses[keyof RancherNodesUnlinkResponses];
45897
46118
  export type RancherNodesUnlinkOpenstackData = {
45898
46119
  body?: never;
45899
46120
  path: {
@@ -46212,11 +46433,17 @@ export type RancherServicesPullData = {
46212
46433
  query?: never;
46213
46434
  url: '/api/rancher-services/{uuid}/pull/';
46214
46435
  };
46436
+ export type RancherServicesPullErrors = {
46437
+ /**
46438
+ * No response body
46439
+ */
46440
+ 409: unknown;
46441
+ };
46215
46442
  export type RancherServicesPullResponses = {
46216
46443
  /**
46217
46444
  * No response body
46218
46445
  */
46219
- 200: unknown;
46446
+ 202: unknown;
46220
46447
  };
46221
46448
  export type RancherServicesUnlinkData = {
46222
46449
  body?: never;
@@ -46230,8 +46457,9 @@ export type RancherServicesUnlinkResponses = {
46230
46457
  /**
46231
46458
  * No response body
46232
46459
  */
46233
- 200: unknown;
46460
+ 204: void;
46234
46461
  };
46462
+ export type RancherServicesUnlinkResponse = RancherServicesUnlinkResponses[keyof RancherServicesUnlinkResponses];
46235
46463
  export type RancherServicesYamlRetrieveData = {
46236
46464
  body?: never;
46237
46465
  path: {
@@ -47015,7 +47243,7 @@ export type RolesDisableData = {
47015
47243
  };
47016
47244
  export type RolesDisableResponses = {
47017
47245
  /**
47018
- * No response body
47246
+ * Role disabled successfully.
47019
47247
  */
47020
47248
  200: unknown;
47021
47249
  };
@@ -47029,7 +47257,7 @@ export type RolesEnableData = {
47029
47257
  };
47030
47258
  export type RolesEnableResponses = {
47031
47259
  /**
47032
- * No response body
47260
+ * Role enabled successfully.
47033
47261
  */
47034
47262
  200: unknown;
47035
47263
  };
@@ -47353,11 +47581,17 @@ export type SlurmAllocationsPullData = {
47353
47581
  query?: never;
47354
47582
  url: '/api/slurm-allocations/{uuid}/pull/';
47355
47583
  };
47584
+ export type SlurmAllocationsPullErrors = {
47585
+ /**
47586
+ * No response body
47587
+ */
47588
+ 409: unknown;
47589
+ };
47356
47590
  export type SlurmAllocationsPullResponses = {
47357
47591
  /**
47358
47592
  * No response body
47359
47593
  */
47360
- 200: unknown;
47594
+ 202: unknown;
47361
47595
  };
47362
47596
  export type SlurmAllocationsSetLimitsData = {
47363
47597
  body: SlurmAllocationSetLimitsRequest;
@@ -47383,8 +47617,9 @@ export type SlurmAllocationsUnlinkResponses = {
47383
47617
  /**
47384
47618
  * No response body
47385
47619
  */
47386
- 200: unknown;
47620
+ 204: void;
47387
47621
  };
47622
+ export type SlurmAllocationsUnlinkResponse = SlurmAllocationsUnlinkResponses[keyof SlurmAllocationsUnlinkResponses];
47388
47623
  export type SlurmAssociationsListData = {
47389
47624
  body?: never;
47390
47625
  path?: never;
@@ -47553,11 +47788,17 @@ export type SlurmJobsPullData = {
47553
47788
  query?: never;
47554
47789
  url: '/api/slurm-jobs/{uuid}/pull/';
47555
47790
  };
47791
+ export type SlurmJobsPullErrors = {
47792
+ /**
47793
+ * No response body
47794
+ */
47795
+ 409: unknown;
47796
+ };
47556
47797
  export type SlurmJobsPullResponses = {
47557
47798
  /**
47558
47799
  * No response body
47559
47800
  */
47560
- 200: unknown;
47801
+ 202: unknown;
47561
47802
  };
47562
47803
  export type SlurmJobsUnlinkData = {
47563
47804
  body?: never;
@@ -47571,8 +47812,9 @@ export type SlurmJobsUnlinkResponses = {
47571
47812
  /**
47572
47813
  * No response body
47573
47814
  */
47574
- 200: unknown;
47815
+ 204: void;
47575
47816
  };
47817
+ export type SlurmJobsUnlinkResponse = SlurmJobsUnlinkResponses[keyof SlurmJobsUnlinkResponses];
47576
47818
  export type SupportAttachmentsListData = {
47577
47819
  body?: never;
47578
47820
  path?: never;
@@ -48879,7 +49121,7 @@ export type UserInvitationsCancelData = {
48879
49121
  };
48880
49122
  export type UserInvitationsCancelResponses = {
48881
49123
  /**
48882
- * No response body
49124
+ * Invitation has been successfully canceled.
48883
49125
  */
48884
49126
  200: unknown;
48885
49127
  };
@@ -49040,9 +49282,11 @@ export type UserPermissionRequestsApproveData = {
49040
49282
  url: '/api/user-permission-requests/{uuid}/approve/';
49041
49283
  };
49042
49284
  export type UserPermissionRequestsApproveResponses = {
49043
- 200: ReviewComment;
49285
+ /**
49286
+ * No response body
49287
+ */
49288
+ 200: unknown;
49044
49289
  };
49045
- export type UserPermissionRequestsApproveResponse = UserPermissionRequestsApproveResponses[keyof UserPermissionRequestsApproveResponses];
49046
49290
  export type UserPermissionRequestsCancelRequestData = {
49047
49291
  body?: never;
49048
49292
  path: {
@@ -49064,9 +49308,11 @@ export type UserPermissionRequestsRejectData = {
49064
49308
  url: '/api/user-permission-requests/{uuid}/reject/';
49065
49309
  };
49066
49310
  export type UserPermissionRequestsRejectResponses = {
49067
- 200: ReviewComment;
49311
+ /**
49312
+ * No response body
49313
+ */
49314
+ 200: unknown;
49068
49315
  };
49069
- export type UserPermissionRequestsRejectResponse = UserPermissionRequestsRejectResponses[keyof UserPermissionRequestsRejectResponses];
49070
49316
  export type UserPermissionsListData = {
49071
49317
  body?: never;
49072
49318
  path?: never;
@@ -49827,11 +50073,17 @@ export type VmwareDisksPullData = {
49827
50073
  query?: never;
49828
50074
  url: '/api/vmware-disks/{uuid}/pull/';
49829
50075
  };
50076
+ export type VmwareDisksPullErrors = {
50077
+ /**
50078
+ * No response body
50079
+ */
50080
+ 409: unknown;
50081
+ };
49830
50082
  export type VmwareDisksPullResponses = {
49831
50083
  /**
49832
50084
  * No response body
49833
50085
  */
49834
- 200: unknown;
50086
+ 202: unknown;
49835
50087
  };
49836
50088
  export type VmwareDisksUnlinkData = {
49837
50089
  body?: never;
@@ -49845,8 +50097,9 @@ export type VmwareDisksUnlinkResponses = {
49845
50097
  /**
49846
50098
  * No response body
49847
50099
  */
49848
- 200: unknown;
50100
+ 204: void;
49849
50101
  };
50102
+ export type VmwareDisksUnlinkResponse = VmwareDisksUnlinkResponses[keyof VmwareDisksUnlinkResponses];
49850
50103
  export type VmwareFoldersListData = {
49851
50104
  body?: never;
49852
50105
  path?: never;
@@ -50131,11 +50384,17 @@ export type VmwarePortsPullData = {
50131
50384
  query?: never;
50132
50385
  url: '/api/vmware-ports/{uuid}/pull/';
50133
50386
  };
50387
+ export type VmwarePortsPullErrors = {
50388
+ /**
50389
+ * No response body
50390
+ */
50391
+ 409: unknown;
50392
+ };
50134
50393
  export type VmwarePortsPullResponses = {
50135
50394
  /**
50136
50395
  * No response body
50137
50396
  */
50138
- 200: unknown;
50397
+ 202: unknown;
50139
50398
  };
50140
50399
  export type VmwarePortsUnlinkData = {
50141
50400
  body?: never;
@@ -50149,8 +50408,9 @@ export type VmwarePortsUnlinkResponses = {
50149
50408
  /**
50150
50409
  * No response body
50151
50410
  */
50152
- 200: unknown;
50411
+ 204: void;
50153
50412
  };
50413
+ export type VmwarePortsUnlinkResponse = VmwarePortsUnlinkResponses[keyof VmwarePortsUnlinkResponses];
50154
50414
  export type VmwareTemplatesListData = {
50155
50415
  body?: never;
50156
50416
  path?: never;
@@ -50403,11 +50663,17 @@ export type VmwareVirtualMachinePullData = {
50403
50663
  query?: never;
50404
50664
  url: '/api/vmware-virtual-machine/{uuid}/pull/';
50405
50665
  };
50666
+ export type VmwareVirtualMachinePullErrors = {
50667
+ /**
50668
+ * No response body
50669
+ */
50670
+ 409: unknown;
50671
+ };
50406
50672
  export type VmwareVirtualMachinePullResponses = {
50407
50673
  /**
50408
50674
  * No response body
50409
50675
  */
50410
- 200: unknown;
50676
+ 202: unknown;
50411
50677
  };
50412
50678
  export type VmwareVirtualMachineRebootGuestData = {
50413
50679
  body?: never;
@@ -50505,8 +50771,9 @@ export type VmwareVirtualMachineUnlinkResponses = {
50505
50771
  /**
50506
50772
  * No response body
50507
50773
  */
50508
- 200: unknown;
50774
+ 204: void;
50509
50775
  };
50776
+ export type VmwareVirtualMachineUnlinkResponse = VmwareVirtualMachineUnlinkResponses[keyof VmwareVirtualMachineUnlinkResponses];
50510
50777
  export type VmwareVirtualMachineWebConsoleRetrieveData = {
50511
50778
  body?: never;
50512
50779
  path: {