waldur-js-client 8.0.9-dev.29 → 8.0.9-dev.30

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.
@@ -37,6 +37,12 @@ export type AccessorUser = {
37
37
  };
38
38
  export type AccountNameGenerationPolicyEnum = 'project_slug';
39
39
  export type ActionTakenEnum = 'allow' | 'flag' | 'warn' | 'redact' | 'block';
40
+ export type ActiveAgentTask = {
41
+ id: string;
42
+ name: string;
43
+ args?: Array<string>;
44
+ worker: string;
45
+ };
40
46
  export type ActiveQueriesStats = {
41
47
  /**
42
48
  * Number of currently active queries
@@ -447,45 +453,61 @@ export type AgentServiceStatus = {
447
453
  */
448
454
  readonly modified: string;
449
455
  };
456
+ export type AgentStatsBackendType = {
457
+ backend_type: string | null;
458
+ count: number;
459
+ };
460
+ export type AgentStatsIdentities = {
461
+ total: number;
462
+ by_offering: Array<AgentStatsOfferingCount>;
463
+ };
464
+ export type AgentStatsOfferingCount = {
465
+ offering__name: string;
466
+ offering__uuid: string;
467
+ count: number;
468
+ };
469
+ export type AgentStatsProcessors = {
470
+ total: number;
471
+ by_backend_type: Array<AgentStatsBackendType>;
472
+ stale_count: number;
473
+ };
450
474
  export type AgentStatsResponse = {
451
475
  /**
452
476
  * Statistics about agent identities
453
477
  */
454
- identities: {
455
- [key: string]: unknown;
456
- };
478
+ identities: AgentStatsIdentities;
457
479
  /**
458
480
  * Statistics about agent services
459
481
  */
460
- services: {
461
- [key: string]: unknown;
462
- };
482
+ services: AgentStatsServices;
463
483
  /**
464
484
  * Statistics about agent processors
465
485
  */
466
- processors: {
467
- [key: string]: unknown;
468
- };
486
+ processors: AgentStatsProcessors;
487
+ };
488
+ export type AgentStatsServices = {
489
+ total: number;
490
+ by_state: AgentStatsServicesState;
491
+ stale_count: number;
492
+ };
493
+ export type AgentStatsServicesState = {
494
+ active: number;
495
+ idle: number;
496
+ error: number;
469
497
  };
