waldur-js-client 7.8.8-dev.6 → 7.8.8-dev.8

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;
@@ -19593,11 +19686,11 @@ export type CeleryStatsRetrieveData = {
19593
19686
  url: '/api/celery-stats/';
19594
19687
  };
19595
19688
  export type CeleryStatsRetrieveResponses = {
19596
- /**
19597
- * No response body
19598
- */
19599
- 200: unknown;
19689
+ 200: {
19690
+ [key: string]: unknown;
19691
+ };
19600
19692
  };
19693
+ export type CeleryStatsRetrieveResponse = CeleryStatsRetrieveResponses[keyof CeleryStatsRetrieveResponses];
19601
19694
  export type ChecklistsAdminListData = {
19602
19695
  body?: never;
19603
19696
  path?: never;
@@ -21047,6 +21140,9 @@ export type CustomersStatsRetrieveData = {
21047
21140
  uuid: string;
21048
21141
  };
21049
21142
  query?: {
21143
+ /**
21144
+ * If true, returns usage data for the current month only. Otherwise, returns total usage.
21145
+ */
21050
21146
  for_current_month?: boolean;
21051
21147
  };
21052
21148
  url: '/api/customers/{uuid}/stats/';
@@ -21366,11 +21462,17 @@ export type DigitaloceanDropletsPullData = {
21366
21462
  query?: never;
21367
21463
  url: '/api/digitalocean-droplets/{uuid}/pull/';
21368
21464
  };
21465
+ export type DigitaloceanDropletsPullErrors = {
21466
+ /**
21467
+ * No response body
21468
+ */
21469
+ 409: unknown;
21470
+ };
21369
21471
  export type DigitaloceanDropletsPullResponses = {
21370
21472
  /**
21371
21473
  * No response body
21372
21474
  */
21373
- 200: unknown;
21475
+ 202: unknown;
21374
21476
  };
21375
21477
  export type DigitaloceanDropletsResizeData = {
21376
21478
  body: DigitalOceanDropletResizeRequest;
@@ -21438,8 +21540,9 @@ export type DigitaloceanDropletsUnlinkResponses = {
21438
21540
  /**
21439
21541
  * No response body
21440
21542
  */
21441
- 200: unknown;
21543
+ 204: void;
21442
21544
  };
21545
+ export type DigitaloceanDropletsUnlinkResponse = DigitaloceanDropletsUnlinkResponses[keyof DigitaloceanDropletsUnlinkResponses];
21443
21546
  export type DigitaloceanImagesListData = {
21444
21547
  body?: never;
21445
21548
  path?: never;
@@ -28571,6 +28674,7 @@ export type MarketplaceProviderOfferingsListData = {
28571
28674
  allowed_customer_uuid?: string;
28572
28675
  attributes?: string;
28573
28676
  billable?: boolean;
28677
+ can_create_offering_user?: boolean;
28574
28678
  category_group_uuid?: string;
28575
28679
  category_uuid?: string;
28576
28680
  /**
@@ -28675,6 +28779,7 @@ export type MarketplaceProviderOfferingsCountData = {
28675
28779
  allowed_customer_uuid?: string;
28676
28780
  attributes?: string;
28677
28781
  billable?: boolean;
28782
+ can_create_offering_user?: boolean;
28678
28783
  category_group_uuid?: string;
28679
28784
  category_uuid?: string;
28680
28785
  /**
@@ -28902,6 +29007,7 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
28902
29007
  allowed_customer_uuid?: string;
28903
29008
  attributes?: string;
28904
29009
  billable?: boolean;
29010
+ can_create_offering_user?: boolean;
28905
29011
  category_group_uuid?: string;
28906
29012
  category_uuid?: string;
28907
29013
  /**
@@ -29016,6 +29122,7 @@ export type MarketplaceProviderOfferingsCostsListData = {
29016
29122
  allowed_customer_uuid?: string;
29017
29123
  attributes?: string;
29018
29124
  billable?: boolean;
29125
+ can_create_offering_user?: boolean;
29019
29126
  category_group_uuid?: string;
29020
29127
  category_uuid?: string;
29021
29128
  /**
@@ -29143,6 +29250,7 @@ export type MarketplaceProviderOfferingsCustomersListData = {
29143
29250
  allowed_customer_uuid?: string;
29144
29251
  attributes?: string;
29145
29252
  billable?: boolean;
29253
+ can_create_offering_user?: boolean;
29146
29254
  category_group_uuid?: string;
29147
29255
  category_uuid?: string;
29148
29256
  /**
@@ -29924,6 +30032,7 @@ export type MarketplaceProviderOfferingsGroupsListData = {
29924
30032
  allowed_customer_uuid?: string;
29925
30033
  attributes?: string;
29926
30034
  billable?: boolean;
30035
+ can_create_offering_user?: boolean;
29927
30036
  category_group_uuid?: string;
29928
30037
  category_uuid?: string;
29929
30038
  /**
@@ -30027,6 +30136,7 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
30027
30136
  allowed_customer_uuid?: string;
30028
30137
  attributes?: string;
30029
30138
  billable?: boolean;
30139
+ can_create_offering_user?: boolean;
30030
30140
  category_group_uuid?: string;
30031
30141
  category_uuid?: string;
30032
30142
  /**
@@ -30166,7 +30276,7 @@ export type MarketplaceProviderResourcesListData = {
30166
30276
  *
30167
30277
  *
30168
30278
  */
30169
- o?: Array<'-created' | '-name' | '-project_name' | '-state' | 'created' | 'name' | 'project_name' | 'state'>;
30279
+ o?: Array<'-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state'>;
30170
30280
  offering?: string;
30171
30281
  offering_billable?: boolean;
30172
30282
  /**
@@ -30280,7 +30390,7 @@ export type MarketplaceProviderResourcesCountData = {
30280
30390
  *
30281
30391
  *
30282
30392
  */
30283
- o?: Array<'-created' | '-name' | '-project_name' | '-state' | 'created' | 'name' | 'project_name' | 'state'>;
30393
+ o?: Array<'-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state'>;
30284
30394
  offering?: string;
30285
30395
  offering_billable?: boolean;
30286
30396
  /**
@@ -30743,6 +30853,7 @@ export type MarketplacePublicOfferingsListData = {
30743
30853
  allowed_customer_uuid?: string;
30744
30854
  attributes?: string;
30745
30855
  billable?: boolean;
30856
+ can_create_offering_user?: boolean;
30746
30857
  category_group_uuid?: string;
30747
30858
  category_uuid?: string;
30748
30859
  /**
@@ -30847,6 +30958,7 @@ export type MarketplacePublicOfferingsCountData = {
30847
30958
  allowed_customer_uuid?: string;
30848
30959
  attributes?: string;
30849
30960
  billable?: boolean;
30961
+ can_create_offering_user?: boolean;
30850
30962
  category_group_uuid?: string;
30851
30963
  category_uuid?: string;
30852
30964
  /**
@@ -31271,7 +31383,7 @@ export type MarketplaceResourcesListData = {
31271
31383
  *
31272
31384
  *
31273
31385
  */
31274
- o?: Array<'-created' | '-name' | '-project_name' | '-state' | 'created' | 'name' | 'project_name' | 'state'>;
31386
+ o?: Array<'-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state'>;
31275
31387
  offering?: string;
31276
31388
  offering_billable?: boolean;
31277
31389
  /**
@@ -31385,7 +31497,7 @@ export type MarketplaceResourcesCountData = {
31385
31497
  *
31386
31498
  *
31387
31499
  */
31388
- o?: Array<'-created' | '-name' | '-project_name' | '-state' | 'created' | 'name' | 'project_name' | 'state'>;
31500
+ o?: Array<'-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state'>;
31389
31501
  offering?: string;
31390
31502
  offering_billable?: boolean;
31391
31503
  /**
@@ -32647,6 +32759,7 @@ export type MarketplaceServiceProvidersOfferingsListData = {
32647
32759
  allowed_customer_uuid?: string;
32648
32760
  attributes?: string;
32649
32761
  billable?: boolean;
32762
+ can_create_offering_user?: boolean;
32650
32763
  category_group_uuid?: string;
32651
32764
  category_uuid?: string;
32652
32765
  /**
@@ -36384,11 +36497,17 @@ export type OpenportalAllocationsPullData = {
36384
36497
  query?: never;
36385
36498
  url: '/api/openportal-allocations/{uuid}/pull/';
36386
36499
  };
36500
+ export type OpenportalAllocationsPullErrors = {
36501
+ /**
36502
+ * No response body
36503
+ */
36504
+ 409: unknown;
36505
+ };
36387
36506
  export type OpenportalAllocationsPullResponses = {
36388
36507
  /**
36389
36508
  * No response body
36390
36509
  */
36391
- 200: unknown;
36510
+ 202: unknown;
36392
36511
  };
36393
36512
  export type OpenportalAllocationsSetLimitsData = {
36394
36513
  body: AllocationSetLimitsRequest;
@@ -36414,8 +36533,9 @@ export type OpenportalAllocationsUnlinkResponses = {
36414
36533
  /**
36415
36534
  * No response body
36416
36535
  */
36417
- 200: unknown;
36536
+ 204: void;
36418
36537
  };
36538
+ export type OpenportalAllocationsUnlinkResponse = OpenportalAllocationsUnlinkResponses[keyof OpenportalAllocationsUnlinkResponses];
36419
36539
  export type OpenportalAssociationsListData = {
36420
36540
  body?: never;
36421
36541
  path?: never;
@@ -37079,11 +37199,17 @@ export type OpenportalRemoteAllocationsPullData = {
37079
37199
  query?: never;
37080
37200
  url: '/api/openportal-remote-allocations/{uuid}/pull/';
37081
37201
  };
37202
+ export type OpenportalRemoteAllocationsPullErrors = {
37203
+ /**
37204
+ * No response body
37205
+ */
37206
+ 409: unknown;
37207
+ };
37082
37208
  export type OpenportalRemoteAllocationsPullResponses = {
37083
37209
  /**
37084
37210
  * No response body
37085
37211
  */
37086
- 200: unknown;
37212
+ 202: unknown;
37087
37213
  };
37088
37214
  export type OpenportalRemoteAllocationsSetLimitsData = {
37089
37215
  body: RemoteAllocationSetLimitsRequest;
@@ -37109,8 +37235,9 @@ export type OpenportalRemoteAllocationsUnlinkResponses = {
37109
37235
  /**
37110
37236
  * No response body
37111
37237
  */
37112
- 200: unknown;
37238
+ 204: void;
37113
37239
  };
37240
+ export type OpenportalRemoteAllocationsUnlinkResponse = OpenportalRemoteAllocationsUnlinkResponses[keyof OpenportalRemoteAllocationsUnlinkResponses];
37114
37241
  export type OpenportalRemoteAssociationsListData = {
37115
37242
  body?: never;
37116
37243
  path?: never;
@@ -37544,6 +37671,9 @@ export type OpenportalUnmanagedProjectsStatsRetrieveData = {
37544
37671
  uuid: string;
37545
37672
  };
37546
37673
  query?: {
37674
+ /**
37675
+ * If true, returns usage data for the current month only. Otherwise, returns total usage.
37676
+ */
37547
37677
  for_current_month?: boolean;
37548
37678
  };
37549
37679
  url: '/api/openportal-unmanaged-projects/{uuid}/stats/';
@@ -37919,11 +38049,17 @@ export type OpenstackBackupsPullData = {
37919
38049
  query?: never;
37920
38050
  url: '/api/openstack-backups/{uuid}/pull/';
37921
38051
  };
38052
+ export type OpenstackBackupsPullErrors = {
38053
+ /**
38054
+ * No response body
38055
+ */
38056
+ 409: unknown;
38057
+ };
37922
38058
  export type OpenstackBackupsPullResponses = {
37923
38059
  /**
37924
38060
  * No response body
37925
38061
  */
37926
- 200: unknown;
38062
+ 202: unknown;
37927
38063
  };
37928
38064
  export type OpenstackBackupsRestoreData = {
37929
38065
  body: OpenStackBackupRestorationCreateRequest;
@@ -37949,8 +38085,9 @@ export type OpenstackBackupsUnlinkResponses = {
37949
38085
  /**
37950
38086
  * No response body
37951
38087
  */
37952
- 200: unknown;
38088
+ 204: void;
37953
38089
  };
38090
+ export type OpenstackBackupsUnlinkResponse = OpenstackBackupsUnlinkResponses[keyof OpenstackBackupsUnlinkResponses];
37954
38091
  export type OpenstackFlavorsListData = {
37955
38092
  body?: never;
37956
38093
  path?: never;
@@ -38234,11 +38371,17 @@ export type OpenstackFloatingIpsPullData = {
38234
38371
  query?: never;
38235
38372
  url: '/api/openstack-floating-ips/{uuid}/pull/';
38236
38373
  };
38374
+ export type OpenstackFloatingIpsPullErrors = {
38375
+ /**
38376
+ * No response body
38377
+ */
38378
+ 409: unknown;
38379
+ };
38237
38380
  export type OpenstackFloatingIpsPullResponses = {
38238
38381
  /**
38239
38382
  * No response body
38240
38383
  */
38241
- 200: unknown;
38384
+ 202: unknown;
38242
38385
  };
38243
38386
  export type OpenstackFloatingIpsUnlinkData = {
38244
38387
  body?: never;
@@ -38252,8 +38395,9 @@ export type OpenstackFloatingIpsUnlinkResponses = {
38252
38395
  /**
38253
38396
  * No response body
38254
38397
  */
38255
- 200: unknown;
38398
+ 204: void;
38256
38399
  };
38400
+ export type OpenstackFloatingIpsUnlinkResponse = OpenstackFloatingIpsUnlinkResponses[keyof OpenstackFloatingIpsUnlinkResponses];
38257
38401
  export type OpenstackFloatingIpsUpdateDescriptionData = {
38258
38402
  body?: OpenStackFloatingIpDescriptionUpdateRequest;
38259
38403
  path: {
@@ -38661,11 +38805,17 @@ export type OpenstackInstancesPullData = {
38661
38805
  query?: never;
38662
38806
  url: '/api/openstack-instances/{uuid}/pull/';
38663
38807
  };
38808
+ export type OpenstackInstancesPullErrors = {
38809
+ /**
38810
+ * No response body
38811
+ */
38812
+ 409: unknown;
38813
+ };
38664
38814
  export type OpenstackInstancesPullResponses = {
38665
38815
  /**
38666
38816
  * No response body
38667
38817
  */
38668
- 200: unknown;
38818
+ 202: unknown;
38669
38819
  };
38670
38820
  export type OpenstackInstancesRestartData = {
38671
38821
  body?: never;
@@ -38721,8 +38871,9 @@ export type OpenstackInstancesUnlinkResponses = {
38721
38871
  /**
38722
38872
  * No response body
38723
38873
  */
38724
- 200: unknown;
38874
+ 204: void;
38725
38875
  };
38876
+ export type OpenstackInstancesUnlinkResponse = OpenstackInstancesUnlinkResponses[keyof OpenstackInstancesUnlinkResponses];
38726
38877
  export type OpenstackInstancesUpdateAllowedAddressPairsData = {
38727
38878
  body: OpenStackInstanceAllowedAddressPairsUpdateRequest;
38728
38879
  path: {
@@ -39320,11 +39471,17 @@ export type OpenstackNetworksPullData = {
39320
39471
  query?: never;
39321
39472
  url: '/api/openstack-networks/{uuid}/pull/';
39322
39473
  };
39474
+ export type OpenstackNetworksPullErrors = {
39475
+ /**
39476
+ * No response body
39477
+ */
39478
+ 409: unknown;
39479
+ };
39323
39480
  export type OpenstackNetworksPullResponses = {
39324
39481
  /**
39325
39482
  * No response body
39326
39483
  */
39327
- 200: unknown;
39484
+ 202: unknown;
39328
39485
  };
39329
39486
  export type OpenstackNetworksRbacPolicyCreateData = {
39330
39487
  body: DeprecatedNetworkRbacPolicyRequest;
@@ -39381,8 +39538,9 @@ export type OpenstackNetworksUnlinkResponses = {
39381
39538
  /**
39382
39539
  * No response body
39383
39540
  */
39384
- 200: unknown;
39541
+ 204: void;
39385
39542
  };
39543
+ export type OpenstackNetworksUnlinkResponse = OpenstackNetworksUnlinkResponses[keyof OpenstackNetworksUnlinkResponses];
39386
39544
  export type OpenstackPortsListData = {
39387
39545
  body?: never;
39388
39546
  path?: never;
@@ -39631,11 +39789,17 @@ export type OpenstackPortsPullData = {
39631
39789
  query?: never;
39632
39790
  url: '/api/openstack-ports/{uuid}/pull/';
39633
39791
  };
39792
+ export type OpenstackPortsPullErrors = {
39793
+ /**
39794
+ * No response body
39795
+ */
39796
+ 409: unknown;
39797
+ };
39634
39798
  export type OpenstackPortsPullResponses = {
39635
39799
  /**
39636
39800
  * No response body
39637
39801
  */
39638
- 200: unknown;
39802
+ 202: unknown;
39639
39803
  };
39640
39804
  export type OpenstackPortsUnlinkData = {
39641
39805
  body?: never;
@@ -39649,8 +39813,9 @@ export type OpenstackPortsUnlinkResponses = {
39649
39813
  /**
39650
39814
  * No response body
39651
39815
  */
39652
- 200: unknown;
39816
+ 204: void;
39653
39817
  };
39818
+ export type OpenstackPortsUnlinkResponse = OpenstackPortsUnlinkResponses[keyof OpenstackPortsUnlinkResponses];
39654
39819
  export type OpenstackPortsUpdatePortIpData = {
39655
39820
  body: OpenStackPortIpUpdateRequest;
39656
39821
  path: {
@@ -39963,11 +40128,17 @@ export type OpenstackSecurityGroupsPullData = {
39963
40128
  query?: never;
39964
40129
  url: '/api/openstack-security-groups/{uuid}/pull/';
39965
40130
  };
40131
+ export type OpenstackSecurityGroupsPullErrors = {
40132
+ /**
40133
+ * No response body
40134
+ */
40135
+ 409: unknown;
40136
+ };
39966
40137
  export type OpenstackSecurityGroupsPullResponses = {
39967
40138
  /**
39968
40139
  * No response body
39969
40140
  */
39970
- 200: unknown;
40141
+ 202: unknown;
39971
40142
  };
39972
40143
  export type OpenstackSecurityGroupsSetRulesData = {
39973
40144
  body: Array<OpenStackSecurityGroupRuleUpdateRequest>;
@@ -39995,8 +40166,9 @@ export type OpenstackSecurityGroupsUnlinkResponses = {
39995
40166
  /**
39996
40167
  * No response body
39997
40168
  */
39998
- 200: unknown;
40169
+ 204: void;
39999
40170
  };
40171
+ export type OpenstackSecurityGroupsUnlinkResponse = OpenstackSecurityGroupsUnlinkResponses[keyof OpenstackSecurityGroupsUnlinkResponses];
40000
40172
  export type OpenstackServerGroupsListData = {
40001
40173
  body?: never;
40002
40174
  path?: never;
@@ -40155,11 +40327,17 @@ export type OpenstackServerGroupsPullData = {
40155
40327
  query?: never;
40156
40328
  url: '/api/openstack-server-groups/{uuid}/pull/';
40157
40329
  };
40330
+ export type OpenstackServerGroupsPullErrors = {
40331
+ /**
40332
+ * No response body
40333
+ */
40334
+ 409: unknown;
40335
+ };
40158
40336
  export type OpenstackServerGroupsPullResponses = {
40159
40337
  /**
40160
40338
  * No response body
40161
40339
  */
40162
- 200: unknown;
40340
+ 202: unknown;
40163
40341
  };
40164
40342
  export type OpenstackServerGroupsUnlinkData = {
40165
40343
  body?: never;
@@ -40173,8 +40351,9 @@ export type OpenstackServerGroupsUnlinkResponses = {
40173
40351
  /**
40174
40352
  * No response body
40175
40353
  */
40176
- 200: unknown;
40354
+ 204: void;
40177
40355
  };
40356
+ export type OpenstackServerGroupsUnlinkResponse = OpenstackServerGroupsUnlinkResponses[keyof OpenstackServerGroupsUnlinkResponses];
40178
40357
  export type OpenstackSnapshotsListData = {
40179
40358
  body?: never;
40180
40359
  path?: never;
@@ -40333,11 +40512,17 @@ export type OpenstackSnapshotsPullData = {
40333
40512
  query?: never;
40334
40513
  url: '/api/openstack-snapshots/{uuid}/pull/';
40335
40514
  };
40515
+ export type OpenstackSnapshotsPullErrors = {
40516
+ /**
40517
+ * No response body
40518
+ */
40519
+ 409: unknown;
40520
+ };
40336
40521
  export type OpenstackSnapshotsPullResponses = {
40337
40522
  /**
40338
40523
  * No response body
40339
40524
  */
40340
- 200: unknown;
40525
+ 202: unknown;
40341
40526
  };
40342
40527
  export type OpenstackSnapshotsRestorationsListData = {
40343
40528
  body?: never;
@@ -40384,8 +40569,9 @@ export type OpenstackSnapshotsUnlinkResponses = {
40384
40569
  /**
40385
40570
  * No response body
40386
40571
  */
40387
- 200: unknown;
40572
+ 204: void;
40388
40573
  };
40574
+ export type OpenstackSnapshotsUnlinkResponse = OpenstackSnapshotsUnlinkResponses[keyof OpenstackSnapshotsUnlinkResponses];
40389
40575
  export type OpenstackSubnetsListData = {
40390
40576
  body?: never;
40391
40577
  path?: never;
@@ -40598,11 +40784,17 @@ export type OpenstackSubnetsPullData = {
40598
40784
  query?: never;
40599
40785
  url: '/api/openstack-subnets/{uuid}/pull/';
40600
40786
  };
40787
+ export type OpenstackSubnetsPullErrors = {
40788
+ /**
40789
+ * No response body
40790
+ */
40791
+ 409: unknown;
40792
+ };
40601
40793
  export type OpenstackSubnetsPullResponses = {
40602
40794
  /**
40603
40795
  * No response body
40604
40796
  */
40605
- 200: unknown;
40797
+ 202: unknown;
40606
40798
  };
40607
40799
  export type OpenstackSubnetsUnlinkData = {
40608
40800
  body?: never;
@@ -40616,8 +40808,9 @@ export type OpenstackSubnetsUnlinkResponses = {
40616
40808
  /**
40617
40809
  * No response body
40618
40810
  */
40619
- 200: unknown;
40811
+ 204: void;
40620
40812
  };
40813
+ export type OpenstackSubnetsUnlinkResponse = OpenstackSubnetsUnlinkResponses[keyof OpenstackSubnetsUnlinkResponses];
40621
40814
  export type OpenstackTenantsListData = {
40622
40815
  body?: never;
40623
40816
  path?: never;
@@ -40918,11 +41111,17 @@ export type OpenstackTenantsPullData = {
40918
41111
  query?: never;
40919
41112
  url: '/api/openstack-tenants/{uuid}/pull/';
40920
41113
  };
41114
+ export type OpenstackTenantsPullErrors = {
41115
+ /**
41116
+ * No response body
41117
+ */
41118
+ 409: unknown;
41119
+ };
40921
41120
  export type OpenstackTenantsPullResponses = {
40922
41121
  /**
40923
41122
  * No response body
40924
41123
  */
40925
- 200: unknown;
41124
+ 202: unknown;
40926
41125
  };
40927
41126
  export type OpenstackTenantsPullFloatingIpsData = {
40928
41127
  body?: never;
@@ -41000,8 +41199,9 @@ export type OpenstackTenantsUnlinkResponses = {
41000
41199
  /**
41001
41200
  * No response body
41002
41201
  */
41003
- 200: unknown;
41202
+ 204: void;
41004
41203
  };
41204
+ export type OpenstackTenantsUnlinkResponse = OpenstackTenantsUnlinkResponses[keyof OpenstackTenantsUnlinkResponses];
41005
41205
  export type OpenstackVolumeAvailabilityZonesListData = {
41006
41206
  body?: never;
41007
41207
  path?: never;
@@ -41343,11 +41543,17 @@ export type OpenstackVolumesPullData = {
41343
41543
  query?: never;
41344
41544
  url: '/api/openstack-volumes/{uuid}/pull/';
41345
41545
  };
41546
+ export type OpenstackVolumesPullErrors = {
41547
+ /**
41548
+ * No response body
41549
+ */
41550
+ 409: unknown;
41551
+ };
41346
41552
  export type OpenstackVolumesPullResponses = {
41347
41553
  /**
41348
41554
  * No response body
41349
41555
  */
41350
- 200: unknown;
41556
+ 202: unknown;
41351
41557
  };
41352
41558
  export type OpenstackVolumesRetypeData = {
41353
41559
  body: OpenStackVolumeRetypeRequest;
@@ -41387,8 +41593,9 @@ export type OpenstackVolumesUnlinkResponses = {
41387
41593
  /**
41388
41594
  * No response body
41389
41595
  */
41390
- 200: unknown;
41596
+ 204: void;
41391
41597
  };
41598
+ export type OpenstackVolumesUnlinkResponse = OpenstackVolumesUnlinkResponses[keyof OpenstackVolumesUnlinkResponses];
41392
41599
  export type OrganizationGroupsListData = {
41393
41600
  body?: never;
41394
41601
  path?: never;
@@ -42552,6 +42759,9 @@ export type ProjectsStatsRetrieveData = {
42552
42759
  uuid: string;
42553
42760
  };
42554
42761
  query?: {
42762
+ /**
42763
+ * If true, returns usage data for the current month only. Otherwise, returns total usage.
42764
+ */
42555
42765
  for_current_month?: boolean;
42556
42766
  };
42557
42767
  url: '/api/projects/{uuid}/stats/';
@@ -44850,11 +45060,17 @@ export type RancherAppsPullData = {
44850
45060
  query?: never;
44851
45061
  url: '/api/rancher-apps/{uuid}/pull/';
44852
45062
  };
45063
+ export type RancherAppsPullErrors = {
45064
+ /**
45065
+ * No response body
45066
+ */
45067
+ 409: unknown;
45068
+ };
44853
45069
  export type RancherAppsPullResponses = {
44854
45070
  /**
44855
45071
  * No response body
44856
45072
  */
44857
- 200: unknown;
45073
+ 202: unknown;
44858
45074
  };
44859
45075
  export type RancherAppsUnlinkData = {
44860
45076
  body?: never;
@@ -44868,8 +45084,9 @@ export type RancherAppsUnlinkResponses = {
44868
45084
  /**
44869
45085
  * No response body
44870
45086
  */
44871
- 200: unknown;
45087
+ 204: void;
44872
45088
  };
45089
+ export type RancherAppsUnlinkResponse = RancherAppsUnlinkResponses[keyof RancherAppsUnlinkResponses];
44873
45090
  export type RancherCatalogsListData = {
44874
45091
  body?: never;
44875
45092
  path?: never;
@@ -45270,11 +45487,17 @@ export type RancherClustersPullData = {
45270
45487
  query?: never;
45271
45488
  url: '/api/rancher-clusters/{uuid}/pull/';
45272
45489
  };
45490
+ export type RancherClustersPullErrors = {
45491
+ /**
45492
+ * No response body
45493
+ */
45494
+ 409: unknown;
45495
+ };
45273
45496
  export type RancherClustersPullResponses = {
45274
45497
  /**
45275
45498
  * No response body
45276
45499
  */
45277
- 200: unknown;
45500
+ 202: unknown;
45278
45501
  };
45279
45502
  export type RancherClustersUnlinkData = {
45280
45503
  body?: never;
@@ -45288,8 +45511,9 @@ export type RancherClustersUnlinkResponses = {
45288
45511
  /**
45289
45512
  * No response body
45290
45513
  */
45291
- 200: unknown;
45514
+ 204: void;
45292
45515
  };
45516
+ export type RancherClustersUnlinkResponse = RancherClustersUnlinkResponses[keyof RancherClustersUnlinkResponses];
45293
45517
  export type RancherHpasListData = {
45294
45518
  body?: never;
45295
45519
  path?: never;
@@ -45415,11 +45639,17 @@ export type RancherHpasPullData = {
45415
45639
  query?: never;
45416
45640
  url: '/api/rancher-hpas/{uuid}/pull/';
45417
45641
  };
45642
+ export type RancherHpasPullErrors = {
45643
+ /**
45644
+ * No response body
45645
+ */
45646
+ 409: unknown;
45647
+ };
45418
45648
  export type RancherHpasPullResponses = {
45419
45649
  /**
45420
45650
  * No response body
45421
45651
  */
45422
- 200: unknown;
45652
+ 202: unknown;
45423
45653
  };
45424
45654
  export type RancherHpasUnlinkData = {
45425
45655
  body?: never;
@@ -45433,8 +45663,9 @@ export type RancherHpasUnlinkResponses = {
45433
45663
  /**
45434
45664
  * No response body
45435
45665
  */
45436
- 200: unknown;
45666
+ 204: void;
45437
45667
  };
45668
+ export type RancherHpasUnlinkResponse = RancherHpasUnlinkResponses[keyof RancherHpasUnlinkResponses];
45438
45669
  export type RancherHpasYamlRetrieveData = {
45439
45670
  body?: never;
45440
45671
  path: {
@@ -45619,11 +45850,17 @@ export type RancherIngressesPullData = {
45619
45850
  query?: never;
45620
45851
  url: '/api/rancher-ingresses/{uuid}/pull/';
45621
45852
  };
45853
+ export type RancherIngressesPullErrors = {
45854
+ /**
45855
+ * No response body
45856
+ */
45857
+ 409: unknown;
45858
+ };
45622
45859
  export type RancherIngressesPullResponses = {
45623
45860
  /**
45624
45861
  * No response body
45625
45862
  */
45626
- 200: unknown;
45863
+ 202: unknown;
45627
45864
  };
45628
45865
  export type RancherIngressesUnlinkData = {
45629
45866
  body?: never;
@@ -45637,8 +45874,9 @@ export type RancherIngressesUnlinkResponses = {
45637
45874
  /**
45638
45875
  * No response body
45639
45876
  */
45640
- 200: unknown;
45877
+ 204: void;
45641
45878
  };
45879
+ export type RancherIngressesUnlinkResponse = RancherIngressesUnlinkResponses[keyof RancherIngressesUnlinkResponses];
45642
45880
  export type RancherIngressesYamlRetrieveData = {
45643
45881
  body?: never;
45644
45882
  path: {
@@ -45874,11 +46112,17 @@ export type RancherNodesPullData = {
45874
46112
  query?: never;
45875
46113
  url: '/api/rancher-nodes/{uuid}/pull/';
45876
46114
  };
46115
+ export type RancherNodesPullErrors = {
46116
+ /**
46117
+ * No response body
46118
+ */
46119
+ 409: unknown;
46120
+ };
45877
46121
  export type RancherNodesPullResponses = {
45878
46122
  /**
45879
46123
  * No response body
45880
46124
  */
45881
- 200: unknown;
46125
+ 202: unknown;
45882
46126
  };
45883
46127
  export type RancherNodesUnlinkData = {
45884
46128
  body?: never;
@@ -45892,8 +46136,9 @@ export type RancherNodesUnlinkResponses = {
45892
46136
  /**
45893
46137
  * No response body
45894
46138
  */
45895
- 200: unknown;
46139
+ 204: void;
45896
46140
  };
46141
+ export type RancherNodesUnlinkResponse = RancherNodesUnlinkResponses[keyof RancherNodesUnlinkResponses];
45897
46142
  export type RancherNodesUnlinkOpenstackData = {
45898
46143
  body?: never;
45899
46144
  path: {
@@ -46212,11 +46457,17 @@ export type RancherServicesPullData = {
46212
46457
  query?: never;
46213
46458
  url: '/api/rancher-services/{uuid}/pull/';
46214
46459
  };
46460
+ export type RancherServicesPullErrors = {
46461
+ /**
46462
+ * No response body
46463
+ */
46464
+ 409: unknown;
46465
+ };
46215
46466
  export type RancherServicesPullResponses = {
46216
46467
  /**
46217
46468
  * No response body
46218
46469
  */
46219
- 200: unknown;
46470
+ 202: unknown;
46220
46471
  };
46221
46472
  export type RancherServicesUnlinkData = {
46222
46473
  body?: never;
@@ -46230,8 +46481,9 @@ export type RancherServicesUnlinkResponses = {
46230
46481
  /**
46231
46482
  * No response body
46232
46483
  */
46233
- 200: unknown;
46484
+ 204: void;
46234
46485
  };
46486
+ export type RancherServicesUnlinkResponse = RancherServicesUnlinkResponses[keyof RancherServicesUnlinkResponses];
46235
46487
  export type RancherServicesYamlRetrieveData = {
46236
46488
  body?: never;
46237
46489
  path: {
@@ -47353,11 +47605,17 @@ export type SlurmAllocationsPullData = {
47353
47605
  query?: never;
47354
47606
  url: '/api/slurm-allocations/{uuid}/pull/';
47355
47607
  };
47608
+ export type SlurmAllocationsPullErrors = {
47609
+ /**
47610
+ * No response body
47611
+ */
47612
+ 409: unknown;
47613
+ };
47356
47614
  export type SlurmAllocationsPullResponses = {
47357
47615
  /**
47358
47616
  * No response body
47359
47617
  */
47360
- 200: unknown;
47618
+ 202: unknown;
47361
47619
  };
47362
47620
  export type SlurmAllocationsSetLimitsData = {
47363
47621
  body: SlurmAllocationSetLimitsRequest;
@@ -47383,8 +47641,9 @@ export type SlurmAllocationsUnlinkResponses = {
47383
47641
  /**
47384
47642
  * No response body
47385
47643
  */
47386
- 200: unknown;
47644
+ 204: void;
47387
47645
  };
47646
+ export type SlurmAllocationsUnlinkResponse = SlurmAllocationsUnlinkResponses[keyof SlurmAllocationsUnlinkResponses];
47388
47647
  export type SlurmAssociationsListData = {
47389
47648
  body?: never;
47390
47649
  path?: never;
@@ -47553,11 +47812,17 @@ export type SlurmJobsPullData = {
47553
47812
  query?: never;
47554
47813
  url: '/api/slurm-jobs/{uuid}/pull/';
47555
47814
  };
47815
+ export type SlurmJobsPullErrors = {
47816
+ /**
47817
+ * No response body
47818
+ */
47819
+ 409: unknown;
47820
+ };
47556
47821
  export type SlurmJobsPullResponses = {
47557
47822
  /**
47558
47823
  * No response body
47559
47824
  */
47560
- 200: unknown;
47825
+ 202: unknown;
47561
47826
  };
47562
47827
  export type SlurmJobsUnlinkData = {
47563
47828
  body?: never;
@@ -47571,8 +47836,9 @@ export type SlurmJobsUnlinkResponses = {
47571
47836
  /**
47572
47837
  * No response body
47573
47838
  */
47574
- 200: unknown;
47839
+ 204: void;
47575
47840
  };
47841
+ export type SlurmJobsUnlinkResponse = SlurmJobsUnlinkResponses[keyof SlurmJobsUnlinkResponses];
47576
47842
  export type SupportAttachmentsListData = {
47577
47843
  body?: never;
47578
47844
  path?: never;
@@ -48879,7 +49145,7 @@ export type UserInvitationsCancelData = {
48879
49145
  };
48880
49146
  export type UserInvitationsCancelResponses = {
48881
49147
  /**
48882
- * No response body
49148
+ * Invitation has been successfully canceled.
48883
49149
  */
48884
49150
  200: unknown;
48885
49151
  };
@@ -49040,9 +49306,11 @@ export type UserPermissionRequestsApproveData = {
49040
49306
  url: '/api/user-permission-requests/{uuid}/approve/';
49041
49307
  };
49042
49308
  export type UserPermissionRequestsApproveResponses = {
49043
- 200: ReviewComment;
49309
+ /**
49310
+ * No response body
49311
+ */
49312
+ 200: unknown;
49044
49313
  };
49045
- export type UserPermissionRequestsApproveResponse = UserPermissionRequestsApproveResponses[keyof UserPermissionRequestsApproveResponses];
49046
49314
  export type UserPermissionRequestsCancelRequestData = {
49047
49315
  body?: never;
49048
49316
  path: {
@@ -49064,9 +49332,11 @@ export type UserPermissionRequestsRejectData = {
49064
49332
  url: '/api/user-permission-requests/{uuid}/reject/';
49065
49333
  };
49066
49334
  export type UserPermissionRequestsRejectResponses = {
49067
- 200: ReviewComment;
49335
+ /**
49336
+ * No response body
49337
+ */
49338
+ 200: unknown;
49068
49339
  };
49069
- export type UserPermissionRequestsRejectResponse = UserPermissionRequestsRejectResponses[keyof UserPermissionRequestsRejectResponses];
49070
49340
  export type UserPermissionsListData = {
49071
49341
  body?: never;
49072
49342
  path?: never;
@@ -49827,11 +50097,17 @@ export type VmwareDisksPullData = {
49827
50097
  query?: never;
49828
50098
  url: '/api/vmware-disks/{uuid}/pull/';
49829
50099
  };
50100
+ export type VmwareDisksPullErrors = {
50101
+ /**
50102
+ * No response body
50103
+ */
50104
+ 409: unknown;
50105
+ };
49830
50106
  export type VmwareDisksPullResponses = {
49831
50107
  /**
49832
50108
  * No response body
49833
50109
  */
49834
- 200: unknown;
50110
+ 202: unknown;
49835
50111
  };
49836
50112
  export type VmwareDisksUnlinkData = {
49837
50113
  body?: never;
@@ -49845,8 +50121,9 @@ export type VmwareDisksUnlinkResponses = {
49845
50121
  /**
49846
50122
  * No response body
49847
50123
  */
49848
- 200: unknown;
50124
+ 204: void;
49849
50125
  };
50126
+ export type VmwareDisksUnlinkResponse = VmwareDisksUnlinkResponses[keyof VmwareDisksUnlinkResponses];
49850
50127
  export type VmwareFoldersListData = {
49851
50128
  body?: never;
49852
50129
  path?: never;
@@ -50131,11 +50408,17 @@ export type VmwarePortsPullData = {
50131
50408
  query?: never;
50132
50409
  url: '/api/vmware-ports/{uuid}/pull/';
50133
50410
  };
50411
+ export type VmwarePortsPullErrors = {
50412
+ /**
50413
+ * No response body
50414
+ */
50415
+ 409: unknown;
50416
+ };
50134
50417
  export type VmwarePortsPullResponses = {
50135
50418
  /**
50136
50419
  * No response body
50137
50420
  */
50138
- 200: unknown;
50421
+ 202: unknown;
50139
50422
  };
50140
50423
  export type VmwarePortsUnlinkData = {
50141
50424
  body?: never;
@@ -50149,8 +50432,9 @@ export type VmwarePortsUnlinkResponses = {
50149
50432
  /**
50150
50433
  * No response body
50151
50434
  */
50152
- 200: unknown;
50435
+ 204: void;
50153
50436
  };
50437
+ export type VmwarePortsUnlinkResponse = VmwarePortsUnlinkResponses[keyof VmwarePortsUnlinkResponses];
50154
50438
  export type VmwareTemplatesListData = {
50155
50439
  body?: never;
50156
50440
  path?: never;
@@ -50403,11 +50687,17 @@ export type VmwareVirtualMachinePullData = {
50403
50687
  query?: never;
50404
50688
  url: '/api/vmware-virtual-machine/{uuid}/pull/';
50405
50689
  };
50690
+ export type VmwareVirtualMachinePullErrors = {
50691
+ /**
50692
+ * No response body
50693
+ */
50694
+ 409: unknown;
50695
+ };
50406
50696
  export type VmwareVirtualMachinePullResponses = {
50407
50697
  /**
50408
50698
  * No response body
50409
50699
  */
50410
- 200: unknown;
50700
+ 202: unknown;
50411
50701
  };
50412
50702
  export type VmwareVirtualMachineRebootGuestData = {
50413
50703
  body?: never;
@@ -50505,8 +50795,9 @@ export type VmwareVirtualMachineUnlinkResponses = {
50505
50795
  /**
50506
50796
  * No response body
50507
50797
  */
50508
- 200: unknown;
50798
+ 204: void;
50509
50799
  };
50800
+ export type VmwareVirtualMachineUnlinkResponse = VmwareVirtualMachineUnlinkResponses[keyof VmwareVirtualMachineUnlinkResponses];
50510
50801
  export type VmwareVirtualMachineWebConsoleRetrieveData = {
50511
50802
  body?: never;
50512
50803
  path: {