470
498
  export type AgentTaskStatsResponse = {
471
499
  /**
472
500
  * Currently running agent-related tasks
473
501
  */
474
- active_tasks: Array<{
475
- [key: string]: unknown;
476
- }>;
502
+ active_tasks: Array<ActiveAgentTask>;
477
503
  /**
478
504
  * Scheduled agent-related tasks
479
505
  */
480
- scheduled_tasks: Array<{
481
- [key: string]: unknown;
482
- }>;
506
+ scheduled_tasks: Array<ScheduledAgentTask>;
483
507
  /**
484
508
  * Reserved agent-related tasks
485
509
  */
486
- reserved_tasks: Array<{
487
- [key: string]: unknown;
488
- }>;
510
+ reserved_tasks: Array<ReservedAgentTask>;
489
511
  /**
490
512
  * Error message if task inspection failed
491
513
  */
@@ -572,9 +594,7 @@ export type AllocationCandidatesResponse = {
572
594
  * Placement's per-provider summary: maps resource_provider_uuid → {resources: {CLASS: {used, capacity}, ...}, traits: [...]}.
573
595
  */
574
596
  provider_summaries: {
575
- [key: string]: {
576
- [key: string]: unknown;
577
- };
597
+ [key: string]: ProviderSummary;
578
598
  };
579
599
  };
580
600
  export type AllocationRequest = {
@@ -585,9 +605,6 @@ export type AllocationRequest = {
585
605
  node_limit?: number;
586
606
  groupname?: string | null;
587
607
  };
588
- export type AllocationSetLimits = {
589
- node_limit: number;
590
- };
591
608
  export type AllocationSetLimitsRequest = {
592
609
  node_limit: number;
593
610
  };
@@ -735,15 +752,11 @@ export type AnonymousChatKpiResponse = {
735
752
  /**
736
753
  * Per-day query counts across the filter window.
737
754
  */
738
- daily_volume?: Array<{
739
- [key: string]: unknown;
740
- }>;
755
+ daily_volume?: Array<DailyVolume>;
741
756
  /**
742
757
  * Stacked-bar input. Shape: {labels: [iso-date], series: {NONE: [...], LOW: [...], MEDIUM: [...], HIGH: [...], CRITICAL: [...]}}
743
758
  */
744
- severity_by_day?: {
745
- [key: string]: unknown;
746
- };
759
+ severity_by_day?: SeverityByDay;
747
760
  };
748
761
  export type AnonymousChatStreamRequestRequest = {
749
762
  /**
@@ -1031,6 +1044,9 @@ export type ArrowCredentialsValidationResponse = {
1031
1044
  valid: boolean;
1032
1045
  message?: string;
1033
1046
  error?: string;
1047
+ /**
1048
+ * Raw partner info data from Arrow API
1049
+ */
1034
1050
  partner_info?: {
1035
1051
  [key: string]: unknown;
1036
1052
  };
@@ -1286,6 +1302,12 @@ export type ArrowSettingsRequest = {
1286
1302
  */
1287
1303
  invoice_item_prefix?: string;
1288
1304
  };
1305
+ export type ArrowSyncError = {
1306
+ error?: string;
1307
+ period?: string;
1308
+ subscription_id?: string;
1309
+ customer_id?: string;
1310
+ };
1289
1311
  export type ArrowVendorOfferingMapping = {
1290
1312
  readonly uuid: string;
1291
1313
  readonly url: string;
@@ -1903,11 +1925,18 @@ export type AvailableExternalNetwork = {
1903
1925
  name: string;
1904
1926
  description: string;
1905
1927
  source: AvailableExternalNetworkSourceEnum;
1906
- subnets: Array<{
1907
- [key: string]: unknown;
1908
- }>;
1928
+ subnets: Array<AvailableExternalNetworkSubnet>;
1909
1929
  };
1910
1930
  export type AvailableExternalNetworkSourceEnum = 'global' | 'rbac';
1931
+ export type AvailableExternalNetworkSubnet = {
1932
+ backend_id: string;
1933
+ name: string;
1934
+ cidr: string;
1935
+ };
1936
+ export type AvailableProjectDigestSection = {
1937
+ key: string;
1938
+ title: string;
1939
+ };
1911
1940
  export type AvailableScope = {
1912
1941
  permission: string;
1913
1942
  description: string;
@@ -3159,11 +3188,39 @@ export type CallCoiConfiguration = {
3159
3188
  readonly created: string;
3160
3189
  readonly modified: string;
3161
3190
  };
3191
+ export type CallComplianceChecklistInfo = {
3192
+ uuid: string;
3193
+ name: string;
3194
+ description: string;
3195
+ total_questions: number;
3196
+ required_questions: number;
3197
+ };
3162
3198
  export type CallComplianceOverview = {
3163
- readonly checklist: {
3164
- [key: string]: unknown;
3165
- } | null;
3166
- readonly proposals: Array<unknown>;
3199
+ checklist: CallComplianceChecklistInfo | null;
3200
+ readonly proposals: Array<CallComplianceOverviewProposal>;
3201
+ };
3202
+ export type CallComplianceOverviewProposal = {
3203
+ uuid: string;
3204
+ name: string;
3205
+ state: string;
3206
+ created_by: string | null;
3207
+ created_by_uuid: string | null;
3208
+ compliance: CallComplianceOverviewProposalCompliance | null;
3209
+ };
3210
+ export type CallComplianceOverviewProposalCompliance = {
3211
+ is_completed: boolean;
3212
+ requires_review: boolean;
3213
+ completion_percentage: number;
3214
+ reviewed_by: string | null;
3215
+ reviewed_at: string | null;
3216
+ review_triggers: Array<CallComplianceOverviewProposalReviewTrigger>;
3217
+ unanswered_required_count: number;
3218
+ };
3219
+ export type CallComplianceOverviewProposalReviewTrigger = {
3220
+ question: string;
3221
+ answer: unknown;
3222
+ trigger_value: unknown;
3223
+ operator: string;
3167
3224
  };
3168
3225
  export type CallComplianceReviewRequest = {
3169
3226
  proposal_uuid: string;
@@ -4191,23 +4248,23 @@ export type ChecklistRequest = {
4191
4248
  checklist_type?: ChecklistTypeEnum;
4192
4249
  };
4193
4250
  export type ChecklistResponse = {
4194
- readonly checklist: {
4195
- [key: string]: unknown;
4196
- };
4251
+ checklist: ChecklistShort;
4197
4252
  completion: ChecklistCompletion;
4198
4253
  questions: Array<QuestionWithAnswer>;
4199
4254
  };
4200
4255
  export type ChecklistReviewerResponse = {
4201
- readonly checklist: {
4202
- [key: string]: unknown;
4203
- };
4256
+ checklist: ChecklistShort;
4204
4257
  completion: ChecklistCompletionReviewer;
4205
4258
  questions: Array<QuestionWithAnswerReviewer>;
4206
4259
  };
4260
+ export type ChecklistShort = {
4261
+ uuid: string;
4262
+ name: string;
4263
+ description: string;
4264
+ checklist_type: string;
4265
+ };
4207
4266
  export type ChecklistTemplate = {
4208
- readonly checklist: {
4209
- [key: string]: unknown;
4210
- };
4267
+ checklist: ChecklistShort;
4211
4268
  questions: Array<Question>;
4212
4269
  initial_visible_questions: Array<Question>;
4213
4270
  };
@@ -4327,9 +4384,16 @@ export type CleanupResponse = {
4327
4384
  /**
4328
4385
  * List of deleted (or to-be-deleted) items
4329
4386
  */
4330
- items: Array<{
4331
- [key: string]: unknown;
4332
- }>;
4387
+ items: Array<CleanupResponseItem>;
4388
+ };
4389
+ export type CleanupResponseItem = {
4390
+ uuid: string;
4391
+ name: string;
4392
+ offering__name?: string;
4393
+ created?: string;
4394
+ identity__name?: string;
4395
+ state?: string;
4396
+ modified?: string;
4333
4397
  };
4334
4398
  export type ClusterSecurityGroup = {
4335
4399
  readonly uuid: string;
@@ -5664,9 +5728,7 @@ export type CreateManualAssignmentResponse = {
5664
5728
  /**
5665
5729
  * Proposals that were skipped with reasons
5666
5730
  */
5667
- skipped_proposals: Array<{
5668
- [key: string]: unknown;
5669
- }>;
5731
+ skipped_proposals: Array<SkippedProposal>;
5670
5732
  };
5671
5733
  export type CreatePool = {
5672
5734
  readonly url: string;
@@ -6402,6 +6464,10 @@ export type DailyStorageReport = {
6402
6464
  };
6403
6465
  };
6404
6466
  };
6467
+ export type DailyVolume = {
6468
+ date: string;
6469
+ count: number;
6470
+ };
6405
6471
  export type DataAccessSummary = {
6406
6472
  total_administrative_access: number | null;
6407
6473
  total_organizational_access: number;
@@ -6566,6 +6632,9 @@ export type DeprecatedNetworkRbacPolicyRequest = {
6566
6632
  */
6567
6633
  policy_type?: PolicyTypeEnum;
6568
6634
  };
6635
+ export type Detail = {
6636
+ detail: string;
6637
+ };
6569
6638
  export type DetailState = {
6570
6639
  readonly detail: string;
6571
6640
  readonly state: string;
@@ -6894,9 +6963,7 @@ export type DiscoverMetadataResponse = {
6894
6963
  /**
6895
6964
  * OIDC endpoints (authorization, token, userinfo, logout)
6896
6965
  */
6897
- endpoints: {
6898
- [key: string]: string;
6899
- };
6966
+ endpoints: OidcEndpoints;
6900
6967
  /**
6901
6968
  * Waldur User fields with suggested OIDC claim mappings
6902
6969
  */
@@ -7478,13 +7545,12 @@ export type ExternalSubnet = {
7478
7545
  };
7479
7546
  export type FederatedidentitydeactivationpolicyEnum = 'all_isds_removed' | 'any_isd_removed';
7480
7547
  export type FontfamilyEnum = 'Inter' | 'Maven Pro';
7548
+ export type FeatureItem = {
7549
+ key: string;
7550
+ description: string;
7551
+ };
7481
7552
  export type FeatureMetadataResponse = {
7482
- /**
7483
- * List of feature sections with descriptions
7484
- */
7485
- features: Array<{
7486
- [key: string]: unknown;
7487
- }>;
7553
+ features: Array<FeatureSection>;
7488
7554
  /**
7489
7555
  * Nested feature enum values by section
7490
7556
  */
@@ -7494,6 +7560,11 @@ export type FeatureMetadataResponse = {
7494
7560
  };
7495
7561
  };
7496
7562
  };
7563
+ export type FeatureSection = {
7564
+ key: string;
7565
+ description: string;
7566
+ items: Array<FeatureItem>;
7567
+ };
7497
7568
  export type Feedback = {
7498
7569
  readonly uuid: string;
7499
7570
  readonly created: string;
@@ -7523,6 +7594,9 @@ export type FetchBillingExportResponse = {
7523
7594
  period_to: string;
7524
7595
  classification: string;
7525
7596
  row_count: number;
7597
+ /**
7598
+ * Raw billing export data from Arrow API
7599
+ */
7526
7600
  data: Array<{
7527
7601
  [key: string]: unknown;
7528
7602
  }>;
@@ -7538,6 +7612,9 @@ export type FetchConsumptionResponse = {
7538
7612
  license_reference: string;
7539
7613
  period: string;
7540
7614
  row_count: number;
7615
+ /**
7616
+ * Raw consumption data from Arrow API
7617
+ */
7541
7618
  data: Array<{
7542
7619
  [key: string]: unknown;
7543
7620
  }>;
@@ -7747,9 +7824,7 @@ export type GenerateAssignmentsResponse = {
7747
7824
  /**
7748
7825
  * Proposals that were skipped with reasons
7749
7826
  */
7750
- skipped_proposals: Array<{
7751
- [key: string]: unknown;
7752
- }>;
7827
+ skipped_proposals: Array<SkippedProposal>;
7753
7828
  };
7754
7829
  export type GenerateSuggestionsRequestRequest = {
7755
7830
  /**
@@ -8437,6 +8512,10 @@ export type ImportResourceRequest = {
8437
8512
  plan?: string;
8438
8513
  additional_details?: unknown;
8439
8514
  };
8515
+ export type ImportUsageError = {
8516
+ customer_name: string;
8517
+ reason: string;
8518
+ };
8440
8519
  export type ImportUsageItemRequest = {
8441
8520
  customer_name?: string;
8442
8521
  customer_uuid?: string;
@@ -8455,9 +8534,7 @@ export type ImportUsageRequest = {
8455
8534
  export type ImportUsageResponse = {
8456
8535
  created: number;
8457
8536
  skipped: number;
8458
- errors: Array<{
8459
- [key: string]: string;
8460
- }>;
8537
+ errors: Array<ImportUsageError>;
8461
8538
  };
8462
8539
  export type ImportableResource = {
8463
8540
  /**
@@ -10190,6 +10267,10 @@ export type MergedPluginOptions = {
10190
10267
  * Label used by UI for showing value of the backend_id
10191
10268
  */
10192
10269
  backend_id_display_label?: string;
10270
+ /**
10271
+ * Show an in-browser inference playground action for resources of this offering (for offerings whose resources expose an OpenAI-compatible endpoint).
10272
+ */
10273
+ expose_inference_playground?: boolean;
10193
10274
  /**
10194
10275
  * List of disabled marketplace resource actions for this offering.
10195
10276
  */
@@ -10492,6 +10573,10 @@ export type MergedPluginOptionsRequest = {
10492
10573
  * Label used by UI for showing value of the backend_id
10493
10574
  */
10494
10575
  backend_id_display_label?: string;
10576
+ /**
10577
+ * Show an in-browser inference playground action for resources of this offering (for offerings whose resources expose an OpenAI-compatible endpoint).
10578
+ */
10579
+ expose_inference_playground?: boolean;
10495
10580
  /**
10496
10581
  * List of disabled marketplace resource actions for this offering.
10497
10582
  */
@@ -11727,14 +11812,10 @@ export type NestedSoftwareVersion = {
11727
11812
  module_version?: string;
11728
11813
  release_date?: string | null;
11729
11814
  readonly targets: Array<NestedSoftwareTarget>;
11730
- readonly module: {
11731
- [key: string]: unknown;
11732
- };
11815
+ module: SoftwareModule | null;
11733
11816
  readonly required_modules: Array<unknown>;
11734
11817
  readonly extensions: Array<unknown>;
11735
- readonly toolchain: {
11736
- [key: string]: unknown;
11737
- };
11818
+ toolchain: SoftwareToolchain | null;
11738
11819
  readonly toolchain_families_compatibility: Array<unknown>;
11739
11820
  };
11740
11821
  export type NestedSoftwareVersionRequest = {
@@ -12441,12 +12522,6 @@ export type OfferingLocationUpdateRequest = {
12441
12522
  latitude: number;
12442
12523
  longitude: number;
12443
12524
  };
12444
- export type OfferingMappingResponse = {
12445
- uuid: string;
12446
- name: string;
12447
- description: string;
12448
- slug: string;
12449
- };
12450
12525
  export type OfferingOptions = {
12451
12526
  order?: Array<string>;
12452
12527
  options?: {
@@ -13201,6 +13276,28 @@ export type OfferingUserUpdateRestrictionRequest = {
13201
13276
  */
13202
13277
  is_restricted: boolean;
13203
13278
  };
13279
+ export type OidcEndpoints = {
13280
+ /**
13281
+ * OIDC authorization endpoint
13282
+ */
13283
+ authorization_endpoint: string;
13284
+ /**
13285
+ * OIDC token endpoint
13286
+ */
13287
+ token_endpoint: string;
13288
+ /**
13289
+ * OIDC userinfo endpoint
13290
+ */
13291
+ userinfo_endpoint: string;
13292
+ /**
13293
+ * OIDC end session endpoint
13294
+ */
13295
+ end_session_endpoint?: string | null;
13296
+ /**
13297
+ * OIDC JWKS URI
13298
+ */
13299
+ jwks_uri?: string | null;
13300
+ };
13204
13301
  export type OnboardingCompanyValidationRequestRequest = {
13205
13302
  /**
13206
13303
  * Automatic validation method (e.g., 'ariregister', 'wirtschaftscompass', 'bolagsverket'). Leave empty for manual validation.
@@ -14287,9 +14384,7 @@ export type OpenStackLoadBalancer = {
14287
14384
  /**
14288
14385
  * Security groups assigned to the VIP port.
14289
14386
  */
14290
- readonly vip_security_groups?: Array<{
14291
- [key: string]: unknown;
14292
- }>;
14387
+ readonly vip_security_groups?: Array<OpenStackLoadBalancerVipSecurityGroup>;
14293
14388
  readonly marketplace_offering_uuid?: string | null;
14294
14389
  readonly marketplace_offering_name?: string | null;
14295
14390
  readonly marketplace_offering_type?: string | null;
@@ -14304,6 +14399,11 @@ export type OpenStackLoadBalancer = {
14304
14399
  readonly is_usage_based?: boolean | null;
14305
14400
  readonly is_limit_based?: boolean | null;
14306
14401
  };
14402
+ export type OpenStackLoadBalancerVipSecurityGroup = {
14403
+ uuid?: string;
14404
+ name?: string;
14405
+ url?: string;
14406
+ };
14307
14407
  export type OpenStackNestedFloatingIp = {
14308
14408
  readonly url?: string;
14309
14409
  readonly uuid?: string;
@@ -14860,9 +14960,6 @@ export type OpenStackRouterInterfaceRequest = {
14860
14960
  */
14861
14961
  port?: string;
14862
14962
  };
14863
- export type OpenStackRouterSetRoutes = {
14864
- routes: Array<OpenStackStaticRoute>;
14865
- };
14866
14963
  export type OpenStackRouterSetRoutesRequest = {
14867
14964
  routes: Array<OpenStackStaticRouteRequest>;
14868
14965
  };
@@ -18218,6 +18315,26 @@ export type Permission = {
18218
18315
  readonly resource_uuid?: string | null;
18219
18316
  readonly project_uuid?: string | null;
18220
18317
  };
18318
+ export type PermissionDescription = {
18319
+ /**
18320
+ * Category name
18321
+ */
18322
+ label: string;
18323
+ /**
18324
+ * List of permissions in this category
18325
+ */
18326
+ options: Array<PermissionDescriptionOption>;
18327
+ };
18328
+ export type PermissionDescriptionOption = {
18329
+ /**
18330
+ * Human-readable permission label
18331
+ */
18332
+ label: string;
18333
+ /**
18334
+ * Permission enum value
18335
+ */
18336
+ value: ValueEnum;
18337
+ };
18221
18338
  export type PermissionMetadataResponse = {
18222
18339
  /**
18223
18340
  * Map of role keys to role enum values from RoleEnum
@@ -18240,9 +18357,7 @@ export type PermissionMetadataResponse = {
18240
18357
  /**
18241
18358
  * Grouped permission descriptions for UI
18242
18359
  */
18243
- permission_descriptions: Array<{
18244
- [key: string]: unknown;
18245
- }>;
18360
+ permission_descriptions: Array<PermissionDescription>;
18246
18361
  };
18247
18362
  export type PermissionRequest = {
18248
18363
  readonly url: string;
@@ -18414,6 +18529,11 @@ export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-
18414
18529
  export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
18415
18530
  export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
18416
18531
  export type PresetEnum = 'cscs' | 'oecd_fos_2007';
18532
+ export type PreviewPeriod = {
18533
+ period: string;
18534
+ status?: string;
18535
+ row_count?: number;
18536
+ };
18417
18537
  export type PreviewServiceAttributesRequestRequest = {
18418
18538
  /**
18419
18539
  * Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
@@ -18762,9 +18882,7 @@ export type ProjectDigestConfig = {
18762
18882
  */
18763
18883
  day_of_month?: number;
18764
18884
  readonly last_sent_at: string | null;
18765
- readonly available_sections: Array<{
18766
- [key: string]: string;
18767
- }>;
18885
+ readonly available_sections: Array<AvailableProjectDigestSection>;
18768
18886
  };
18769
18887
  export type ProjectDigestConfigRequest = {
18770
18888
  is_enabled?: boolean;
@@ -18901,12 +19019,6 @@ export type ProjectInfoRequest = {
18901
19019
  */
18902
19020
  allowed_destinations?: string | null;
18903
19021
  };
18904
- export type ProjectMappingResponse = {
18905
- uuid: string;
18906
- name: string;
18907
- customer_uuid: string;
18908
- customer_name: string;
18909
- };
18910
19022
  export type ProjectOrderAutoApproval = {
18911
19023
  readonly uuid: string;
18912
19024
  readonly url: string;
@@ -19375,21 +19487,32 @@ export type Proposal = {
19375
19487
  readonly science_domain_name: string;
19376
19488
  readonly allocation_comment: string | null;
19377
19489
  readonly created: string;
19378
- readonly compliance_status: {
19379
- [key: string]: unknown;
19380
- } | null;
19381
- readonly can_submit: {
19382
- [key: string]: unknown;
19383
- };
19490
+ compliance_status: ProposalComplianceStatus | null;
19491
+ can_submit: ProposalCanSubmitResponse;
19384
19492
  readonly awaiting_manual_advance: boolean;
19385
19493
  };
19386
19494
  export type ProposalApproveRequest = {
19387
19495
  allocation_comment?: string;
19388
19496
  };
19497
+ export type ProposalCanSubmitResponse = {
19498
+ can_submit: boolean;
19499
+ error: string | null;
19500
+ };
19389
19501
  export type ProposalChecklistAnswerSubmitResponse = {
19390
19502
  detail: string;
19391
19503
  completion: ChecklistCompletionReviewer;
19392
19504
  };
19505
+ export type ProposalComplianceStatus = {
19506
+ error?: string;
19507
+ has_checklist: boolean;
19508
+ is_completed: boolean;
19509
+ requires_review: boolean;
19510
+ completion_percentage: number;
19511
+ reviewed_by: string | null;
19512
+ reviewed_at: string | null;
19513
+ checklist_name?: string;
19514
+ unanswered_required_count?: number;
19515
+ };
19393
19516
  export type ProposalDetachDocumentsRequest = {
19394
19517
  documents: Array<string>;
19395
19518
  };
@@ -19732,6 +19855,10 @@ export type ProtectedRoundRequest = {
19732
19855
  review_duration_in_days?: number;
19733
19856
  minimum_number_of_reviewers?: number | null;
19734
19857
  };
19858
+ export type ProviderCustomerMonthly = {
19859
+ month: string;
19860
+ customer_count: number;
19861
+ };
19735
19862
  export type ProviderCustomerStats = {
19736
19863
  /**
19737
19864
  * Total number of customers
@@ -19744,21 +19871,25 @@ export type ProviderCustomerStats = {
19744
19871
  /**
19745
19872
  * Top customers by revenue
19746
19873
  */
19747
- top_by_revenue: Array<{
19748
- [key: string]: unknown;
19749
- }>;
19874
+ top_by_revenue: Array<ProviderCustomerTopRevenue>;
19750
19875
  /**
19751
19876
  * Top customers by resource count
19752
19877
  */
19753
- top_by_resources: Array<{
19754
- [key: string]: unknown;
19755
- }>;
19878
+ top_by_resources: Array<ProviderCustomerTopResource>;
19756
19879
  /**
19757
19880
  * Monthly customer counts
19758
19881
  */
19759
- monthly: Array<{
19760
- [key: string]: unknown;
19761
- }>;
19882
+ monthly: Array<ProviderCustomerMonthly>;
19883
+ };
19884
+ export type ProviderCustomerTopResource = {
19885
+ customer_uuid: string;
19886
+ customer_name: string;
19887
+ resource_count: number;
19888
+ };
19889
+ export type ProviderCustomerTopRevenue = {
19890
+ customer_uuid: string;
19891
+ customer_name: string;
19892
+ revenue: string | null;
19762
19893
  };
19763
19894
  export type ProviderOffering = {
19764
19895
  readonly uuid?: string;
@@ -19929,13 +20060,28 @@ export type ProviderOfferingDetails = {
19929
20060
  */
19930
20061
  readonly google_calendar_link?: string | null;
19931
20062
  };
20063
+ export type ProviderOfferingPlanStats = {
20064
+ plan_uuid: string;
20065
+ plan_name: string;
20066
+ usage: number;
20067
+ limit: number | null;
20068
+ utilization: number | null;
20069
+ };
19932
20070
  export type ProviderOfferingStats = {
19933
20071
  /**
19934
20072
  * Offering statistics including resources, revenue, and utilization
19935
20073
  */
19936
- offerings: Array<{
19937
- [key: string]: unknown;
19938
- }>;
20074
+ offerings: Array<ProviderOfferingStatsItem>;
20075
+ };
20076
+ export type ProviderOfferingStatsItem = {
20077
+ offering_uuid: string;
20078
+ offering_name: string;
20079
+ category_name: string;
20080
+ state: string;
20081
+ active_resources: number;
20082
+ total_resources: number;
20083
+ revenue: string | null;
20084
+ plans: Array<ProviderOfferingPlanStats>;
19939
20085
  };
19940
20086
  export type ProviderPlanDetails = {
19941
20087
  readonly url: string;
@@ -20037,6 +20183,10 @@ export type ProviderRequestedResource = {
20037
20183
  readonly proposal_name: string;
20038
20184
  proposal: string;
20039
20185
  };
20186
+ export type ProviderResourceMonthly = {
20187
+ month: string;
20188
+ count: number;
20189
+ };
20040
20190
  export type ProviderResourceStats = {
20041
20191
  /**
20042
20192
  * Total number of resources
@@ -20051,15 +20201,22 @@ export type ProviderResourceStats = {
20051
20201
  /**
20052
20202
  * Resource counts grouped by offering
20053
20203
  */
20054
- by_offering: Array<{
20055
- [key: string]: unknown;
20056
- }>;
20204
+ by_offering: Array<ProviderResourceTopOffering>;
20057
20205
  /**
20058
20206
  * Monthly resource counts
20059
20207
  */
20060
- monthly: Array<{
20061
- [key: string]: unknown;
20062
- }>;
20208
+ monthly: Array<ProviderResourceMonthly>;
20209
+ };
20210
+ export type ProviderResourceTopOffering = {
20211
+ offering_uuid: string;
20212
+ offering_name: string;
20213
+ count: number;
20214
+ };
20215
+ export type ProviderSummary = {
20216
+ resources: {
20217
+ [key: string]: ResourceClassSummary;
20218
+ };
20219
+ traits: Array<string>;
20063
20220
  };
20064
20221
  export type ProviderTeamUser = {
20065
20222
  user_uuid: string;
@@ -20378,15 +20535,9 @@ export type PubsubOverview = {
20378
20535
  */
20379
20536
  readonly last_updated: string;
20380
20537
  };
20381
- export type PullConflictResponse = {
20382
- detail: string;
20383
- };
20384
20538
  export type PullMarketplaceScriptResourceRequest = {
20385
20539
  resource_uuid: string;
20386
20540
  };
20387
- export type PullResponse = {
20388
- detail: string;
20389
- };
20390
20541
  export type QosStrategyEnum = 'threshold' | 'progressive';
20391
20542
  export type QueryPerformance = {
20392
20543
  /**
@@ -20717,6 +20868,11 @@ export type QuestionAnswer = {
20717
20868
  [key: string]: unknown;
20718
20869
  }>;
20719
20870
  };
20871
+ export type QuestionCondition = {
20872
+ question_description: string;
20873
+ operator: string;
20874
+ required_value: unknown;
20875
+ };
20720
20876
  export type QuestionDependency = {
20721
20877
  readonly uuid: string;
20722
20878
  readonly url: string;
@@ -20730,6 +20886,10 @@ export type QuestionDependency = {
20730
20886
  required_answer_value: unknown;
20731
20887
  operator?: ChecklistOperators;
20732
20888
  };
20889
+ export type QuestionDependencyInfo = {
20890
+ logic: string;
20891
+ conditions: Array<QuestionCondition>;
20892
+ };
20733
20893
  export type QuestionDependencyRequest = {
20734
20894
  question: string;
20735
20895
  depends_on_question: string;
@@ -20768,9 +20928,7 @@ export type QuestionWithAnswer = {
20768
20928
  question_type: QuestionTypeEnum;
20769
20929
  readonly required: boolean;
20770
20930
  readonly order: number;
20771
- readonly existing_answer: {
20772
- [key: string]: unknown;
20773
- } | null;
20931
+ existing_answer: Answer | null;
20774
20932
  readonly question_options: Array<unknown> | null;
20775
20933
  /**
20776
20934
  * Minimum value allowed for NUMBER, YEAR, and RATING type questions
@@ -20820,9 +20978,7 @@ export type QuestionWithAnswer = {
20820
20978
  * Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
20821
20979
  */
20822
20980
  rich_text_toolbar_level: RichTextToolbarLevelEnum;
20823
- readonly dependencies_info: {
20824
- [key: string]: unknown;
20825
- } | null;
20981
+ dependencies_info: QuestionDependencyInfo | null;
20826
20982
  };
20827
20983
  export type QuestionWithAnswerReviewer = {
20828
20984
  readonly uuid: string;
@@ -20834,9 +20990,7 @@ export type QuestionWithAnswerReviewer = {
20834
20990
  question_type: QuestionTypeEnum;
20835
20991
  readonly required: boolean;
20836
20992
  readonly order: number;
20837
- readonly existing_answer: {
20838
- [key: string]: unknown;
20839
- } | null;
20993
+ existing_answer: Answer | null;
20840
20994
  readonly question_options: Array<unknown> | null;
20841
20995
  /**
20842
20996
  * Minimum value allowed for NUMBER, YEAR, and RATING type questions
@@ -20886,9 +21040,7 @@ export type QuestionWithAnswerReviewer = {
20886
21040
  * Toolbar level for the rich text editor: 'minimal', 'standard', or 'extended'.
20887
21041
  */
20888
21042
  rich_text_toolbar_level: RichTextToolbarLevelEnum;
20889
- readonly dependencies_info: {
20890
- [key: string]: unknown;
20891
- } | null;
21043
+ dependencies_info: QuestionDependencyInfo | null;
20892
21044
  operator?: ChecklistOperators | BlankEnum;
20893
21045
  /**
20894
21046
  * Answer value that trigger review.
@@ -21799,9 +21951,6 @@ export type RemoteAllocationRequest = {
21799
21951
  */
21800
21952
  remote_project_identifier?: string | null;
21801
21953
  };
21802
- export type RemoteAllocationSetLimits = {
21803
- node_limit: number;
21804
- };
21805
21954
  export type RemoteAllocationSetLimitsRequest = {
21806
21955
  node_limit: number;
21807
21956
  };
@@ -22138,6 +22287,10 @@ export type RequestedResourceRequest = {
22138
22287
  requested_offering_uuid?: string;
22139
22288
  call_resource_template_uuid?: string;
22140
22289
  };
22290
+ export type ReservedAgentTask = {
22291
+ id: string;
22292
+ name: string;
22293
+ };
22141
22294
  export type Resource = {
22142
22295
  offering?: string;
22143
22296
  readonly offering_name?: string;
@@ -22277,6 +22430,10 @@ export type ResourceBackendIdRequest = {
22277
22430
  export type ResourceBackendMetadataRequest = {
22278
22431
  backend_metadata: unknown;
22279
22432
  };
22433
+ export type ResourceClassSummary = {
22434
+ used: number;
22435
+ capacity: number;
22436
+ };
22280
22437
  export type ResourceDemandStat = {
22281
22438
  readonly offering_uuid: string;
22282
22439
  readonly offering_name: string;
@@ -22613,12 +22770,6 @@ export type ResourceRequest = {
22613
22770
  downscaled?: boolean;
22614
22771
  paused?: boolean;
22615
22772
  };
22616
- export type ResourceResponseStatus = {
22617
- /**
22618
- * Status of the resource response
22619
- */
22620
- readonly status: string;
22621
- };
22622
22773
  export type ResourceRestrictMemberAccessRequest = {
22623
22774
  restrict_member_access?: boolean;
22624
22775
  };
@@ -23178,6 +23329,13 @@ export type ReviewerSuggestion = {
23178
23329
  readonly source_type_display: string;
23179
23330
  readonly created: string;
23180
23331
  };
23332
+ export type ReviewerSuggestionItem = {
23333
+ pool_entry_uuid: string;
23334
+ reviewer_name: string;
23335
+ affinity_score: number | null;
23336
+ current_assignments: number;
23337
+ max_assignments: number;
23338
+ };
23181
23339
  export type ReviewerSuggestionRequest = {
23182
23340
  status?: ReviewerSuggestionStatusEnum;
23183
23341
  rejection_reason?: string;
@@ -24029,6 +24187,11 @@ export type SaveSettingsResponse = {
24029
24187
  mappings_created: number;
24030
24188
  message: string;
24031
24189
  };
24190
+ export type ScheduledAgentTask = {
24191
+ id: string;
24192
+ name: string;
24193
+ eta: string;
24194
+ };
24032
24195
  export type ScienceDomain = {
24033
24196
  readonly uuid: string;
24034
24197
  readonly url: string;
@@ -24110,6 +24273,10 @@ export type ScreenshotRequest = {
24110
24273
  image: Blob | File;
24111
24274
  offering: string;
24112
24275
  };
24276
+ export type Secret = {
24277
+ name: string;
24278
+ id: string;
24279
+ };
24113
24280
  export type Section = {
24114
24281
  readonly url: string;
24115
24282
  key: string;
@@ -24354,8 +24521,15 @@ export type SetErredRequest = {
24354
24521
  error_message?: string;
24355
24522
  error_traceback?: string;
24356
24523
  };
24357
- export type SetErredResponse = {
24358
- detail: string;
24524
+ export type SetExternalGatewayFixedIpRequest = {
24525
+ /**
24526
+ * IP address specification for the gateway port.
24527
+ */
24528
+ ip_address: string;
24529
+ /**
24530
+ * Backend ID of the subnet.
24531
+ */
24532
+ subnet_id?: string;
24359
24533
  };
24360
24534
  export type SetExternalGatewayRequest = {
24361
24535
  /**
@@ -24369,9 +24543,7 @@ export type SetExternalGatewayRequest = {
24369
24543
  /**
24370
24544
  * List of fixed IP specifications for the gateway port. Each entry should have 'ip_address' and optionally 'subnet_id'. Requires advanced permissions.
24371
24545
  */
24372
- external_fixed_ips?: Array<{
24373
- [key: string]: unknown;
24374
- }>;
24546
+ external_fixed_ips?: Array<SetExternalGatewayFixedIpRequest>;
24375
24547
  };
24376
24548
  export type SetMtu = {
24377
24549
  mtu: number;
@@ -24389,9 +24561,6 @@ export type SetOfferingsUsernameRequest = {
24389
24561
  */
24390
24562
  username: string;
24391
24563
  };
24392
- export type SetOkResponse = {
24393
- detail: string;
24394
- };
24395
24564
  export type SetTokenQuotaRequest = {
24396
24565
  /**
24397
24566
  * UUID of the user to set quota for.
@@ -24410,13 +24579,34 @@ export type SetTokenQuotaRequest = {
24410
24579
  */
24411
24580
  monthly_limit?: number | null;
24412
24581
  };
24582
+ export type SettingsItem = {
24583
+ key: string;
24584
+ description: string;
24585
+ default?: unknown;
24586
+ type: string;
24587
+ options?: Array<SettingsItemOption>;
24588
+ };
24589
+ export type SettingsItemOption = {
24590
+ value: string;
24591
+ label: string;
24592
+ };
24413
24593
  export type SettingsMetadataResponse = {
24414
- /**
24415
- * List of settings sections with configuration items
24416
- */
24417
- settings: Array<{
24418
- [key: string]: unknown;
24419
- }>;
24594
+ settings: Array<SettingsSection>;
24595
+ };
24596
+ export type SettingsSection = {
24597
+ description: string;
24598
+ items: Array<SettingsItem>;
24599
+ };
24600
+ export type SeverityByDay = {
24601
+ labels: Array<string>;
24602
+ series: SeverityByDaySeries;
24603
+ };
24604
+ export type SeverityByDaySeries = {
24605
+ NONE: Array<number>;
24606
+ LOW: Array<number>;
24607
+ MEDIUM: Array<number>;
24608
+ HIGH: Array<number>;
24609
+ CRITICAL: Array<number>;
24420
24610
  };
24421
24611
  export type SilenceActionRequest = {
24422
24612
  /**
@@ -24467,6 +24657,11 @@ export type SiteAgentLogCreateRequest = {
24467
24657
  message: string;
24468
24658
  module: string;
24469
24659
  };
24660
+ export type SkippedProposal = {
24661
+ proposal_uuid: string;
24662
+ proposal_name: string;
24663
+ reason: string;
24664
+ };
24470
24665
  export type SlurmAllocation = {
24471
24666
  readonly url?: string;
24472
24667
  readonly uuid?: string;
@@ -24522,11 +24717,6 @@ export type SlurmAllocationRequest = {
24522
24717
  service_settings: string;
24523
24718
  project: string;
24524
24719
  };
24525
- export type SlurmAllocationSetLimits = {
24526
- cpu_limit: number;
24527
- gpu_limit: number;
24528
- ram_limit: number;
24529
- };
24530
24720
  export type SlurmAllocationSetLimitsRequest = {
24531
24721
  cpu_limit: number;
24532
24722
  gpu_limit: number;
@@ -24983,6 +25173,10 @@ export type SoftwareCatalogUuid = {
24983
25173
  */
24984
25174
  uuid: string;
24985
25175
  };
25176
+ export type SoftwareModule = {
25177
+ module_name?: string;
25178
+ module_version?: string;
25179
+ };
24986
25180
  export type SoftwarePackage = {
24987
25181
  readonly url: string;
24988
25182
  readonly uuid: string;
@@ -25070,6 +25264,10 @@ export type SoftwareTarget = {
25070
25264
  */
25071
25265
  readonly gpu_architectures: unknown;
25072
25266
  };
25267
+ export type SoftwareToolchain = {
25268
+ name?: string;
25269
+ version?: string;
25270
+ };
25073
25271
  export type SoftwareVersion = {
25074
25272
  readonly url: string;
25075
25273
  readonly uuid: string;
@@ -25092,14 +25290,10 @@ export type SoftwareVersion = {
25092
25290
  readonly package_name: string;
25093
25291
  readonly catalog_type: string;
25094
25292
  readonly target_count: number;
25095
- readonly module: {
25096
- [key: string]: unknown;
25097
- };
25293
+ module: SoftwareModule | null;
25098
25294
  readonly required_modules: Array<unknown>;
25099
25295
  readonly extensions: Array<unknown>;
25100
- readonly toolchain: {
25101
- [key: string]: unknown;
25102
- };
25296
+ toolchain: SoftwareToolchain | null;
25103
25297
  readonly toolchain_families_compatibility: Array<unknown>;
25104
25298
  };
25105
25299
  export type SourceTypeEnum = 'call_description' | 'all_proposals' | 'selected_proposals' | 'custom_keywords';
@@ -25125,6 +25319,9 @@ export type StateTransitionError = {
25125
25319
  */
25126
25320
  detail: string;
25127
25321
  };
25322
+ export type Status = {
25323
+ status: string;
25324
+ };
25128
25325
  export type StepEnum = 'administrative_check' | 'technical_assessment' | 'expert_review' | 'panel_review' | 'allocation_decision' | 'award_response';
25129
25326
  export type StorageDataType = {
25130
25327
  key: string;
@@ -25207,9 +25404,7 @@ export type SuggestAlternativeReviewers = {
25207
25404
  /**
25208
25405
  * List of alternative reviewers with affinity scores
25209
25406
  */
25210
- suggestions: Array<{
25211
- [key: string]: unknown;
25212
- }>;
25407
+ suggestions: Array<ReviewerSuggestionItem>;
25213
25408
  };
25214
25409
  export type SuggestionRejectRequest = {
25215
25410
  /**
@@ -25284,13 +25479,9 @@ export type SyncResourceHistoricalConsumptionResponse = {
25284
25479
  periods_synced: number;
25285
25480
  periods_skipped: number;
25286
25481
  periods_no_data?: number;
25287
- errors: Array<{
25288
- [key: string]: unknown;
25289
- }>;
25482
+ errors?: Array<ArrowSyncError>;
25290
25483
  dry_run?: boolean;
25291
- preview_periods?: Array<{
25292
- [key: string]: unknown;
25293
- }>;
25484
+ preview_periods?: Array<PreviewPeriod>;
25294
25485
  };
25295
25486
  export type SyncResourcesRequestRequest = {
25296
25487
  /**
@@ -25319,15 +25510,6 @@ export type SyncResourcesResponse = {
25319
25510
  synced: number;
25320
25511
  created: number;
25321
25512
  updated: number;
25322
- orders_created?: number;
25323
- customers_created?: number;
25324
- projects_created?: number;
25325
- mappings_created?: number;
25326
- invoices_created?: number;
25327
- invoice_items_created?: number;
25328
- errors?: Array<{
25329
- [key: string]: unknown;
25330
- }>;
25331
25513
  };
25332
25514
  export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
25333
25515
  export type SystemLog = {
@@ -26107,11 +26289,17 @@ export type UserActionProvider = {
26107
26289
  };
26108
26290
  export type UserActionSummary = {
26109
26291
  total: number;
26292
+ /**
26293
+ * Map of urgency level to count of actions
26294
+ */
26110
26295
  by_urgency: {
26111
- [key: string]: unknown;
26296
+ [key: string]: number;
26112
26297
  };
26298
+ /**
26299
+ * Map of action type string to count of actions
26300
+ */
26113
26301
  by_type: {
26114
- [key: string]: unknown;
26302
+ [key: string]: number;
26115
26303
  };
26116
26304
  overdue: number;
26117
26305
  };
@@ -26308,12 +26496,6 @@ export type UserLanguageCount = {
26308
26496
  language: string;
26309
26497
  count: number;
26310
26498
  };
26311
- export type UserMappingResponse = {
26312
- uuid: string;
26313
- full_name: string;
26314
- email: string;
26315
- username: string;
26316
- };
26317
26499
  export type UserNationalityStats = {
26318
26500
  /**
26319
26501
  * Nationality code
@@ -26528,6 +26710,7 @@ export type UserRoleUpdateRequest = {
26528
26710
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
26529
26711
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
26530
26712
  export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket' | 'breg';
26713
+ export type ValueEnum = 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'ORDER.SET_CONSUMER_INFO' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CREATE_PERMISSION' | 'RESOURCE.UPDATE_PERMISSION' | 'RESOURCE.DELETE_PERMISSION' | 'RESOURCE_PROJECT.CREATE_PERMISSION' | 'RESOURCE_PROJECT.UPDATE_PERMISSION' | 'RESOURCE_PROJECT.DELETE_PERMISSION' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
26531
26714
  export type VendorNameChoice = {
26532
26715
  value: string;
26533
26716
  label: string;
@@ -32161,11 +32344,11 @@ export type AwsInstancesPullData = {
32161
32344
  url: '/api/aws-instances/{uuid}/pull/';
32162
32345
  };
32163
32346
  export type AwsInstancesPullErrors = {
32164
- 409: PullConflictResponse;
32347
+ 409: Detail;
32165
32348
  };
32166
32349
  export type AwsInstancesPullError = AwsInstancesPullErrors[keyof AwsInstancesPullErrors];
32167
32350
  export type AwsInstancesPullResponses = {
32168
- 202: PullResponse;
32351
+ 202: Detail;
32169
32352
  };
32170
32353
  export type AwsInstancesPullResponse = AwsInstancesPullResponses[keyof AwsInstancesPullResponses];
32171
32354
  export type AwsInstancesResizeData = {
@@ -32189,7 +32372,7 @@ export type AwsInstancesRestartData = {
32189
32372
  url: '/api/aws-instances/{uuid}/restart/';
32190
32373
  };
32191
32374
  export type AwsInstancesRestartResponses = {
32192
- 200: AwsInstance;
32375
+ 202: Status;
32193
32376
  };
32194
32377
  export type AwsInstancesRestartResponse = AwsInstancesRestartResponses[keyof AwsInstancesRestartResponses];
32195
32378
  export type AwsInstancesSetErredData = {
@@ -32201,7 +32384,7 @@ export type AwsInstancesSetErredData = {
32201
32384
  url: '/api/aws-instances/{uuid}/set_erred/';
32202
32385
  };
32203
32386
  export type AwsInstancesSetErredResponses = {
32204
- 200: SetErredResponse;
32387
+ 200: Detail;
32205
32388
  };
32206
32389
  export type AwsInstancesSetErredResponse = AwsInstancesSetErredResponses[keyof AwsInstancesSetErredResponses];
32207
32390
  export type AwsInstancesSetOkData = {
@@ -32213,7 +32396,7 @@ export type AwsInstancesSetOkData = {
32213
32396
  url: '/api/aws-instances/{uuid}/set_ok/';
32214
32397
  };
32215
32398
  export type AwsInstancesSetOkResponses = {
32216
- 200: SetOkResponse;
32399
+ 200: Detail;
32217
32400
  };
32218
32401
  export type AwsInstancesSetOkResponse = AwsInstancesSetOkResponses[keyof AwsInstancesSetOkResponses];
32219
32402
  export type AwsInstancesStartData = {
@@ -32225,7 +32408,7 @@ export type AwsInstancesStartData = {
32225
32408
  url: '/api/aws-instances/{uuid}/start/';
32226
32409
  };
32227
32410
  export type AwsInstancesStartResponses = {
32228
- 200: AwsInstance;
32411
+ 202: Status;
32229
32412
  };
32230
32413
  export type AwsInstancesStartResponse = AwsInstancesStartResponses[keyof AwsInstancesStartResponses];
32231
32414
  export type AwsInstancesStopData = {
@@ -32237,7 +32420,7 @@ export type AwsInstancesStopData = {
32237
32420
  url: '/api/aws-instances/{uuid}/stop/';
32238
32421
  };
32239
32422
  export type AwsInstancesStopResponses = {
32240
- 200: AwsInstance;
32423
+ 202: Status;
32241
32424
  };
32242
32425
  export type AwsInstancesStopResponse = AwsInstancesStopResponses[keyof AwsInstancesStopResponses];
32243
32426
  export type AwsInstancesUnlinkData = {
@@ -32518,7 +32701,7 @@ export type AwsVolumesDetachData = {
32518
32701
  url: '/api/aws-volumes/{uuid}/detach/';
32519
32702
  };
32520
32703
  export type AwsVolumesDetachResponses = {
32521
- 200: AwsVolume;
32704
+ 202: Status;
32522
32705
  };
32523
32706
  export type AwsVolumesDetachResponse = AwsVolumesDetachResponses[keyof AwsVolumesDetachResponses];
32524
32707
  export type AwsVolumesPullData = {
@@ -32530,11 +32713,11 @@ export type AwsVolumesPullData = {
32530
32713
  url: '/api/aws-volumes/{uuid}/pull/';
32531
32714
  };
32532
32715
  export type AwsVolumesPullErrors = {
32533
- 409: PullConflictResponse;
32716
+ 409: Detail;
32534
32717
  };
32535
32718
  export type AwsVolumesPullError = AwsVolumesPullErrors[keyof AwsVolumesPullErrors];
32536
32719
  export type AwsVolumesPullResponses = {
32537
- 202: PullResponse;
32720
+ 202: Detail;
32538
32721
  };
32539
32722
  export type AwsVolumesPullResponse = AwsVolumesPullResponses[keyof AwsVolumesPullResponses];
32540
32723
  export type AwsVolumesSetErredData = {
@@ -32546,7 +32729,7 @@ export type AwsVolumesSetErredData = {
32546
32729
  url: '/api/aws-volumes/{uuid}/set_erred/';
32547
32730
  };
32548
32731
  export type AwsVolumesSetErredResponses = {
32549
- 200: SetErredResponse;
32732
+ 200: Detail;
32550
32733
  };
32551
32734
  export type AwsVolumesSetErredResponse = AwsVolumesSetErredResponses[keyof AwsVolumesSetErredResponses];
32552
32735
  export type AwsVolumesSetOkData = {
@@ -32558,7 +32741,7 @@ export type AwsVolumesSetOkData = {
32558
32741
  url: '/api/aws-volumes/{uuid}/set_ok/';
32559
32742
  };
32560
32743
  export type AwsVolumesSetOkResponses = {
32561
- 200: SetOkResponse;
32744
+ 200: Detail;
32562
32745
  };
32563
32746
  export type AwsVolumesSetOkResponse = AwsVolumesSetOkResponses[keyof AwsVolumesSetOkResponses];
32564
32747
  export type AwsVolumesUnlinkData = {
@@ -33007,11 +33190,11 @@ export type AzurePublicIpsPullData = {
33007
33190
  url: '/api/azure-public-ips/{uuid}/pull/';
33008
33191
  };
33009
33192
  export type AzurePublicIpsPullErrors = {
33010
- 409: PullConflictResponse;
33193
+ 409: Detail;
33011
33194
  };
33012
33195
  export type AzurePublicIpsPullError = AzurePublicIpsPullErrors[keyof AzurePublicIpsPullErrors];
33013
33196
  export type AzurePublicIpsPullResponses = {
33014
- 202: PullResponse;
33197
+ 202: Detail;
33015
33198
  };
33016
33199
  export type AzurePublicIpsPullResponse = AzurePublicIpsPullResponses[keyof AzurePublicIpsPullResponses];
33017
33200
  export type AzurePublicIpsSetErredData = {
@@ -33023,7 +33206,7 @@ export type AzurePublicIpsSetErredData = {
33023
33206
  url: '/api/azure-public-ips/{uuid}/set_erred/';
33024
33207
  };
33025
33208
  export type AzurePublicIpsSetErredResponses = {
33026
- 200: SetErredResponse;
33209
+ 200: Detail;
33027
33210
  };
33028
33211
  export type AzurePublicIpsSetErredResponse = AzurePublicIpsSetErredResponses[keyof AzurePublicIpsSetErredResponses];
33029
33212
  export type AzurePublicIpsSetOkData = {
@@ -33035,7 +33218,7 @@ export type AzurePublicIpsSetOkData = {
33035
33218
  url: '/api/azure-public-ips/{uuid}/set_ok/';
33036
33219
  };
33037
33220
  export type AzurePublicIpsSetOkResponses = {
33038
- 200: SetOkResponse;
33221
+ 200: Detail;
33039
33222
  };
33040
33223
  export type AzurePublicIpsSetOkResponse = AzurePublicIpsSetOkResponses[keyof AzurePublicIpsSetOkResponses];
33041
33224
  export type AzurePublicIpsUnlinkData = {
@@ -33459,11 +33642,11 @@ export type AzureSqlDatabasesPullData = {
33459
33642
  url: '/api/azure-sql-databases/{uuid}/pull/';
33460
33643
  };
33461
33644
  export type AzureSqlDatabasesPullErrors = {
33462
- 409: PullConflictResponse;
33645
+ 409: Detail;
33463
33646
  };
33464
33647
  export type AzureSqlDatabasesPullError = AzureSqlDatabasesPullErrors[keyof AzureSqlDatabasesPullErrors];
33465
33648
  export type AzureSqlDatabasesPullResponses = {
33466
- 202: PullResponse;
33649
+ 202: Detail;
33467
33650
  };
33468
33651
  export type AzureSqlDatabasesPullResponse = AzureSqlDatabasesPullResponses[keyof AzureSqlDatabasesPullResponses];
33469
33652
  export type AzureSqlDatabasesSetErredData = {
@@ -33475,7 +33658,7 @@ export type AzureSqlDatabasesSetErredData = {
33475
33658
  url: '/api/azure-sql-databases/{uuid}/set_erred/';
33476
33659
  };
33477
33660
  export type AzureSqlDatabasesSetErredResponses = {
33478
- 200: SetErredResponse;
33661
+ 200: Detail;
33479
33662
  };
33480
33663
  export type AzureSqlDatabasesSetErredResponse = AzureSqlDatabasesSetErredResponses[keyof AzureSqlDatabasesSetErredResponses];
33481
33664
  export type AzureSqlDatabasesSetOkData = {
@@ -33487,7 +33670,7 @@ export type AzureSqlDatabasesSetOkData = {
33487
33670
  url: '/api/azure-sql-databases/{uuid}/set_ok/';
33488
33671
  };
33489
33672
  export type AzureSqlDatabasesSetOkResponses = {
33490
- 200: SetOkResponse;
33673
+ 200: Detail;
33491
33674
  };
33492
33675
  export type AzureSqlDatabasesSetOkResponse = AzureSqlDatabasesSetOkResponses[keyof AzureSqlDatabasesSetOkResponses];
33493
33676
  export type AzureSqlDatabasesUnlinkData = {
@@ -33774,11 +33957,11 @@ export type AzureSqlServersPullData = {
33774
33957
  url: '/api/azure-sql-servers/{uuid}/pull/';
33775
33958
  };
33776
33959
  export type AzureSqlServersPullErrors = {
33777
- 409: PullConflictResponse;
33960
+ 409: Detail;
33778
33961
  };
33779
33962
  export type AzureSqlServersPullError = AzureSqlServersPullErrors[keyof AzureSqlServersPullErrors];
33780
33963
  export type AzureSqlServersPullResponses = {
33781
- 202: PullResponse;
33964
+ 202: Detail;
33782
33965
  };
33783
33966
  export type AzureSqlServersPullResponse = AzureSqlServersPullResponses[keyof AzureSqlServersPullResponses];
33784
33967
  export type AzureSqlServersSetErredData = {
@@ -33790,7 +33973,7 @@ export type AzureSqlServersSetErredData = {
33790
33973
  url: '/api/azure-sql-servers/{uuid}/set_erred/';
33791
33974
  };
33792
33975
  export type AzureSqlServersSetErredResponses = {
33793
- 200: SetErredResponse;
33976
+ 200: Detail;
33794
33977
  };
33795
33978
  export type AzureSqlServersSetErredResponse = AzureSqlServersSetErredResponses[keyof AzureSqlServersSetErredResponses];
33796
33979
  export type AzureSqlServersSetOkData = {
@@ -33802,7 +33985,7 @@ export type AzureSqlServersSetOkData = {
33802
33985
  url: '/api/azure-sql-servers/{uuid}/set_ok/';
33803
33986
  };
33804
33987
  export type AzureSqlServersSetOkResponses = {
33805
- 200: SetOkResponse;
33988
+ 200: Detail;
33806
33989
  };
33807
33990
  export type AzureSqlServersSetOkResponse = AzureSqlServersSetOkResponses[keyof AzureSqlServersSetOkResponses];
33808
33991
  export type AzureSqlServersUnlinkData = {
@@ -34077,11 +34260,11 @@ export type AzureVirtualmachinesPullData = {
34077
34260
  url: '/api/azure-virtualmachines/{uuid}/pull/';
34078
34261
  };
34079
34262
  export type AzureVirtualmachinesPullErrors = {
34080
- 409: PullConflictResponse;
34263
+ 409: Detail;
34081
34264
  };
34082
34265
  export type AzureVirtualmachinesPullError = AzureVirtualmachinesPullErrors[keyof AzureVirtualmachinesPullErrors];
34083
34266
  export type AzureVirtualmachinesPullResponses = {
34084
- 202: PullResponse;
34267
+ 202: Detail;
34085
34268
  };
34086
34269
  export type AzureVirtualmachinesPullResponse = AzureVirtualmachinesPullResponses[keyof AzureVirtualmachinesPullResponses];
34087
34270
  export type AzureVirtualmachinesRestartData = {
@@ -34093,7 +34276,7 @@ export type AzureVirtualmachinesRestartData = {
34093
34276
  url: '/api/azure-virtualmachines/{uuid}/restart/';
34094
34277
  };
34095
34278
  export type AzureVirtualmachinesRestartResponses = {
34096
- 200: AzureVirtualMachine;
34279
+ 202: Status;
34097
34280
  };
34098
34281
  export type AzureVirtualmachinesRestartResponse = AzureVirtualmachinesRestartResponses[keyof AzureVirtualmachinesRestartResponses];
34099
34282
  export type AzureVirtualmachinesSetErredData = {
@@ -34105,7 +34288,7 @@ export type AzureVirtualmachinesSetErredData = {
34105
34288
  url: '/api/azure-virtualmachines/{uuid}/set_erred/';
34106
34289
  };
34107
34290
  export type AzureVirtualmachinesSetErredResponses = {
34108
- 200: SetErredResponse;
34291
+ 200: Detail;
34109
34292
  };
34110
34293
  export type AzureVirtualmachinesSetErredResponse = AzureVirtualmachinesSetErredResponses[keyof AzureVirtualmachinesSetErredResponses];
34111
34294
  export type AzureVirtualmachinesSetOkData = {
@@ -34117,7 +34300,7 @@ export type AzureVirtualmachinesSetOkData = {
34117
34300
  url: '/api/azure-virtualmachines/{uuid}/set_ok/';
34118
34301
  };
34119
34302
  export type AzureVirtualmachinesSetOkResponses = {
34120
- 200: SetOkResponse;
34303
+ 200: Detail;
34121
34304
  };
34122
34305
  export type AzureVirtualmachinesSetOkResponse = AzureVirtualmachinesSetOkResponses[keyof AzureVirtualmachinesSetOkResponses];
34123
34306
  export type AzureVirtualmachinesStartData = {
@@ -34129,7 +34312,7 @@ export type AzureVirtualmachinesStartData = {
34129
34312
  url: '/api/azure-virtualmachines/{uuid}/start/';
34130
34313
  };
34131
34314
  export type AzureVirtualmachinesStartResponses = {
34132
- 200: AzureVirtualMachine;
34315
+ 202: Status;
34133
34316
  };
34134
34317
  export type AzureVirtualmachinesStartResponse = AzureVirtualmachinesStartResponses[keyof AzureVirtualmachinesStartResponses];
34135
34318
  export type AzureVirtualmachinesStopData = {
@@ -34141,7 +34324,7 @@ export type AzureVirtualmachinesStopData = {
34141
34324
  url: '/api/azure-virtualmachines/{uuid}/stop/';
34142
34325
  };
34143
34326
  export type AzureVirtualmachinesStopResponses = {
34144
- 200: AzureVirtualMachine;
34327
+ 202: Status;
34145
34328
  };
34146
34329
  export type AzureVirtualmachinesStopResponse = AzureVirtualmachinesStopResponses[keyof AzureVirtualmachinesStopResponses];
34147
34330
  export type AzureVirtualmachinesUnlinkData = {
@@ -34310,9 +34493,7 @@ export type BackendResourceRequestsSetDoneData = {
34310
34493
  url: '/api/backend-resource-requests/{uuid}/set_done/';
34311
34494
  };
34312
34495
  export type BackendResourceRequestsSetDoneResponses = {
34313
- 200: {
34314
- status?: string;
34315
- };
34496
+ 200: Status;
34316
34497
  };
34317
34498
  export type BackendResourceRequestsSetDoneResponse = BackendResourceRequestsSetDoneResponses[keyof BackendResourceRequestsSetDoneResponses];
34318
34499
  export type BackendResourceRequestsSetErredData = {
@@ -34324,9 +34505,7 @@ export type BackendResourceRequestsSetErredData = {
34324
34505
  url: '/api/backend-resource-requests/{uuid}/set_erred/';
34325
34506
  };
34326
34507
  export type BackendResourceRequestsSetErredResponses = {
34327
- 200: {
34328
- status?: string;
34329
- };
34508
+ 200: Status;
34330
34509
  };
34331
34510
  export type BackendResourceRequestsSetErredResponse = BackendResourceRequestsSetErredResponses[keyof BackendResourceRequestsSetErredResponses];
34332
34511
  export type BackendResourceRequestsStartProcessingData = {
@@ -34338,9 +34517,7 @@ export type BackendResourceRequestsStartProcessingData = {
34338
34517
  url: '/api/backend-resource-requests/{uuid}/start_processing/';
34339
34518
  };
34340
34519
  export type BackendResourceRequestsStartProcessingResponses = {
34341
- 200: {
34342
- status?: string;
34343
- };
34520
+ 200: Status;
34344
34521
  };
34345
34522
  export type BackendResourceRequestsStartProcessingResponse = BackendResourceRequestsStartProcessingResponses[keyof BackendResourceRequestsStartProcessingResponses];
34346
34523
  export type BackendResourcesListData = {
@@ -39233,11 +39410,11 @@ export type DigitaloceanDropletsPullData = {
39233
39410
  url: '/api/digitalocean-droplets/{uuid}/pull/';
39234
39411
  };
39235
39412
  export type DigitaloceanDropletsPullErrors = {
39236
- 409: PullConflictResponse;
39413
+ 409: Detail;
39237
39414
  };
39238
39415
  export type DigitaloceanDropletsPullError = DigitaloceanDropletsPullErrors[keyof DigitaloceanDropletsPullErrors];
39239
39416
  export type DigitaloceanDropletsPullResponses = {
39240
- 202: PullResponse;
39417
+ 202: Detail;
39241
39418
  };
39242
39419
  export type DigitaloceanDropletsPullResponse = DigitaloceanDropletsPullResponses[keyof DigitaloceanDropletsPullResponses];
39243
39420
  export type DigitaloceanDropletsResizeData = {
@@ -39273,7 +39450,7 @@ export type DigitaloceanDropletsSetErredData = {
39273
39450
  url: '/api/digitalocean-droplets/{uuid}/set_erred/';
39274
39451
  };
39275
39452
  export type DigitaloceanDropletsSetErredResponses = {
39276
- 200: SetErredResponse;
39453
+ 200: Detail;
39277
39454
  };
39278
39455
  export type DigitaloceanDropletsSetErredResponse = DigitaloceanDropletsSetErredResponses[keyof DigitaloceanDropletsSetErredResponses];
39279
39456
  export type DigitaloceanDropletsSetOkData = {
@@ -39285,7 +39462,7 @@ export type DigitaloceanDropletsSetOkData = {
39285
39462
  url: '/api/digitalocean-droplets/{uuid}/set_ok/';
39286
39463
  };
39287
39464
  export type DigitaloceanDropletsSetOkResponses = {
39288
- 200: SetOkResponse;
39465
+ 200: Detail;
39289
39466
  };
39290
39467
  export type DigitaloceanDropletsSetOkResponse = DigitaloceanDropletsSetOkResponses[keyof DigitaloceanDropletsSetOkResponses];
39291
39468
  export type DigitaloceanDropletsStartData = {
@@ -41540,11 +41717,9 @@ export type InvoiceSendFinancialReportByMailData = {
41540
41717
  url: '/api/invoice/send-financial-report-by-mail/';
41541
41718
  };
41542
41719
  export type InvoiceSendFinancialReportByMailResponses = {
41543
- /**
41544
- * No response body
41545
- */
41546
- 200: unknown;
41720
+ 202: Status;
41547
41721
  };
41722
+ export type InvoiceSendFinancialReportByMailResponse = InvoiceSendFinancialReportByMailResponses[keyof InvoiceSendFinancialReportByMailResponses];
41548
41723
  export type InvoicesListData = {
41549
41724
  body?: never;
41550
41725
  path?: never;
@@ -47947,9 +48122,7 @@ export type MarketplaceOrdersSetBackendIdData = {
47947
48122
  url: '/api/marketplace-orders/{uuid}/set_backend_id/';
47948
48123
  };
47949
48124
  export type MarketplaceOrdersSetBackendIdResponses = {
47950
- 200: {
47951
- status?: string;
47952
- };
48125
+ 200: Status;
47953
48126
  };
47954
48127
  export type MarketplaceOrdersSetBackendIdResponse = MarketplaceOrdersSetBackendIdResponses[keyof MarketplaceOrdersSetBackendIdResponses];
47955
48128
  export type MarketplaceOrdersSetConsumerInfoData = {
@@ -51260,7 +51433,7 @@ export type MarketplaceProviderOfferingsRefreshOfferingUsernamesData = {
51260
51433
  url: '/api/marketplace-provider-offerings/{uuid}/refresh_offering_usernames/';
51261
51434
  };
51262
51435
  export type MarketplaceProviderOfferingsRefreshOfferingUsernamesResponses = {
51263
- 200: ResourceResponseStatus;
51436
+ 200: Status;
51264
51437
  };
51265
51438
  export type MarketplaceProviderOfferingsRefreshOfferingUsernamesResponse = MarketplaceProviderOfferingsRefreshOfferingUsernamesResponses[keyof MarketplaceProviderOfferingsRefreshOfferingUsernamesResponses];
51266
51439
  export type MarketplaceProviderOfferingsRemoveOfferingComponentData = {
@@ -52837,7 +53010,7 @@ export type MarketplaceProviderResourcesAdjustDatesData = {
52837
53010
  url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/';
52838
53011
  };
52839
53012
  export type MarketplaceProviderResourcesAdjustDatesResponses = {
52840
- 200: ResourceResponseStatus;
53013
+ 200: Status;
52841
53014
  };
52842
53015
  export type MarketplaceProviderResourcesAdjustDatesResponse = MarketplaceProviderResourcesAdjustDatesResponses[keyof MarketplaceProviderResourcesAdjustDatesResponses];
52843
53016
  export type MarketplaceProviderResourcesDeleteUserData = {
@@ -53305,7 +53478,7 @@ export type MarketplaceProviderResourcesSetBackendIdData = {
53305
53478
  url: '/api/marketplace-provider-resources/{uuid}/set_backend_id/';
53306
53479
  };
53307
53480
  export type MarketplaceProviderResourcesSetBackendIdResponses = {
53308
- 200: ResourceResponseStatus;
53481
+ 200: Status;
53309
53482
  };
53310
53483
  export type MarketplaceProviderResourcesSetBackendIdResponse = MarketplaceProviderResourcesSetBackendIdResponses[keyof MarketplaceProviderResourcesSetBackendIdResponses];
53311
53484
  export type MarketplaceProviderResourcesSetBackendMetadataData = {
@@ -53317,7 +53490,7 @@ export type MarketplaceProviderResourcesSetBackendMetadataData = {
53317
53490
  url: '/api/marketplace-provider-resources/{uuid}/set_backend_metadata/';
53318
53491
  };
53319
53492
  export type MarketplaceProviderResourcesSetBackendMetadataResponses = {
53320
- 200: ResourceResponseStatus;
53493
+ 200: Status;
53321
53494
  };
53322
53495
  export type MarketplaceProviderResourcesSetBackendMetadataResponse = MarketplaceProviderResourcesSetBackendMetadataResponses[keyof MarketplaceProviderResourcesSetBackendMetadataResponses];
53323
53496
  export type MarketplaceProviderResourcesSetDownscaledData = {
@@ -53329,9 +53502,7 @@ export type MarketplaceProviderResourcesSetDownscaledData = {
53329
53502
  url: '/api/marketplace-provider-resources/{uuid}/set_downscaled/';
53330
53503
  };
53331
53504
  export type MarketplaceProviderResourcesSetDownscaledResponses = {
53332
- 200: {
53333
- status?: string;
53334
- };
53505
+ 200: Status;
53335
53506
  };
53336
53507
  export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
53337
53508
  export type MarketplaceProviderResourcesSetEffectiveIdData = {
@@ -53343,7 +53514,7 @@ export type MarketplaceProviderResourcesSetEffectiveIdData = {
53343
53514
  url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
53344
53515
  };
53345
53516
  export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
53346
- 200: ResourceResponseStatus;
53517
+ 200: Status;
53347
53518
  };
53348
53519
  export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
53349
53520
  export type MarketplaceProviderResourcesSetEndDateData = {
@@ -53397,7 +53568,7 @@ export type MarketplaceProviderResourcesSetEndpointsData = {
53397
53568
  url: '/api/marketplace-provider-resources/{uuid}/set_endpoints/';
53398
53569
  };
53399
53570
  export type MarketplaceProviderResourcesSetEndpointsResponses = {
53400
- 200: ResourceResponseStatus;
53571
+ 200: Status;
53401
53572
  };
53402
53573
  export type MarketplaceProviderResourcesSetEndpointsResponse = MarketplaceProviderResourcesSetEndpointsResponses[keyof MarketplaceProviderResourcesSetEndpointsResponses];
53403
53574
  export type MarketplaceProviderResourcesSetLimitsData = {
@@ -53409,7 +53580,7 @@ export type MarketplaceProviderResourcesSetLimitsData = {
53409
53580
  url: '/api/marketplace-provider-resources/{uuid}/set_limits/';
53410
53581
  };
53411
53582
  export type MarketplaceProviderResourcesSetLimitsResponses = {
53412
- 200: ResourceResponseStatus;
53583
+ 200: Status;
53413
53584
  };
53414
53585
  export type MarketplaceProviderResourcesSetLimitsResponse = MarketplaceProviderResourcesSetLimitsResponses[keyof MarketplaceProviderResourcesSetLimitsResponses];
53415
53586
  export type MarketplaceProviderResourcesSetPausedData = {
@@ -53421,9 +53592,7 @@ export type MarketplaceProviderResourcesSetPausedData = {
53421
53592
  url: '/api/marketplace-provider-resources/{uuid}/set_paused/';
53422
53593
  };
53423
53594
  export type MarketplaceProviderResourcesSetPausedResponses = {
53424
- 200: {
53425
- status?: string;
53426
- };
53595
+ 200: Status;
53427
53596
  };
53428
53597
  export type MarketplaceProviderResourcesSetPausedResponse = MarketplaceProviderResourcesSetPausedResponses[keyof MarketplaceProviderResourcesSetPausedResponses];
53429
53598
  export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
@@ -53435,9 +53604,7 @@ export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
53435
53604
  url: '/api/marketplace-provider-resources/{uuid}/set_restrict_member_access/';
53436
53605
  };
53437
53606
  export type MarketplaceProviderResourcesSetRestrictMemberAccessResponses = {
53438
- 200: {
53439
- status?: string;
53440
- };
53607
+ 200: Status;
53441
53608
  };
53442
53609
  export type MarketplaceProviderResourcesSetRestrictMemberAccessResponse = MarketplaceProviderResourcesSetRestrictMemberAccessResponses[keyof MarketplaceProviderResourcesSetRestrictMemberAccessResponses];
53443
53610
  export type MarketplaceProviderResourcesSetSlugData = {
@@ -53449,9 +53616,7 @@ export type MarketplaceProviderResourcesSetSlugData = {
53449
53616
  url: '/api/marketplace-provider-resources/{uuid}/set_slug/';
53450
53617
  };
53451
53618
  export type MarketplaceProviderResourcesSetSlugResponses = {
53452
- 200: {
53453
- status?: string;
53454
- };
53619
+ 200: Status;
53455
53620
  };
53456
53621
  export type MarketplaceProviderResourcesSetSlugResponse = MarketplaceProviderResourcesSetSlugResponses[keyof MarketplaceProviderResourcesSetSlugResponses];
53457
53622
  export type MarketplaceProviderResourcesSetStateOkData = {
@@ -53463,7 +53628,7 @@ export type MarketplaceProviderResourcesSetStateOkData = {
53463
53628
  url: '/api/marketplace-provider-resources/{uuid}/set_state_ok/';
53464
53629
  };
53465
53630
  export type MarketplaceProviderResourcesSetStateOkResponses = {
53466
- 200: ResourceResponseStatus;
53631
+ 200: Status;
53467
53632
  };
53468
53633
  export type MarketplaceProviderResourcesSetStateOkResponse = MarketplaceProviderResourcesSetStateOkResponses[keyof MarketplaceProviderResourcesSetStateOkResponses];
53469
53634
  export type MarketplaceProviderResourcesSubmitReportData = {
@@ -53475,7 +53640,7 @@ export type MarketplaceProviderResourcesSubmitReportData = {
53475
53640
  url: '/api/marketplace-provider-resources/{uuid}/submit_report/';
53476
53641
  };
53477
53642
  export type MarketplaceProviderResourcesSubmitReportResponses = {
53478
- 200: ResourceResponseStatus;
53643
+ 200: Status;
53479
53644
  };
53480
53645
  export type MarketplaceProviderResourcesSubmitReportResponse = MarketplaceProviderResourcesSubmitReportResponses[keyof MarketplaceProviderResourcesSubmitReportResponses];
53481
53646
  export type MarketplaceProviderResourcesTeamListData = {
@@ -53543,7 +53708,7 @@ export type MarketplaceProviderResourcesUpdateOptionsErrors = {
53543
53708
  409: unknown;
53544
53709
  };
53545
53710
  export type MarketplaceProviderResourcesUpdateOptionsResponses = {
53546
- 200: ResourceResponseStatus;
53711
+ 200: Status;
53547
53712
  201: OrderUuid;
53548
53713
  };
53549
53714
  export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
@@ -53556,7 +53721,7 @@ export type MarketplaceProviderResourcesUpdateOptionsDirectData = {
53556
53721
  url: '/api/marketplace-provider-resources/{uuid}/update_options_direct/';
53557
53722
  };
53558
53723
  export type MarketplaceProviderResourcesUpdateOptionsDirectResponses = {
53559
- 200: ResourceResponseStatus;
53724
+ 200: Status;
53560
53725
  };
53561
53726
  export type MarketplaceProviderResourcesUpdateOptionsDirectResponse = MarketplaceProviderResourcesUpdateOptionsDirectResponses[keyof MarketplaceProviderResourcesUpdateOptionsDirectResponses];
53562
53727
  export type MarketplaceProviderResourcesUpdateUserData = {
@@ -55017,7 +55182,7 @@ export type MarketplaceResourcesAdjustDatesData = {
55017
55182
  url: '/api/marketplace-resources/{uuid}/adjust_dates/';
55018
55183
  };
55019
55184
  export type MarketplaceResourcesAdjustDatesResponses = {
55020
- 200: ResourceResponseStatus;
55185
+ 200: Status;
55021
55186
  };
55022
55187
  export type MarketplaceResourcesAdjustDatesResponse = MarketplaceResourcesAdjustDatesResponses[keyof MarketplaceResourcesAdjustDatesResponses];
55023
55188
  export type MarketplaceResourcesDeleteUserData = {
@@ -55479,9 +55644,7 @@ export type MarketplaceResourcesSetDownscaledData = {
55479
55644
  url: '/api/marketplace-resources/{uuid}/set_downscaled/';
55480
55645
  };
55481
55646
  export type MarketplaceResourcesSetDownscaledResponses = {
55482
- 200: {
55483
- status?: string;
55484
- };
55647
+ 200: Status;
55485
55648
  };
55486
55649
  export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
55487
55650
  export type MarketplaceResourcesSetEndDateData = {
@@ -55521,9 +55684,7 @@ export type MarketplaceResourcesSetPausedData = {
55521
55684
  url: '/api/marketplace-resources/{uuid}/set_paused/';
55522
55685
  };
55523
55686
  export type MarketplaceResourcesSetPausedResponses = {
55524
- 200: {
55525
- status?: string;
55526
- };
55687
+ 200: Status;
55527
55688
  };
55528
55689
  export type MarketplaceResourcesSetPausedResponse = MarketplaceResourcesSetPausedResponses[keyof MarketplaceResourcesSetPausedResponses];
55529
55690
  export type MarketplaceResourcesSetRestrictMemberAccessData = {
@@ -55535,9 +55696,7 @@ export type MarketplaceResourcesSetRestrictMemberAccessData = {
55535
55696
  url: '/api/marketplace-resources/{uuid}/set_restrict_member_access/';
55536
55697
  };
55537
55698
  export type MarketplaceResourcesSetRestrictMemberAccessResponses = {
55538
- 200: {
55539
- status?: string;
55540
- };
55699
+ 200: Status;
55541
55700
  };
55542
55701
  export type MarketplaceResourcesSetRestrictMemberAccessResponse = MarketplaceResourcesSetRestrictMemberAccessResponses[keyof MarketplaceResourcesSetRestrictMemberAccessResponses];
55543
55702
  export type MarketplaceResourcesSetSlugData = {
@@ -55549,9 +55708,7 @@ export type MarketplaceResourcesSetSlugData = {
55549
55708
  url: '/api/marketplace-resources/{uuid}/set_slug/';
55550
55709
  };
55551
55710
  export type MarketplaceResourcesSetSlugResponses = {
55552
- 200: {
55553
- status?: string;
55554
- };
55711
+ 200: Status;
55555
55712
  };
55556
55713
  export type MarketplaceResourcesSetSlugResponse = MarketplaceResourcesSetSlugResponses[keyof MarketplaceResourcesSetSlugResponses];
55557
55714
  export type MarketplaceResourcesSwitchPlanData = {
@@ -55848,7 +56005,7 @@ export type MarketplaceResourcesUpdateOptionsErrors = {
55848
56005
  409: unknown;
55849
56006
  };
55850
56007
  export type MarketplaceResourcesUpdateOptionsResponses = {
55851
- 200: ResourceResponseStatus;
56008
+ 200: Status;
55852
56009
  201: OrderUuid;
55853
56010
  };
55854
56011
  export type MarketplaceResourcesUpdateOptionsResponse = MarketplaceResourcesUpdateOptionsResponses[keyof MarketplaceResourcesUpdateOptionsResponses];
@@ -63606,11 +63763,11 @@ export type OpenportalAllocationsPullData = {
63606
63763
  url: '/api/openportal-allocations/{uuid}/pull/';
63607
63764
  };
63608
63765
  export type OpenportalAllocationsPullErrors = {
63609
- 409: PullConflictResponse;
63766
+ 409: Detail;
63610
63767
  };
63611
63768
  export type OpenportalAllocationsPullError = OpenportalAllocationsPullErrors[keyof OpenportalAllocationsPullErrors];
63612
63769
  export type OpenportalAllocationsPullResponses = {
63613
- 202: PullResponse;
63770
+ 202: Detail;
63614
63771
  };
63615
63772
  export type OpenportalAllocationsPullResponse = OpenportalAllocationsPullResponses[keyof OpenportalAllocationsPullResponses];
63616
63773
  export type OpenportalAllocationsSetErredData = {
@@ -63622,7 +63779,7 @@ export type OpenportalAllocationsSetErredData = {
63622
63779
  url: '/api/openportal-allocations/{uuid}/set_erred/';
63623
63780
  };
63624
63781
  export type OpenportalAllocationsSetErredResponses = {
63625
- 200: SetErredResponse;
63782
+ 200: Detail;
63626
63783
  };
63627
63784
  export type OpenportalAllocationsSetErredResponse = OpenportalAllocationsSetErredResponses[keyof OpenportalAllocationsSetErredResponses];
63628
63785
  export type OpenportalAllocationsSetLimitsData = {
@@ -63634,7 +63791,7 @@ export type OpenportalAllocationsSetLimitsData = {
63634
63791
  url: '/api/openportal-allocations/{uuid}/set_limits/';
63635
63792
  };
63636
63793
  export type OpenportalAllocationsSetLimitsResponses = {
63637
- 200: AllocationSetLimits;
63794
+ 202: Status;
63638
63795
  };
63639
63796
  export type OpenportalAllocationsSetLimitsResponse = OpenportalAllocationsSetLimitsResponses[keyof OpenportalAllocationsSetLimitsResponses];
63640
63797
  export type OpenportalAllocationsSetOkData = {
@@ -63646,7 +63803,7 @@ export type OpenportalAllocationsSetOkData = {
63646
63803
  url: '/api/openportal-allocations/{uuid}/set_ok/';
63647
63804
  };
63648
63805
  export type OpenportalAllocationsSetOkResponses = {
63649
- 200: SetOkResponse;
63806
+ 200: Detail;
63650
63807
  };
63651
63808
  export type OpenportalAllocationsSetOkResponse = OpenportalAllocationsSetOkResponses[keyof OpenportalAllocationsSetOkResponses];
63652
63809
  export type OpenportalAllocationsUnlinkData = {
@@ -64568,11 +64725,11 @@ export type OpenportalRemoteAllocationsPullData = {
64568
64725
  url: '/api/openportal-remote-allocations/{uuid}/pull/';
64569
64726
  };
64570
64727
  export type OpenportalRemoteAllocationsPullErrors = {
64571
- 409: PullConflictResponse;
64728
+ 409: Detail;
64572
64729
  };
64573
64730
  export type OpenportalRemoteAllocationsPullError = OpenportalRemoteAllocationsPullErrors[keyof OpenportalRemoteAllocationsPullErrors];
64574
64731
  export type OpenportalRemoteAllocationsPullResponses = {
64575
- 202: PullResponse;
64732
+ 202: Detail;
64576
64733
  };
64577
64734
  export type OpenportalRemoteAllocationsPullResponse = OpenportalRemoteAllocationsPullResponses[keyof OpenportalRemoteAllocationsPullResponses];
64578
64735
  export type OpenportalRemoteAllocationsSetErredData = {
@@ -64584,7 +64741,7 @@ export type OpenportalRemoteAllocationsSetErredData = {
64584
64741
  url: '/api/openportal-remote-allocations/{uuid}/set_erred/';
64585
64742
  };
64586
64743
  export type OpenportalRemoteAllocationsSetErredResponses = {
64587
- 200: SetErredResponse;
64744
+ 200: Detail;
64588
64745
  };
64589
64746
  export type OpenportalRemoteAllocationsSetErredResponse = OpenportalRemoteAllocationsSetErredResponses[keyof OpenportalRemoteAllocationsSetErredResponses];
64590
64747
  export type OpenportalRemoteAllocationsSetLimitsData = {
@@ -64596,7 +64753,7 @@ export type OpenportalRemoteAllocationsSetLimitsData = {
64596
64753
  url: '/api/openportal-remote-allocations/{uuid}/set_limits/';
64597
64754
  };
64598
64755
  export type OpenportalRemoteAllocationsSetLimitsResponses = {
64599
- 200: RemoteAllocationSetLimits;
64756
+ 202: Status;
64600
64757
  };
64601
64758
  export type OpenportalRemoteAllocationsSetLimitsResponse = OpenportalRemoteAllocationsSetLimitsResponses[keyof OpenportalRemoteAllocationsSetLimitsResponses];
64602
64759
  export type OpenportalRemoteAllocationsSetOkData = {
@@ -64608,7 +64765,7 @@ export type OpenportalRemoteAllocationsSetOkData = {
64608
64765
  url: '/api/openportal-remote-allocations/{uuid}/set_ok/';
64609
64766
  };
64610
64767
  export type OpenportalRemoteAllocationsSetOkResponses = {
64611
- 200: SetOkResponse;
64768
+ 200: Detail;
64612
64769
  };
64613
64770
  export type OpenportalRemoteAllocationsSetOkResponse = OpenportalRemoteAllocationsSetOkResponses[keyof OpenportalRemoteAllocationsSetOkResponses];
64614
64771
  export type OpenportalRemoteAllocationsUnlinkData = {
@@ -65447,7 +65604,9 @@ export type OpenportalOfferingMappingRetrieveData = {
65447
65604
  url: '/api/openportal/offering_mapping/';
65448
65605
  };
65449
65606
  export type OpenportalOfferingMappingRetrieveResponses = {
65450
- 200: OfferingMappingResponse;
65607
+ 200: {
65608
+ [key: string]: unknown;
65609
+ };
65451
65610
  };
65452
65611
  export type OpenportalOfferingMappingRetrieveResponse = OpenportalOfferingMappingRetrieveResponses[keyof OpenportalOfferingMappingRetrieveResponses];
65453
65612
  export type OpenportalProjectMappingRetrieveData = {
@@ -65462,7 +65621,9 @@ export type OpenportalProjectMappingRetrieveData = {
65462
65621
  url: '/api/openportal/project_mapping/';
65463
65622
  };
65464
65623
  export type OpenportalProjectMappingRetrieveResponses = {
65465
- 200: ProjectMappingResponse;
65624
+ 200: {
65625
+ [key: string]: unknown;
65626
+ };
65466
65627
  };
65467
65628
  export type OpenportalProjectMappingRetrieveResponse = OpenportalProjectMappingRetrieveResponses[keyof OpenportalProjectMappingRetrieveResponses];
65468
65629
  export type OpenportalUserMappingRetrieveData = {
@@ -65477,7 +65638,9 @@ export type OpenportalUserMappingRetrieveData = {
65477
65638
  url: '/api/openportal/user_mapping/';
65478
65639
  };
65479
65640
  export type OpenportalUserMappingRetrieveResponses = {
65480
- 200: UserMappingResponse;
65641
+ 200: {
65642
+ [key: string]: unknown;
65643
+ };
65481
65644
  };
65482
65645
  export type OpenportalUserMappingRetrieveResponse = OpenportalUserMappingRetrieveResponses[keyof OpenportalUserMappingRetrieveResponses];
65483
65646
  export type OpenstackBackupsListData = {
@@ -65755,11 +65918,11 @@ export type OpenstackBackupsPullData = {
65755
65918
  url: '/api/openstack-backups/{uuid}/pull/';
65756
65919
  };
65757
65920
  export type OpenstackBackupsPullErrors = {
65758
- 409: PullConflictResponse;
65921
+ 409: Detail;
65759
65922
  };
65760
65923
  export type OpenstackBackupsPullError = OpenstackBackupsPullErrors[keyof OpenstackBackupsPullErrors];
65761
65924
  export type OpenstackBackupsPullResponses = {
65762
- 202: PullResponse;
65925
+ 202: Detail;
65763
65926
  };
65764
65927
  export type OpenstackBackupsPullResponse = OpenstackBackupsPullResponses[keyof OpenstackBackupsPullResponses];
65765
65928
  export type OpenstackBackupsRestoreData = {
@@ -65783,7 +65946,7 @@ export type OpenstackBackupsSetErredData = {
65783
65946
  url: '/api/openstack-backups/{uuid}/set_erred/';
65784
65947
  };
65785
65948
  export type OpenstackBackupsSetErredResponses = {
65786
- 200: SetErredResponse;
65949
+ 200: Detail;
65787
65950
  };
65788
65951
  export type OpenstackBackupsSetErredResponse = OpenstackBackupsSetErredResponses[keyof OpenstackBackupsSetErredResponses];
65789
65952
  export type OpenstackBackupsSetOkData = {
@@ -65795,7 +65958,7 @@ export type OpenstackBackupsSetOkData = {
65795
65958
  url: '/api/openstack-backups/{uuid}/set_ok/';
65796
65959
  };
65797
65960
  export type OpenstackBackupsSetOkResponses = {
65798
- 200: SetOkResponse;
65961
+ 200: Detail;
65799
65962
  };
65800
65963
  export type OpenstackBackupsSetOkResponse = OpenstackBackupsSetOkResponses[keyof OpenstackBackupsSetOkResponses];
65801
65964
  export type OpenstackBackupsUnlinkData = {
@@ -66320,11 +66483,9 @@ export type OpenstackFloatingIpsAttachToPortData = {
66320
66483
  url: '/api/openstack-floating-ips/{uuid}/attach_to_port/';
66321
66484
  };
66322
66485
  export type OpenstackFloatingIpsAttachToPortResponses = {
66323
- /**
66324
- * No response body
66325
- */
66326
- 200: unknown;
66486
+ 202: Status;
66327
66487
  };
66488
+ export type OpenstackFloatingIpsAttachToPortResponse = OpenstackFloatingIpsAttachToPortResponses[keyof OpenstackFloatingIpsAttachToPortResponses];
66328
66489
  export type OpenstackFloatingIpsDetachFromPortData = {
66329
66490
  body?: never;
66330
66491
  path: {
@@ -66334,11 +66495,9 @@ export type OpenstackFloatingIpsDetachFromPortData = {
66334
66495
  url: '/api/openstack-floating-ips/{uuid}/detach_from_port/';
66335
66496
  };
66336
66497
  export type OpenstackFloatingIpsDetachFromPortResponses = {
66337
- /**
66338
- * No response body
66339
- */
66340
- 200: unknown;
66498
+ 202: Status;
66341
66499
  };
66500
+ export type OpenstackFloatingIpsDetachFromPortResponse = OpenstackFloatingIpsDetachFromPortResponses[keyof OpenstackFloatingIpsDetachFromPortResponses];
66342
66501
  export type OpenstackFloatingIpsPullData = {
66343
66502
  body?: never;
66344
66503
  path: {
@@ -66348,11 +66507,11 @@ export type OpenstackFloatingIpsPullData = {
66348
66507
  url: '/api/openstack-floating-ips/{uuid}/pull/';
66349
66508
  };
66350
66509
  export type OpenstackFloatingIpsPullErrors = {
66351
- 409: PullConflictResponse;
66510
+ 409: Detail;
66352
66511
  };
66353
66512
  export type OpenstackFloatingIpsPullError = OpenstackFloatingIpsPullErrors[keyof OpenstackFloatingIpsPullErrors];
66354
66513
  export type OpenstackFloatingIpsPullResponses = {
66355
- 202: PullResponse;
66514
+ 202: Detail;
66356
66515
  };
66357
66516
  export type OpenstackFloatingIpsPullResponse = OpenstackFloatingIpsPullResponses[keyof OpenstackFloatingIpsPullResponses];
66358
66517
  export type OpenstackFloatingIpsSetErredData = {
@@ -66364,7 +66523,7 @@ export type OpenstackFloatingIpsSetErredData = {
66364
66523
  url: '/api/openstack-floating-ips/{uuid}/set_erred/';
66365
66524
  };
66366
66525
  export type OpenstackFloatingIpsSetErredResponses = {
66367
- 200: SetErredResponse;
66526
+ 200: Detail;
66368
66527
  };
66369
66528
  export type OpenstackFloatingIpsSetErredResponse = OpenstackFloatingIpsSetErredResponses[keyof OpenstackFloatingIpsSetErredResponses];
66370
66529
  export type OpenstackFloatingIpsSetOkData = {
@@ -66376,7 +66535,7 @@ export type OpenstackFloatingIpsSetOkData = {
66376
66535
  url: '/api/openstack-floating-ips/{uuid}/set_ok/';
66377
66536
  };
66378
66537
  export type OpenstackFloatingIpsSetOkResponses = {
66379
- 200: SetOkResponse;
66538
+ 200: Detail;
66380
66539
  };
66381
66540
  export type OpenstackFloatingIpsSetOkResponse = OpenstackFloatingIpsSetOkResponses[keyof OpenstackFloatingIpsSetOkResponses];
66382
66541
  export type OpenstackFloatingIpsUnlinkData = {
@@ -66403,11 +66562,9 @@ export type OpenstackFloatingIpsUpdateDescriptionData = {
66403
66562
  url: '/api/openstack-floating-ips/{uuid}/update_description/';
66404
66563
  };
66405
66564
  export type OpenstackFloatingIpsUpdateDescriptionResponses = {
66406
- /**
66407
- * No response body
66408
- */
66409
- 200: unknown;
66565
+ 202: Status;
66410
66566
  };
66567
+ export type OpenstackFloatingIpsUpdateDescriptionResponse = OpenstackFloatingIpsUpdateDescriptionResponses[keyof OpenstackFloatingIpsUpdateDescriptionResponses];
66411
66568
  export type OpenstackHealthMonitorsListData = {
66412
66569
  body?: never;
66413
66570
  path?: never;
@@ -67352,11 +67509,9 @@ export type OpenstackInstancesChangeFlavorData = {
67352
67509
  url: '/api/openstack-instances/{uuid}/change_flavor/';
67353
67510
  };
67354
67511
  export type OpenstackInstancesChangeFlavorResponses = {
67355
- /**
67356
- * No response body
67357
- */
67358
- 200: unknown;
67512
+ 202: Status;
67359
67513
  };
67514
+ export type OpenstackInstancesChangeFlavorResponse = OpenstackInstancesChangeFlavorResponses[keyof OpenstackInstancesChangeFlavorResponses];
67360
67515
  export type OpenstackInstancesConsoleRetrieveData = {
67361
67516
  body?: never;
67362
67517
  path: {
@@ -67455,11 +67610,11 @@ export type OpenstackInstancesPullData = {
67455
67610
  url: '/api/openstack-instances/{uuid}/pull/';
67456
67611
  };
67457
67612
  export type OpenstackInstancesPullErrors = {
67458
- 409: PullConflictResponse;
67613
+ 409: Detail;
67459
67614
  };
67460
67615
  export type OpenstackInstancesPullError = OpenstackInstancesPullErrors[keyof OpenstackInstancesPullErrors];
67461
67616
  export type OpenstackInstancesPullResponses = {
67462
- 202: PullResponse;
67617
+ 202: Detail;
67463
67618
  };
67464
67619
  export type OpenstackInstancesPullResponse = OpenstackInstancesPullResponses[keyof OpenstackInstancesPullResponses];
67465
67620
  export type OpenstackInstancesRescueData = {
@@ -67471,11 +67626,9 @@ export type OpenstackInstancesRescueData = {
67471
67626
  url: '/api/openstack-instances/{uuid}/rescue/';
67472
67627
  };
67473
67628
  export type OpenstackInstancesRescueResponses = {
67474
- /**
67475
- * No response body
67476
- */
67477
- 200: unknown;
67629
+ 202: Status;
67478
67630
  };
67631
+ export type OpenstackInstancesRescueResponse = OpenstackInstancesRescueResponses[keyof OpenstackInstancesRescueResponses];
67479
67632
  export type OpenstackInstancesRestartData = {
67480
67633
  body?: never;
67481
67634
  path: {
@@ -67485,11 +67638,9 @@ export type OpenstackInstancesRestartData = {
67485
67638
  url: '/api/openstack-instances/{uuid}/restart/';
67486
67639
  };
67487
67640
  export type OpenstackInstancesRestartResponses = {
67488
- /**
67489
- * No response body
67490
- */
67491
- 200: unknown;
67641
+ 202: Status;
67492
67642
  };
67643
+ export type OpenstackInstancesRestartResponse = OpenstackInstancesRestartResponses[keyof OpenstackInstancesRestartResponses];
67493
67644
  export type OpenstackInstancesSetErredData = {
67494
67645
  body?: SetErredRequest;
67495
67646
  path: {
@@ -67499,7 +67650,7 @@ export type OpenstackInstancesSetErredData = {
67499
67650
  url: '/api/openstack-instances/{uuid}/set_erred/';
67500
67651
  };
67501
67652
  export type OpenstackInstancesSetErredResponses = {
67502
- 200: SetErredResponse;
67653
+ 200: Detail;
67503
67654
  };
67504
67655
  export type OpenstackInstancesSetErredResponse = OpenstackInstancesSetErredResponses[keyof OpenstackInstancesSetErredResponses];
67505
67656
  export type OpenstackInstancesSetOkData = {
@@ -67511,7 +67662,7 @@ export type OpenstackInstancesSetOkData = {
67511
67662
  url: '/api/openstack-instances/{uuid}/set_ok/';
67512
67663
  };
67513
67664
  export type OpenstackInstancesSetOkResponses = {
67514
- 200: SetOkResponse;
67665
+ 200: Detail;
67515
67666
  };
67516
67667
  export type OpenstackInstancesSetOkResponse = OpenstackInstancesSetOkResponses[keyof OpenstackInstancesSetOkResponses];
67517
67668
  export type OpenstackInstancesStartData = {
@@ -67523,11 +67674,9 @@ export type OpenstackInstancesStartData = {
67523
67674
  url: '/api/openstack-instances/{uuid}/start/';
67524
67675
  };
67525
67676
  export type OpenstackInstancesStartResponses = {
67526
- /**
67527
- * No response body
67528
- */
67529
- 200: unknown;
67677
+ 202: Status;
67530
67678
  };
67679
+ export type OpenstackInstancesStartResponse = OpenstackInstancesStartResponses[keyof OpenstackInstancesStartResponses];
67531
67680
  export type OpenstackInstancesStopData = {
67532
67681
  body?: never;
67533
67682
  path: {
@@ -67537,11 +67686,9 @@ export type OpenstackInstancesStopData = {
67537
67686
  url: '/api/openstack-instances/{uuid}/stop/';
67538
67687
  };
67539
67688
  export type OpenstackInstancesStopResponses = {
67540
- /**
67541
- * No response body
67542
- */
67543
- 200: unknown;
67689
+ 202: Status;
67544
67690
  };
67691
+ export type OpenstackInstancesStopResponse = OpenstackInstancesStopResponses[keyof OpenstackInstancesStopResponses];
67545
67692
  export type OpenstackInstancesUnlinkData = {
67546
67693
  body?: never;
67547
67694
  path: {
@@ -67566,11 +67713,9 @@ export type OpenstackInstancesUnrescueData = {
67566
67713
  url: '/api/openstack-instances/{uuid}/unrescue/';
67567
67714
  };
67568
67715
  export type OpenstackInstancesUnrescueResponses = {
67569
- /**
67570
- * No response body
67571
- */
67572
- 200: unknown;
67716
+ 202: Status;
67573
67717
  };
67718
+ export type OpenstackInstancesUnrescueResponse = OpenstackInstancesUnrescueResponses[keyof OpenstackInstancesUnrescueResponses];
67574
67719
  export type OpenstackInstancesUpdateAllowedAddressPairsData = {
67575
67720
  body: OpenStackInstanceAllowedAddressPairsUpdateRequest;
67576
67721
  path: {
@@ -67580,11 +67725,9 @@ export type OpenstackInstancesUpdateAllowedAddressPairsData = {
67580
67725
  url: '/api/openstack-instances/{uuid}/update_allowed_address_pairs/';
67581
67726
  };
67582
67727
  export type OpenstackInstancesUpdateAllowedAddressPairsResponses = {
67583
- /**
67584
- * No response body
67585
- */
67586
- 200: unknown;
67728
+ 202: Status;
67587
67729
  };
67730
+ export type OpenstackInstancesUpdateAllowedAddressPairsResponse = OpenstackInstancesUpdateAllowedAddressPairsResponses[keyof OpenstackInstancesUpdateAllowedAddressPairsResponses];
67588
67731
  export type OpenstackInstancesUpdateFloatingIpsData = {
67589
67732
  body?: OpenStackInstanceFloatingIpsUpdateRequest;
67590
67733
  path: {
@@ -67594,11 +67737,9 @@ export type OpenstackInstancesUpdateFloatingIpsData = {
67594
67737
  url: '/api/openstack-instances/{uuid}/update_floating_ips/';
67595
67738
  };
67596
67739
  export type OpenstackInstancesUpdateFloatingIpsResponses = {
67597
- /**
67598
- * No response body
67599
- */
67600
- 200: unknown;
67740
+ 202: Status;
67601
67741
  };
67742
+ export type OpenstackInstancesUpdateFloatingIpsResponse = OpenstackInstancesUpdateFloatingIpsResponses[keyof OpenstackInstancesUpdateFloatingIpsResponses];
67602
67743
  export type OpenstackInstancesUpdatePortsData = {
67603
67744
  body: OpenStackInstancePortsUpdateRequest;
67604
67745
  path: {
@@ -67608,11 +67749,9 @@ export type OpenstackInstancesUpdatePortsData = {
67608
67749
  url: '/api/openstack-instances/{uuid}/update_ports/';
67609
67750
  };
67610
67751
  export type OpenstackInstancesUpdatePortsResponses = {
67611
- /**
67612
- * No response body
67613
- */
67614
- 200: unknown;
67752
+ 202: Status;
67615
67753
  };
67754
+ export type OpenstackInstancesUpdatePortsResponse = OpenstackInstancesUpdatePortsResponses[keyof OpenstackInstancesUpdatePortsResponses];
67616
67755
  export type OpenstackInstancesUpdateSecurityGroupsData = {
67617
67756
  body: OpenStackInstanceSecurityGroupsUpdateRequest;
67618
67757
  path: {
@@ -67622,11 +67761,9 @@ export type OpenstackInstancesUpdateSecurityGroupsData = {
67622
67761
  url: '/api/openstack-instances/{uuid}/update_security_groups/';
67623
67762
  };
67624
67763
  export type OpenstackInstancesUpdateSecurityGroupsResponses = {
67625
- /**
67626
- * No response body
67627
- */
67628
- 200: unknown;
67764
+ 202: Status;
67629
67765
  };
67766
+ export type OpenstackInstancesUpdateSecurityGroupsResponse = OpenstackInstancesUpdateSecurityGroupsResponses[keyof OpenstackInstancesUpdateSecurityGroupsResponses];
67630
67767
  export type OpenstackListenersListData = {
67631
67768
  body?: never;
67632
67769
  path?: never;
@@ -68784,11 +68921,11 @@ export type OpenstackNetworksPullData = {
68784
68921
  url: '/api/openstack-networks/{uuid}/pull/';
68785
68922
  };
68786
68923
  export type OpenstackNetworksPullErrors = {
68787
- 409: PullConflictResponse;
68924
+ 409: Detail;
68788
68925
  };
68789
68926
  export type OpenstackNetworksPullError = OpenstackNetworksPullErrors[keyof OpenstackNetworksPullErrors];
68790
68927
  export type OpenstackNetworksPullResponses = {
68791
- 202: PullResponse;
68928
+ 202: Detail;
68792
68929
  };
68793
68930
  export type OpenstackNetworksPullResponse = OpenstackNetworksPullResponses[keyof OpenstackNetworksPullResponses];
68794
68931
  export type OpenstackNetworksRbacPolicyCreateData = {
@@ -68831,7 +68968,7 @@ export type OpenstackNetworksSetErredData = {
68831
68968
  url: '/api/openstack-networks/{uuid}/set_erred/';
68832
68969
  };
68833
68970
  export type OpenstackNetworksSetErredResponses = {
68834
- 200: SetErredResponse;
68971
+ 200: Detail;
68835
68972
  };
68836
68973
  export type OpenstackNetworksSetErredResponse = OpenstackNetworksSetErredResponses[keyof OpenstackNetworksSetErredResponses];
68837
68974
  export type OpenstackNetworksSetMtuData = {
@@ -68855,7 +68992,7 @@ export type OpenstackNetworksSetOkData = {
68855
68992
  url: '/api/openstack-networks/{uuid}/set_ok/';
68856
68993
  };
68857
68994
  export type OpenstackNetworksSetOkResponses = {
68858
- 200: SetOkResponse;
68995
+ 200: Detail;
68859
68996
  };
68860
68997
  export type OpenstackNetworksSetOkResponse = OpenstackNetworksSetOkResponses[keyof OpenstackNetworksSetOkResponses];
68861
68998
  export type OpenstackNetworksUnlinkData = {
@@ -69494,11 +69631,11 @@ export type OpenstackPortsPullData = {
69494
69631
  url: '/api/openstack-ports/{uuid}/pull/';
69495
69632
  };
69496
69633
  export type OpenstackPortsPullErrors = {
69497
- 409: PullConflictResponse;
69634
+ 409: Detail;
69498
69635
  };
69499
69636
  export type OpenstackPortsPullError = OpenstackPortsPullErrors[keyof OpenstackPortsPullErrors];
69500
69637
  export type OpenstackPortsPullResponses = {
69501
- 202: PullResponse;
69638
+ 202: Detail;
69502
69639
  };
69503
69640
  export type OpenstackPortsPullResponse = OpenstackPortsPullResponses[keyof OpenstackPortsPullResponses];
69504
69641
  export type OpenstackPortsSetErredData = {
@@ -69510,7 +69647,7 @@ export type OpenstackPortsSetErredData = {
69510
69647
  url: '/api/openstack-ports/{uuid}/set_erred/';
69511
69648
  };
69512
69649
  export type OpenstackPortsSetErredResponses = {
69513
- 200: SetErredResponse;
69650
+ 200: Detail;
69514
69651
  };
69515
69652
  export type OpenstackPortsSetErredResponse = OpenstackPortsSetErredResponses[keyof OpenstackPortsSetErredResponses];
69516
69653
  export type OpenstackPortsSetOkData = {
@@ -69522,7 +69659,7 @@ export type OpenstackPortsSetOkData = {
69522
69659
  url: '/api/openstack-ports/{uuid}/set_ok/';
69523
69660
  };
69524
69661
  export type OpenstackPortsSetOkResponses = {
69525
- 200: SetOkResponse;
69662
+ 200: Detail;
69526
69663
  };
69527
69664
  export type OpenstackPortsSetOkResponse = OpenstackPortsSetOkResponses[keyof OpenstackPortsSetOkResponses];
69528
69665
  export type OpenstackPortsUnlinkData = {
@@ -69563,11 +69700,9 @@ export type OpenstackPortsUpdateSecurityGroupsData = {
69563
69700
  url: '/api/openstack-ports/{uuid}/update_security_groups/';
69564
69701
  };
69565
69702
  export type OpenstackPortsUpdateSecurityGroupsResponses = {
69566
- /**
69567
- * No response body
69568
- */
69569
- 200: unknown;
69703
+ 202: Status;
69570
69704
  };
69705
+ export type OpenstackPortsUpdateSecurityGroupsResponse = OpenstackPortsUpdateSecurityGroupsResponses[keyof OpenstackPortsUpdateSecurityGroupsResponses];
69571
69706
  export type OpenstackRoutersListData = {
69572
69707
  body?: never;
69573
69708
  path?: never;
@@ -69701,11 +69836,9 @@ export type OpenstackRoutersAddRouterInterfaceData = {
69701
69836
  url: '/api/openstack-routers/{uuid}/add_router_interface/';
69702
69837
  };
69703
69838
  export type OpenstackRoutersAddRouterInterfaceResponses = {
69704
- /**
69705
- * No response body
69706
- */
69707
- 200: unknown;
69839
+ 202: Status;
69708
69840
  };
69841
+ export type OpenstackRoutersAddRouterInterfaceResponse = OpenstackRoutersAddRouterInterfaceResponses[keyof OpenstackRoutersAddRouterInterfaceResponses];
69709
69842
  export type OpenstackRoutersAvailableExternalNetworksListData = {
69710
69843
  body?: never;
69711
69844
  path: {
@@ -69772,11 +69905,9 @@ export type OpenstackRoutersRemoveRouterInterfaceData = {
69772
69905
  url: '/api/openstack-routers/{uuid}/remove_router_interface/';
69773
69906
  };
69774
69907
  export type OpenstackRoutersRemoveRouterInterfaceResponses = {
69775
- /**
69776
- * No response body
69777
- */
69778
- 200: unknown;
69908
+ 202: Status;
69779
69909
  };
69910
+ export type OpenstackRoutersRemoveRouterInterfaceResponse = OpenstackRoutersRemoveRouterInterfaceResponses[keyof OpenstackRoutersRemoveRouterInterfaceResponses];
69780
69911
  export type OpenstackRoutersSetErredData = {
69781
69912
  body?: SetErredRequest;
69782
69913
  path: {
@@ -69824,7 +69955,7 @@ export type OpenstackRoutersSetRoutesData = {
69824
69955
  url: '/api/openstack-routers/{uuid}/set_routes/';
69825
69956
  };
69826
69957
  export type OpenstackRoutersSetRoutesResponses = {
69827
- 200: OpenStackRouterSetRoutes;
69958
+ 202: Status;
69828
69959
  };
69829
69960
  export type OpenstackRoutersSetRoutesResponse = OpenstackRoutersSetRoutesResponses[keyof OpenstackRoutersSetRoutesResponses];
69830
69961
  export type OpenstackSecurityGroupsListData = {
@@ -70094,11 +70225,11 @@ export type OpenstackSecurityGroupsPullData = {
70094
70225
  url: '/api/openstack-security-groups/{uuid}/pull/';
70095
70226
  };
70096
70227
  export type OpenstackSecurityGroupsPullErrors = {
70097
- 409: PullConflictResponse;
70228
+ 409: Detail;
70098
70229
  };
70099
70230
  export type OpenstackSecurityGroupsPullError = OpenstackSecurityGroupsPullErrors[keyof OpenstackSecurityGroupsPullErrors];
70100
70231
  export type OpenstackSecurityGroupsPullResponses = {
70101
- 202: PullResponse;
70232
+ 202: Detail;
70102
70233
  };
70103
70234
  export type OpenstackSecurityGroupsPullResponse = OpenstackSecurityGroupsPullResponses[keyof OpenstackSecurityGroupsPullResponses];
70104
70235
  export type OpenstackSecurityGroupsSetErredData = {
@@ -70110,7 +70241,7 @@ export type OpenstackSecurityGroupsSetErredData = {
70110
70241
  url: '/api/openstack-security-groups/{uuid}/set_erred/';
70111
70242
  };
70112
70243
  export type OpenstackSecurityGroupsSetErredResponses = {
70113
- 200: SetErredResponse;
70244
+ 200: Detail;
70114
70245
  };
70115
70246
  export type OpenstackSecurityGroupsSetErredResponse = OpenstackSecurityGroupsSetErredResponses[keyof OpenstackSecurityGroupsSetErredResponses];
70116
70247
  export type OpenstackSecurityGroupsSetOkData = {
@@ -70122,7 +70253,7 @@ export type OpenstackSecurityGroupsSetOkData = {
70122
70253
  url: '/api/openstack-security-groups/{uuid}/set_ok/';
70123
70254
  };
70124
70255
  export type OpenstackSecurityGroupsSetOkResponses = {
70125
- 200: SetOkResponse;
70256
+ 200: Detail;
70126
70257
  };
70127
70258
  export type OpenstackSecurityGroupsSetOkResponse = OpenstackSecurityGroupsSetOkResponses[keyof OpenstackSecurityGroupsSetOkResponses];
70128
70259
  export type OpenstackSecurityGroupsSetRulesData = {
@@ -70134,11 +70265,9 @@ export type OpenstackSecurityGroupsSetRulesData = {
70134
70265
  url: '/api/openstack-security-groups/{uuid}/set_rules/';
70135
70266
  };
70136
70267
  export type OpenstackSecurityGroupsSetRulesResponses = {
70137
- /**
70138
- * No response body
70139
- */
70140
- 200: unknown;
70268
+ 202: Status;
70141
70269
  };
70270
+ export type OpenstackSecurityGroupsSetRulesResponse = OpenstackSecurityGroupsSetRulesResponses[keyof OpenstackSecurityGroupsSetRulesResponses];
70142
70271
  export type OpenstackSecurityGroupsUnlinkData = {
70143
70272
  body?: never;
70144
70273
  path: {
@@ -70399,11 +70528,11 @@ export type OpenstackServerGroupsPullData = {
70399
70528
  url: '/api/openstack-server-groups/{uuid}/pull/';
70400
70529
  };
70401
70530
  export type OpenstackServerGroupsPullErrors = {
70402
- 409: PullConflictResponse;
70531
+ 409: Detail;
70403
70532
  };
70404
70533
  export type OpenstackServerGroupsPullError = OpenstackServerGroupsPullErrors[keyof OpenstackServerGroupsPullErrors];
70405
70534
  export type OpenstackServerGroupsPullResponses = {
70406
- 202: PullResponse;
70535
+ 202: Detail;
70407
70536
  };
70408
70537
  export type OpenstackServerGroupsPullResponse = OpenstackServerGroupsPullResponses[keyof OpenstackServerGroupsPullResponses];
70409
70538
  export type OpenstackServerGroupsSetErredData = {
@@ -70415,7 +70544,7 @@ export type OpenstackServerGroupsSetErredData = {
70415
70544
  url: '/api/openstack-server-groups/{uuid}/set_erred/';
70416
70545
  };
70417
70546
  export type OpenstackServerGroupsSetErredResponses = {
70418
- 200: SetErredResponse;
70547
+ 200: Detail;
70419
70548
  };
70420
70549
  export type OpenstackServerGroupsSetErredResponse = OpenstackServerGroupsSetErredResponses[keyof OpenstackServerGroupsSetErredResponses];
70421
70550
  export type OpenstackServerGroupsSetOkData = {
@@ -70427,7 +70556,7 @@ export type OpenstackServerGroupsSetOkData = {
70427
70556
  url: '/api/openstack-server-groups/{uuid}/set_ok/';
70428
70557
  };
70429
70558
  export type OpenstackServerGroupsSetOkResponses = {
70430
- 200: SetOkResponse;
70559
+ 200: Detail;
70431
70560
  };
70432
70561
  export type OpenstackServerGroupsSetOkResponse = OpenstackServerGroupsSetOkResponses[keyof OpenstackServerGroupsSetOkResponses];
70433
70562
  export type OpenstackServerGroupsUnlinkData = {
@@ -70738,11 +70867,11 @@ export type OpenstackSnapshotsPullData = {
70738
70867
  url: '/api/openstack-snapshots/{uuid}/pull/';
70739
70868
  };
70740
70869
  export type OpenstackSnapshotsPullErrors = {
70741
- 409: PullConflictResponse;
70870
+ 409: Detail;
70742
70871
  };
70743
70872
  export type OpenstackSnapshotsPullError = OpenstackSnapshotsPullErrors[keyof OpenstackSnapshotsPullErrors];
70744
70873
  export type OpenstackSnapshotsPullResponses = {
70745
- 202: PullResponse;
70874
+ 202: Detail;
70746
70875
  };
70747
70876
  export type OpenstackSnapshotsPullResponse = OpenstackSnapshotsPullResponses[keyof OpenstackSnapshotsPullResponses];
70748
70877
  export type OpenstackSnapshotsRestorationsListData = {
@@ -70787,7 +70916,7 @@ export type OpenstackSnapshotsSetErredData = {
70787
70916
  url: '/api/openstack-snapshots/{uuid}/set_erred/';
70788
70917
  };
70789
70918
  export type OpenstackSnapshotsSetErredResponses = {
70790
- 200: SetErredResponse;
70919
+ 200: Detail;
70791
70920
  };
70792
70921
  export type OpenstackSnapshotsSetErredResponse = OpenstackSnapshotsSetErredResponses[keyof OpenstackSnapshotsSetErredResponses];
70793
70922
  export type OpenstackSnapshotsSetOkData = {
@@ -70799,7 +70928,7 @@ export type OpenstackSnapshotsSetOkData = {
70799
70928
  url: '/api/openstack-snapshots/{uuid}/set_ok/';
70800
70929
  };
70801
70930
  export type OpenstackSnapshotsSetOkResponses = {
70802
- 200: SetOkResponse;
70931
+ 200: Detail;
70803
70932
  };
70804
70933
  export type OpenstackSnapshotsSetOkResponse = OpenstackSnapshotsSetOkResponses[keyof OpenstackSnapshotsSetOkResponses];
70805
70934
  export type OpenstackSnapshotsUnlinkData = {
@@ -71136,11 +71265,11 @@ export type OpenstackSubnetsPullData = {
71136
71265
  url: '/api/openstack-subnets/{uuid}/pull/';
71137
71266
  };
71138
71267
  export type OpenstackSubnetsPullErrors = {
71139
- 409: PullConflictResponse;
71268
+ 409: Detail;
71140
71269
  };
71141
71270
  export type OpenstackSubnetsPullError = OpenstackSubnetsPullErrors[keyof OpenstackSubnetsPullErrors];
71142
71271
  export type OpenstackSubnetsPullResponses = {
71143
- 202: PullResponse;
71272
+ 202: Detail;
71144
71273
  };
71145
71274
  export type OpenstackSubnetsPullResponse = OpenstackSubnetsPullResponses[keyof OpenstackSubnetsPullResponses];
71146
71275
  export type OpenstackSubnetsSetErredData = {
@@ -71152,7 +71281,7 @@ export type OpenstackSubnetsSetErredData = {
71152
71281
  url: '/api/openstack-subnets/{uuid}/set_erred/';
71153
71282
  };
71154
71283
  export type OpenstackSubnetsSetErredResponses = {
71155
- 200: SetErredResponse;
71284
+ 200: Detail;
71156
71285
  };
71157
71286
  export type OpenstackSubnetsSetErredResponse = OpenstackSubnetsSetErredResponses[keyof OpenstackSubnetsSetErredResponses];
71158
71287
  export type OpenstackSubnetsSetOkData = {
@@ -71164,7 +71293,7 @@ export type OpenstackSubnetsSetOkData = {
71164
71293
  url: '/api/openstack-subnets/{uuid}/set_ok/';
71165
71294
  };
71166
71295
  export type OpenstackSubnetsSetOkResponses = {
71167
- 200: SetOkResponse;
71296
+ 200: Detail;
71168
71297
  };
71169
71298
  export type OpenstackSubnetsSetOkResponse = OpenstackSubnetsSetOkResponses[keyof OpenstackSubnetsSetOkResponses];
71170
71299
  export type OpenstackSubnetsUnlinkData = {
@@ -71592,11 +71721,9 @@ export type OpenstackTenantsChangePasswordData = {
71592
71721
  url: '/api/openstack-tenants/{uuid}/change_password/';
71593
71722
  };
71594
71723
  export type OpenstackTenantsChangePasswordResponses = {
71595
- /**
71596
- * No response body
71597
- */
71598
- 200: unknown;
71724
+ 202: Status;
71599
71725
  };
71726
+ export type OpenstackTenantsChangePasswordResponse = OpenstackTenantsChangePasswordResponses[keyof OpenstackTenantsChangePasswordResponses];
71600
71727
  export type OpenstackTenantsCreateFloatingIpData = {
71601
71728
  body?: OpenStackFloatingIpRequest;
71602
71729
  path: {
@@ -71654,11 +71781,11 @@ export type OpenstackTenantsPullData = {
71654
71781
  url: '/api/openstack-tenants/{uuid}/pull/';
71655
71782
  };
71656
71783
  export type OpenstackTenantsPullErrors = {
71657
- 409: PullConflictResponse;
71784
+ 409: Detail;
71658
71785
  };
71659
71786
  export type OpenstackTenantsPullError = OpenstackTenantsPullErrors[keyof OpenstackTenantsPullErrors];
71660
71787
  export type OpenstackTenantsPullResponses = {
71661
- 202: PullResponse;
71788
+ 202: Detail;
71662
71789
  };
71663
71790
  export type OpenstackTenantsPullResponse = OpenstackTenantsPullResponses[keyof OpenstackTenantsPullResponses];
71664
71791
  export type OpenstackTenantsPullFloatingIpsData = {
@@ -71684,11 +71811,9 @@ export type OpenstackTenantsPullQuotasData = {
71684
71811
  url: '/api/openstack-tenants/{uuid}/pull_quotas/';
71685
71812
  };
71686
71813
  export type OpenstackTenantsPullQuotasResponses = {
71687
- /**
71688
- * No response body
71689
- */
71690
- 200: unknown;
71814
+ 202: Status;
71691
71815
  };
71816
+ export type OpenstackTenantsPullQuotasResponse = OpenstackTenantsPullQuotasResponses[keyof OpenstackTenantsPullQuotasResponses];
71692
71817
  export type OpenstackTenantsPullSecurityGroupsData = {
71693
71818
  body?: never;
71694
71819
  path: {
@@ -71722,11 +71847,9 @@ export type OpenstackTenantsPushSecurityGroupsData = {
71722
71847
  url: '/api/openstack-tenants/{uuid}/push_security_groups/';
71723
71848
  };
71724
71849
  export type OpenstackTenantsPushSecurityGroupsResponses = {
71725
- /**
71726
- * No response body
71727
- */
71728
- 200: unknown;
71850
+ 202: Status;
71729
71851
  };
71852
+ export type OpenstackTenantsPushSecurityGroupsResponse = OpenstackTenantsPushSecurityGroupsResponses[keyof OpenstackTenantsPushSecurityGroupsResponses];
71730
71853
  export type OpenstackTenantsSetErredData = {
71731
71854
  body?: SetErredRequest;
71732
71855
  path: {
@@ -71736,7 +71859,7 @@ export type OpenstackTenantsSetErredData = {
71736
71859
  url: '/api/openstack-tenants/{uuid}/set_erred/';
71737
71860
  };
71738
71861
  export type OpenstackTenantsSetErredResponses = {
71739
- 200: SetErredResponse;
71862
+ 200: Detail;
71740
71863
  };
71741
71864
  export type OpenstackTenantsSetErredResponse = OpenstackTenantsSetErredResponses[keyof OpenstackTenantsSetErredResponses];
71742
71865
  export type OpenstackTenantsSetOkData = {
@@ -71748,7 +71871,7 @@ export type OpenstackTenantsSetOkData = {
71748
71871
  url: '/api/openstack-tenants/{uuid}/set_ok/';
71749
71872
  };
71750
71873
  export type OpenstackTenantsSetOkResponses = {
71751
- 200: SetOkResponse;
71874
+ 200: Detail;
71752
71875
  };
71753
71876
  export type OpenstackTenantsSetOkResponse = OpenstackTenantsSetOkResponses[keyof OpenstackTenantsSetOkResponses];
71754
71877
  export type OpenstackTenantsSetQuotasData = {
@@ -72334,11 +72457,9 @@ export type OpenstackVolumesAttachData = {
72334
72457
  url: '/api/openstack-volumes/{uuid}/attach/';
72335
72458
  };
72336
72459
  export type OpenstackVolumesAttachResponses = {
72337
- /**
72338
- * No response body
72339
- */
72340
- 200: unknown;
72460
+ 202: Status;
72341
72461
  };
72462
+ export type OpenstackVolumesAttachResponse = OpenstackVolumesAttachResponses[keyof OpenstackVolumesAttachResponses];
72342
72463
  export type OpenstackVolumesDetachData = {
72343
72464
  body?: never;
72344
72465
  path: {
@@ -72348,11 +72469,9 @@ export type OpenstackVolumesDetachData = {
72348
72469
  url: '/api/openstack-volumes/{uuid}/detach/';
72349
72470
  };
72350
72471
  export type OpenstackVolumesDetachResponses = {
72351
- /**
72352
- * No response body
72353
- */
72354
- 200: unknown;
72472
+ 202: Status;
72355
72473
  };
72474
+ export type OpenstackVolumesDetachResponse = OpenstackVolumesDetachResponses[keyof OpenstackVolumesDetachResponses];
72356
72475
  export type OpenstackVolumesExtendData = {
72357
72476
  body: OpenStackVolumeExtendRequest;
72358
72477
  path: {
@@ -72362,11 +72481,9 @@ export type OpenstackVolumesExtendData = {
72362
72481
  url: '/api/openstack-volumes/{uuid}/extend/';
72363
72482
  };
72364
72483
  export type OpenstackVolumesExtendResponses = {
72365
- /**
72366
- * No response body
72367
- */
72368
- 200: unknown;
72484
+ 202: Status;
72369
72485
  };
72486
+ export type OpenstackVolumesExtendResponse = OpenstackVolumesExtendResponses[keyof OpenstackVolumesExtendResponses];
72370
72487
  export type OpenstackVolumesPullData = {
72371
72488
  body?: never;
72372
72489
  path: {
@@ -72376,11 +72493,11 @@ export type OpenstackVolumesPullData = {
72376
72493
  url: '/api/openstack-volumes/{uuid}/pull/';
72377
72494
  };
72378
72495
  export type OpenstackVolumesPullErrors = {
72379
- 409: PullConflictResponse;
72496
+ 409: Detail;
72380
72497
  };
72381
72498
  export type OpenstackVolumesPullError = OpenstackVolumesPullErrors[keyof OpenstackVolumesPullErrors];
72382
72499
  export type OpenstackVolumesPullResponses = {
72383
- 202: PullResponse;
72500
+ 202: Detail;
72384
72501
  };
72385
72502
  export type OpenstackVolumesPullResponse = OpenstackVolumesPullResponses[keyof OpenstackVolumesPullResponses];
72386
72503
  export type OpenstackVolumesRetypeData = {
@@ -72392,11 +72509,9 @@ export type OpenstackVolumesRetypeData = {
72392
72509
  url: '/api/openstack-volumes/{uuid}/retype/';
72393
72510
  };
72394
72511
  export type OpenstackVolumesRetypeResponses = {
72395
- /**
72396
- * No response body
72397
- */
72398
- 200: unknown;
72512
+ 202: Status;
72399
72513
  };
72514
+ export type OpenstackVolumesRetypeResponse = OpenstackVolumesRetypeResponses[keyof OpenstackVolumesRetypeResponses];
72400
72515
  export type OpenstackVolumesSetErredData = {
72401
72516
  body?: SetErredRequest;
72402
72517
  path: {
@@ -72406,7 +72521,7 @@ export type OpenstackVolumesSetErredData = {
72406
72521
  url: '/api/openstack-volumes/{uuid}/set_erred/';
72407
72522
  };
72408
72523
  export type OpenstackVolumesSetErredResponses = {
72409
- 200: SetErredResponse;
72524
+ 200: Detail;
72410
72525
  };
72411
72526
  export type OpenstackVolumesSetErredResponse = OpenstackVolumesSetErredResponses[keyof OpenstackVolumesSetErredResponses];
72412
72527
  export type OpenstackVolumesSetOkData = {
@@ -72418,7 +72533,7 @@ export type OpenstackVolumesSetOkData = {
72418
72533
  url: '/api/openstack-volumes/{uuid}/set_ok/';
72419
72534
  };
72420
72535
  export type OpenstackVolumesSetOkResponses = {
72421
- 200: SetOkResponse;
72536
+ 200: Detail;
72422
72537
  };
72423
72538
  export type OpenstackVolumesSetOkResponse = OpenstackVolumesSetOkResponses[keyof OpenstackVolumesSetOkResponses];
72424
72539
  export type OpenstackVolumesSnapshotData = {
@@ -77531,11 +77646,11 @@ export type RancherAppsPullData = {
77531
77646
  url: '/api/rancher-apps/{uuid}/pull/';
77532
77647
  };
77533
77648
  export type RancherAppsPullErrors = {
77534
- 409: PullConflictResponse;
77649
+ 409: Detail;
77535
77650
  };
77536
77651
  export type RancherAppsPullError = RancherAppsPullErrors[keyof RancherAppsPullErrors];
77537
77652
  export type RancherAppsPullResponses = {
77538
- 202: PullResponse;
77653
+ 202: Detail;
77539
77654
  };
77540
77655
  export type RancherAppsPullResponse = RancherAppsPullResponses[keyof RancherAppsPullResponses];
77541
77656
  export type RancherAppsSetErredData = {
@@ -77547,7 +77662,7 @@ export type RancherAppsSetErredData = {
77547
77662
  url: '/api/rancher-apps/{uuid}/set_erred/';
77548
77663
  };
77549
77664
  export type RancherAppsSetErredResponses = {
77550
- 200: SetErredResponse;
77665
+ 200: Detail;
77551
77666
  };
77552
77667
  export type RancherAppsSetErredResponse = RancherAppsSetErredResponses[keyof RancherAppsSetErredResponses];
77553
77668
  export type RancherAppsSetOkData = {
@@ -77559,7 +77674,7 @@ export type RancherAppsSetOkData = {
77559
77674
  url: '/api/rancher-apps/{uuid}/set_ok/';
77560
77675
  };
77561
77676
  export type RancherAppsSetOkResponses = {
77562
- 200: SetOkResponse;
77677
+ 200: Detail;
77563
77678
  };
77564
77679
  export type RancherAppsSetOkResponse = RancherAppsSetOkResponses[keyof RancherAppsSetOkResponses];
77565
77680
  export type RancherAppsUnlinkData = {
@@ -78088,11 +78203,11 @@ export type RancherClustersPullData = {
78088
78203
  url: '/api/rancher-clusters/{uuid}/pull/';
78089
78204
  };
78090
78205
  export type RancherClustersPullErrors = {
78091
- 409: PullConflictResponse;
78206
+ 409: Detail;
78092
78207
  };
78093
78208
  export type RancherClustersPullError = RancherClustersPullErrors[keyof RancherClustersPullErrors];
78094
78209
  export type RancherClustersPullResponses = {
78095
- 202: PullResponse;
78210
+ 202: Detail;
78096
78211
  };
78097
78212
  export type RancherClustersPullResponse = RancherClustersPullResponses[keyof RancherClustersPullResponses];
78098
78213
  export type RancherClustersSetErredData = {
@@ -78104,7 +78219,7 @@ export type RancherClustersSetErredData = {
78104
78219
  url: '/api/rancher-clusters/{uuid}/set_erred/';
78105
78220
  };
78106
78221
  export type RancherClustersSetErredResponses = {
78107
- 200: SetErredResponse;
78222
+ 200: Detail;
78108
78223
  };
78109
78224
  export type RancherClustersSetErredResponse = RancherClustersSetErredResponses[keyof RancherClustersSetErredResponses];
78110
78225
  export type RancherClustersSetOkData = {
@@ -78116,7 +78231,7 @@ export type RancherClustersSetOkData = {
78116
78231
  url: '/api/rancher-clusters/{uuid}/set_ok/';
78117
78232
  };
78118
78233
  export type RancherClustersSetOkResponses = {
78119
- 200: SetOkResponse;
78234
+ 200: Detail;
78120
78235
  };
78121
78236
  export type RancherClustersSetOkResponse = RancherClustersSetOkResponses[keyof RancherClustersSetOkResponses];
78122
78237
  export type RancherClustersUnlinkData = {
@@ -78284,11 +78399,11 @@ export type RancherHpasPullData = {
78284
78399
  url: '/api/rancher-hpas/{uuid}/pull/';
78285
78400
  };
78286
78401
  export type RancherHpasPullErrors = {
78287
- 409: PullConflictResponse;
78402
+ 409: Detail;
78288
78403
  };
78289
78404
  export type RancherHpasPullError = RancherHpasPullErrors[keyof RancherHpasPullErrors];
78290
78405
  export type RancherHpasPullResponses = {
78291
- 202: PullResponse;
78406
+ 202: Detail;
78292
78407
  };
78293
78408
  export type RancherHpasPullResponse = RancherHpasPullResponses[keyof RancherHpasPullResponses];
78294
78409
  export type RancherHpasSetErredData = {
@@ -78300,7 +78415,7 @@ export type RancherHpasSetErredData = {
78300
78415
  url: '/api/rancher-hpas/{uuid}/set_erred/';
78301
78416
  };
78302
78417
  export type RancherHpasSetErredResponses = {
78303
- 200: SetErredResponse;
78418
+ 200: Detail;
78304
78419
  };
78305
78420
  export type RancherHpasSetErredResponse = RancherHpasSetErredResponses[keyof RancherHpasSetErredResponses];
78306
78421
  export type RancherHpasSetOkData = {
@@ -78312,7 +78427,7 @@ export type RancherHpasSetOkData = {
78312
78427
  url: '/api/rancher-hpas/{uuid}/set_ok/';
78313
78428
  };
78314
78429
  export type RancherHpasSetOkResponses = {
78315
- 200: SetOkResponse;
78430
+ 200: Detail;
78316
78431
  };
78317
78432
  export type RancherHpasSetOkResponse = RancherHpasSetOkResponses[keyof RancherHpasSetOkResponses];
78318
78433
  export type RancherHpasUnlinkData = {
@@ -78613,11 +78728,11 @@ export type RancherIngressesPullData = {
78613
78728
  url: '/api/rancher-ingresses/{uuid}/pull/';
78614
78729
  };
78615
78730
  export type RancherIngressesPullErrors = {
78616
- 409: PullConflictResponse;
78731
+ 409: Detail;
78617
78732
  };
78618
78733
  export type RancherIngressesPullError = RancherIngressesPullErrors[keyof RancherIngressesPullErrors];
78619
78734
  export type RancherIngressesPullResponses = {
78620
- 202: PullResponse;
78735
+ 202: Detail;
78621
78736
  };
78622
78737
  export type RancherIngressesPullResponse = RancherIngressesPullResponses[keyof RancherIngressesPullResponses];
78623
78738
  export type RancherIngressesSetErredData = {
@@ -78629,7 +78744,7 @@ export type RancherIngressesSetErredData = {
78629
78744
  url: '/api/rancher-ingresses/{uuid}/set_erred/';
78630
78745
  };
78631
78746
  export type RancherIngressesSetErredResponses = {
78632
- 200: SetErredResponse;
78747
+ 200: Detail;
78633
78748
  };
78634
78749
  export type RancherIngressesSetErredResponse = RancherIngressesSetErredResponses[keyof RancherIngressesSetErredResponses];
78635
78750
  export type RancherIngressesSetOkData = {
@@ -78641,7 +78756,7 @@ export type RancherIngressesSetOkData = {
78641
78756
  url: '/api/rancher-ingresses/{uuid}/set_ok/';
78642
78757
  };
78643
78758
  export type RancherIngressesSetOkResponses = {
78644
- 200: SetOkResponse;
78759
+ 200: Detail;
78645
78760
  };
78646
78761
  export type RancherIngressesSetOkResponse = RancherIngressesSetOkResponses[keyof RancherIngressesSetOkResponses];
78647
78762
  export type RancherIngressesUnlinkData = {
@@ -78919,11 +79034,11 @@ export type RancherNodesPullData = {
78919
79034
  url: '/api/rancher-nodes/{uuid}/pull/';
78920
79035
  };
78921
79036
  export type RancherNodesPullErrors = {
78922
- 409: PullConflictResponse;
79037
+ 409: Detail;
78923
79038
  };
78924
79039
  export type RancherNodesPullError = RancherNodesPullErrors[keyof RancherNodesPullErrors];
78925
79040
  export type RancherNodesPullResponses = {
78926
- 202: PullResponse;
79041
+ 202: Detail;
78927
79042
  };
78928
79043
  export type RancherNodesPullResponse = RancherNodesPullResponses[keyof RancherNodesPullResponses];
78929
79044
  export type RancherNodesSetErredData = {
@@ -78935,7 +79050,7 @@ export type RancherNodesSetErredData = {
78935
79050
  url: '/api/rancher-nodes/{uuid}/set_erred/';
78936
79051
  };
78937
79052
  export type RancherNodesSetErredResponses = {
78938
- 200: SetErredResponse;
79053
+ 200: Detail;
78939
79054
  };
78940
79055
  export type RancherNodesSetErredResponse = RancherNodesSetErredResponses[keyof RancherNodesSetErredResponses];
78941
79056
  export type RancherNodesSetOkData = {
@@ -78947,7 +79062,7 @@ export type RancherNodesSetOkData = {
78947
79062
  url: '/api/rancher-nodes/{uuid}/set_ok/';
78948
79063
  };
78949
79064
  export type RancherNodesSetOkResponses = {
78950
- 200: SetOkResponse;
79065
+ 200: Detail;
78951
79066
  };
78952
79067
  export type RancherNodesSetOkResponse = RancherNodesSetOkResponses[keyof RancherNodesSetOkResponses];
78953
79068
  export type RancherNodesUnlinkData = {
@@ -79065,18 +79180,27 @@ export type RancherProjectsRetrieveResponses = {
79065
79180
  200: RancherProject;
79066
79181
  };
79067
79182
  export type RancherProjectsRetrieveResponse = RancherProjectsRetrieveResponses[keyof RancherProjectsRetrieveResponses];
79068
- export type RancherProjectsSecretsRetrieveData = {
79183
+ export type RancherProjectsSecretsListData = {
79069
79184
  body?: never;
79070
79185
  path: {
79071
79186
  uuid: string;
79072
79187
  };
79073
- query?: never;
79188
+ query?: {
79189
+ /**
79190
+ * A page number within the paginated result set.
79191
+ */
79192
+ page?: number;
79193
+ /**
79194
+ * Number of results to return per page.
79195
+ */
79196
+ page_size?: number;
79197
+ };
79074
79198
  url: '/api/rancher-projects/{uuid}/secrets/';
79075
79199
  };
79076
- export type RancherProjectsSecretsRetrieveResponses = {
79077
- 200: RancherProject;
79200
+ export type RancherProjectsSecretsListResponses = {
79201
+ 200: Array<Secret>;
79078
79202
  };
79079
- export type RancherProjectsSecretsRetrieveResponse = RancherProjectsSecretsRetrieveResponses[keyof RancherProjectsSecretsRetrieveResponses];
79203
+ export type RancherProjectsSecretsListResponse = RancherProjectsSecretsListResponses[keyof RancherProjectsSecretsListResponses];
79080
79204
  export type RancherRoleTemplatesListData = {
79081
79205
  body?: never;
79082
79206
  path?: never;
@@ -79406,11 +79530,11 @@ export type RancherServicesPullData = {
79406
79530
  url: '/api/rancher-services/{uuid}/pull/';
79407
79531
  };
79408
79532
  export type RancherServicesPullErrors = {
79409
- 409: PullConflictResponse;
79533
+ 409: Detail;
79410
79534
  };
79411
79535
  export type RancherServicesPullError = RancherServicesPullErrors[keyof RancherServicesPullErrors];
79412
79536
  export type RancherServicesPullResponses = {
79413
- 202: PullResponse;
79537
+ 202: Detail;
79414
79538
  };
79415
79539
  export type RancherServicesPullResponse = RancherServicesPullResponses[keyof RancherServicesPullResponses];
79416
79540
  export type RancherServicesSetErredData = {
@@ -79422,7 +79546,7 @@ export type RancherServicesSetErredData = {
79422
79546
  url: '/api/rancher-services/{uuid}/set_erred/';
79423
79547
  };
79424
79548
  export type RancherServicesSetErredResponses = {
79425
- 200: SetErredResponse;
79549
+ 200: Detail;
79426
79550
  };
79427
79551
  export type RancherServicesSetErredResponse = RancherServicesSetErredResponses[keyof RancherServicesSetErredResponses];
79428
79552
  export type RancherServicesSetOkData = {
@@ -79434,7 +79558,7 @@ export type RancherServicesSetOkData = {
79434
79558
  url: '/api/rancher-services/{uuid}/set_ok/';
79435
79559
  };
79436
79560
  export type RancherServicesSetOkResponses = {
79437
- 200: SetOkResponse;
79561
+ 200: Detail;
79438
79562
  };
79439
79563
  export type RancherServicesSetOkResponse = RancherServicesSetOkResponses[keyof RancherServicesSetOkResponses];
79440
79564
  export type RancherServicesUnlinkData = {
@@ -82158,11 +82282,11 @@ export type SlurmAllocationsPullData = {
82158
82282
  url: '/api/slurm-allocations/{uuid}/pull/';
82159
82283
  };
82160
82284
  export type SlurmAllocationsPullErrors = {
82161
- 409: PullConflictResponse;
82285
+ 409: Detail;
82162
82286
  };
82163
82287
  export type SlurmAllocationsPullError = SlurmAllocationsPullErrors[keyof SlurmAllocationsPullErrors];
82164
82288
  export type SlurmAllocationsPullResponses = {
82165
- 202: PullResponse;
82289
+ 202: Detail;
82166
82290
  };
82167
82291
  export type SlurmAllocationsPullResponse = SlurmAllocationsPullResponses[keyof SlurmAllocationsPullResponses];
82168
82292
  export type SlurmAllocationsSetErredData = {
@@ -82174,7 +82298,7 @@ export type SlurmAllocationsSetErredData = {
82174
82298
  url: '/api/slurm-allocations/{uuid}/set_erred/';
82175
82299
  };
82176
82300
  export type SlurmAllocationsSetErredResponses = {
82177
- 200: SetErredResponse;
82301
+ 200: Detail;
82178
82302
  };
82179
82303
  export type SlurmAllocationsSetErredResponse = SlurmAllocationsSetErredResponses[keyof SlurmAllocationsSetErredResponses];
82180
82304
  export type SlurmAllocationsSetLimitsData = {
@@ -82186,7 +82310,7 @@ export type SlurmAllocationsSetLimitsData = {
82186
82310
  url: '/api/slurm-allocations/{uuid}/set_limits/';
82187
82311
  };
82188
82312
  export type SlurmAllocationsSetLimitsResponses = {
82189
- 200: SlurmAllocationSetLimits;
82313
+ 202: Status;
82190
82314
  };
82191
82315
  export type SlurmAllocationsSetLimitsResponse = SlurmAllocationsSetLimitsResponses[keyof SlurmAllocationsSetLimitsResponses];
82192
82316
  export type SlurmAllocationsSetOkData = {
@@ -82198,7 +82322,7 @@ export type SlurmAllocationsSetOkData = {
82198
82322
  url: '/api/slurm-allocations/{uuid}/set_ok/';
82199
82323
  };
82200
82324
  export type SlurmAllocationsSetOkResponses = {
82201
- 200: SetOkResponse;
82325
+ 200: Detail;
82202
82326
  };
82203
82327
  export type SlurmAllocationsSetOkResponse = SlurmAllocationsSetOkResponses[keyof SlurmAllocationsSetOkResponses];
82204
82328
  export type SlurmAllocationsUnlinkData = {
@@ -82385,11 +82509,11 @@ export type SlurmJobsPullData = {
82385
82509
  url: '/api/slurm-jobs/{uuid}/pull/';
82386
82510
  };
82387
82511
  export type SlurmJobsPullErrors = {
82388
- 409: PullConflictResponse;
82512
+ 409: Detail;
82389
82513
  };
82390
82514
  export type SlurmJobsPullError = SlurmJobsPullErrors[keyof SlurmJobsPullErrors];
82391
82515
  export type SlurmJobsPullResponses = {
82392
- 202: PullResponse;
82516
+ 202: Detail;
82393
82517
  };
82394
82518
  export type SlurmJobsPullResponse = SlurmJobsPullResponses[keyof SlurmJobsPullResponses];
82395
82519
  export type SlurmJobsSetErredData = {
@@ -82401,7 +82525,7 @@ export type SlurmJobsSetErredData = {
82401
82525
  url: '/api/slurm-jobs/{uuid}/set_erred/';
82402
82526
  };
82403
82527
  export type SlurmJobsSetErredResponses = {
82404
- 200: SetErredResponse;
82528
+ 200: Detail;
82405
82529
  };
82406
82530
  export type SlurmJobsSetErredResponse = SlurmJobsSetErredResponses[keyof SlurmJobsSetErredResponses];
82407
82531
  export type SlurmJobsSetOkData = {
@@ -82413,7 +82537,7 @@ export type SlurmJobsSetOkData = {
82413
82537
  url: '/api/slurm-jobs/{uuid}/set_ok/';
82414
82538
  };
82415
82539
  export type SlurmJobsSetOkResponses = {
82416
- 200: SetOkResponse;
82540
+ 200: Detail;
82417
82541
  };
82418
82542
  export type SlurmJobsSetOkResponse = SlurmJobsSetOkResponses[keyof SlurmJobsSetOkResponses];
82419
82543
  export type SlurmJobsUnlinkData = {
@@ -87020,11 +87144,11 @@ export type VmwareDisksPullData = {
87020
87144
  url: '/api/vmware-disks/{uuid}/pull/';
87021
87145
  };
87022
87146
  export type VmwareDisksPullErrors = {
87023
- 409: PullConflictResponse;
87147
+ 409: Detail;
87024
87148
  };
87025
87149
  export type VmwareDisksPullError = VmwareDisksPullErrors[keyof VmwareDisksPullErrors];
87026
87150
  export type VmwareDisksPullResponses = {
87027
- 202: PullResponse;
87151
+ 202: Detail;
87028
87152
  };
87029
87153
  export type VmwareDisksPullResponse = VmwareDisksPullResponses[keyof VmwareDisksPullResponses];
87030
87154
  export type VmwareDisksSetErredData = {
@@ -87036,7 +87160,7 @@ export type VmwareDisksSetErredData = {
87036
87160
  url: '/api/vmware-disks/{uuid}/set_erred/';
87037
87161
  };
87038
87162
  export type VmwareDisksSetErredResponses = {
87039
- 200: SetErredResponse;
87163
+ 200: Detail;
87040
87164
  };
87041
87165
  export type VmwareDisksSetErredResponse = VmwareDisksSetErredResponses[keyof VmwareDisksSetErredResponses];
87042
87166
  export type VmwareDisksSetOkData = {
@@ -87048,7 +87172,7 @@ export type VmwareDisksSetOkData = {
87048
87172
  url: '/api/vmware-disks/{uuid}/set_ok/';
87049
87173
  };
87050
87174
  export type VmwareDisksSetOkResponses = {
87051
- 200: SetOkResponse;
87175
+ 200: Detail;
87052
87176
  };
87053
87177
  export type VmwareDisksSetOkResponse = VmwareDisksSetOkResponses[keyof VmwareDisksSetOkResponses];
87054
87178
  export type VmwareDisksUnlinkData = {
@@ -87497,11 +87621,11 @@ export type VmwarePortsPullData = {
87497
87621
  url: '/api/vmware-ports/{uuid}/pull/';
87498
87622
  };
87499
87623
  export type VmwarePortsPullErrors = {
87500
- 409: PullConflictResponse;
87624
+ 409: Detail;
87501
87625
  };
87502
87626
  export type VmwarePortsPullError = VmwarePortsPullErrors[keyof VmwarePortsPullErrors];
87503
87627
  export type VmwarePortsPullResponses = {
87504
- 202: PullResponse;
87628
+ 202: Detail;
87505
87629
  };
87506
87630
  export type VmwarePortsPullResponse = VmwarePortsPullResponses[keyof VmwarePortsPullResponses];
87507
87631
  export type VmwarePortsSetErredData = {
@@ -87513,7 +87637,7 @@ export type VmwarePortsSetErredData = {
87513
87637
  url: '/api/vmware-ports/{uuid}/set_erred/';
87514
87638
  };
87515
87639
  export type VmwarePortsSetErredResponses = {
87516
- 200: SetErredResponse;
87640
+ 200: Detail;
87517
87641
  };
87518
87642
  export type VmwarePortsSetErredResponse = VmwarePortsSetErredResponses[keyof VmwarePortsSetErredResponses];
87519
87643
  export type VmwarePortsSetOkData = {
@@ -87525,7 +87649,7 @@ export type VmwarePortsSetOkData = {
87525
87649
  url: '/api/vmware-ports/{uuid}/set_ok/';
87526
87650
  };
87527
87651
  export type VmwarePortsSetOkResponses = {
87528
- 200: SetOkResponse;
87652
+ 200: Detail;
87529
87653
  };
87530
87654
  export type VmwarePortsSetOkResponse = VmwarePortsSetOkResponses[keyof VmwarePortsSetOkResponses];
87531
87655
  export type VmwarePortsUnlinkData = {
@@ -87918,11 +88042,11 @@ export type VmwareVirtualMachinePullData = {
87918
88042
  url: '/api/vmware-virtual-machine/{uuid}/pull/';
87919
88043
  };
87920
88044
  export type VmwareVirtualMachinePullErrors = {
87921
- 409: PullConflictResponse;
88045
+ 409: Detail;
87922
88046
  };
87923
88047
  export type VmwareVirtualMachinePullError = VmwareVirtualMachinePullErrors[keyof VmwareVirtualMachinePullErrors];
87924
88048
  export type VmwareVirtualMachinePullResponses = {
87925
- 202: PullResponse;
88049
+ 202: Detail;
87926
88050
  };
87927
88051
  export type VmwareVirtualMachinePullResponse = VmwareVirtualMachinePullResponses[keyof VmwareVirtualMachinePullResponses];
87928
88052
  export type VmwareVirtualMachineRebootGuestData = {
@@ -87958,7 +88082,7 @@ export type VmwareVirtualMachineSetErredData = {
87958
88082
  url: '/api/vmware-virtual-machine/{uuid}/set_erred/';
87959
88083
  };
87960
88084
  export type VmwareVirtualMachineSetErredResponses = {
87961
- 200: SetErredResponse;
88085
+ 200: Detail;
87962
88086
  };
87963
88087
  export type VmwareVirtualMachineSetErredResponse = VmwareVirtualMachineSetErredResponses[keyof VmwareVirtualMachineSetErredResponses];
87964
88088
  export type VmwareVirtualMachineSetOkData = {
@@ -87970,7 +88094,7 @@ export type VmwareVirtualMachineSetOkData = {
87970
88094
  url: '/api/vmware-virtual-machine/{uuid}/set_ok/';
87971
88095
  };
87972
88096
  export type VmwareVirtualMachineSetOkResponses = {
87973
- 200: SetOkResponse;
88097
+ 200: Detail;
87974
88098
  };
87975
88099
  export type VmwareVirtualMachineSetOkResponse = VmwareVirtualMachineSetOkResponses[keyof VmwareVirtualMachineSetOkResponses];
87976
88100
  export type VmwareVirtualMachineShutdownGuestData = {