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

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.
@@ -2033,9 +2033,6 @@ export type AwsInstanceRequest = {
2033
2033
  image: string;
2034
2034
  size: string;
2035
2035
  };
2036
- export type AwsInstanceResize = {
2037
- size: string;
2038
- };
2039
2036
  export type AwsInstanceResizeRequest = {
2040
2037
  size: string;
2041
2038
  };
@@ -2111,13 +2108,6 @@ export type AwsVolume = {
2111
2108
  readonly is_usage_based?: boolean | null;
2112
2109
  readonly is_limit_based?: boolean | null;
2113
2110
  };
2114
- export type AwsVolumeAttach = {
2115
- instance: string;
2116
- /**
2117
- * The device name for attachment. For example, use /dev/sd[f-p] for Linux instances.
2118
- */
2119
- device: string;
2120
- };
2121
2111
  export type AwsVolumeAttachRequest = {
2122
2112
  instance: string;
2123
2113
  /**
@@ -2301,14 +2291,14 @@ export type AzureSqlDatabase = {
2301
2291
  readonly is_usage_based?: boolean | null;
2302
2292
  readonly is_limit_based?: boolean | null;
2303
2293
  };
2304
- export type AzureSqlDatabaseCreate = {
2305
- name: string;
2306
- description?: string;
2307
- };
2308
2294
  export type AzureSqlDatabaseCreateRequest = {
2309
2295
  name: string;
2310
2296
  description?: string;
2311
2297
  };
2298
+ export type AzureSqlDatabaseCreateResponse = {
2299
+ status: string;
2300
+ database_uuid: string;
2301
+ };
2312
2302
  export type AzureSqlDatabaseRequest = {
2313
2303
  name: string;
2314
2304
  description?: string;
@@ -2705,6 +2695,9 @@ export type Booking = {
2705
2695
  start: string;
2706
2696
  end: string;
2707
2697
  };
2698
+ export type BookingOrderUuid = {
2699
+ order_uuid: string;
2700
+ };
2708
2701
  export type BookingResource = {
2709
2702
  offering?: string;
2710
2703
  readonly offering_name?: string;
@@ -6051,6 +6044,10 @@ export type CustomerCreditConsumption = {
6051
6044
  readonly date: string;
6052
6045
  readonly price: string;
6053
6046
  };
6047
+ export type CustomerCreditConsumptionByMonth = {
6048
+ readonly month: string;
6049
+ readonly price: string;
6050
+ };
6054
6051
  export type CustomerDefaultAffiliationsUpdateRequest = {
6055
6052
  default_affiliations?: Array<string>;
6056
6053
  };
@@ -6728,9 +6725,6 @@ export type DigitalOceanDropletRequest = {
6728
6725
  image: string;
6729
6726
  size: string;
6730
6727
  };
6731
- export type DigitalOceanDropletResize = {
6732
- disk: boolean;
6733
- };
6734
6728
  export type DigitalOceanDropletResizeRequest = {
6735
6729
  size: string;
6736
6730
  disk: boolean;
@@ -7182,6 +7176,9 @@ export type Event = {
7182
7176
  message?: string;
7183
7177
  readonly context?: unknown;
7184
7178
  };
7179
+ export type EventCount = {
7180
+ count: number;
7181
+ };
7185
7182
  export type EventGroupsEnum = 'access_subnets' | 'auth' | 'call' | 'chat' | 'credits' | 'customers' | 'invoices' | 'offering_accounting' | 'onboarding' | 'permissions' | 'projects' | 'proposal' | 'providers' | 'resources' | 'review' | 'ssh' | 'support' | 'users' | 'terms_of_service';
7186
7183
  export type EventMetadataResponse = {
7187
7184
  /**
@@ -7870,6 +7867,9 @@ export type GlobalUserDataAccessLog = {
7870
7867
  [key: string]: unknown;
7871
7868
  };
7872
7869
  };
7870
+ export type GoogleAuthUrl = {
7871
+ request_url: string;
7872
+ };
7873
7873
  export type GoogleCalendar = {
7874
7874
  backend_id?: string | null;
7875
7875
  public?: boolean;
@@ -8889,12 +8889,6 @@ export type InvoiceItem = {
8889
8889
  readonly backend_uuid?: string | null;
8890
8890
  readonly credit?: boolean;
8891
8891
  };
8892
- export type InvoiceItemCompensation = {
8893
- /**
8894
- * Name of the offering component for compensation
8895
- */
8896
- offering_component_name: string;
8897
- };
8898
8892
  export type InvoiceItemCompensationRequest = {
8899
8893
  /**
8900
8894
  * Name of the offering component for compensation
@@ -8989,9 +8983,6 @@ export type InvoiceItemDetails = {
8989
8983
  */
8990
8984
  resource_limit_periods?: Array<ResourceLimitPeriod>;
8991
8985
  };
8992
- export type InvoiceItemMigrateTo = {
8993
- invoice: string;
8994
- };
8995
8986
  export type InvoiceItemMigrateToRequest = {
8996
8987
  invoice: string;
8997
8988
  };
@@ -9001,6 +8992,9 @@ export type InvoiceItemTotalPrice = {
9001
8992
  */
9002
8993
  total_price: string;
9003
8994
  };
8995
+ export type InvoiceItemUuid = {
8996
+ invoice_item_uuid: string;
8997
+ };
9004
8998
  export type InvoiceItemUpdate = {
9005
8999
  article_code?: string;
9006
9000
  quantity?: string;
@@ -9401,18 +9395,9 @@ export type LinkResourceResponse = {
9401
9395
  previous_backend_id: string;
9402
9396
  success: boolean;
9403
9397
  };
9404
- export type LinkToInvoice = {
9405
- invoice: string;
9406
- };
9407
9398
  export type LinkToInvoiceRequest = {
9408
9399
  invoice: string;
9409
9400
  };
9410
- export type LoadBalancerAsyncOperationResponse = {
9411
- /**
9412
- * Message that execution of the operation was scheduled.
9413
- */
9414
- status: string;
9415
- };
9416
9401
  export type LoadBalancerAttachFloatingIpRequest = {
9417
9402
  floating_ip: string;
9418
9403
  };
@@ -10998,12 +10983,6 @@ export type MessageTemplateRequest = {
10998
10983
  subject: string;
10999
10984
  body: string;
11000
10985
  };
11001
- export type MetricsReset = {
11002
- /**
11003
- * Operation status
11004
- */
11005
- readonly status: string;
11006
- };
11007
10986
  export type MigrationCreate = {
11008
10987
  mappings?: Mapping;
11009
10988
  src_resource: string;
@@ -11875,6 +11854,20 @@ export type Notification = {
11875
11854
  [key: string]: unknown;
11876
11855
  };
11877
11856
  };
11857
+ export type NotificationRecipient = {
11858
+ full_name?: string | null;
11859
+ email: string;
11860
+ offerings: Array<NotificationRecipientOffering>;
11861
+ customers: Array<NotificationRecipientCustomer>;
11862
+ };
11863
+ export type NotificationRecipientCustomer = {
11864
+ uuid: string;
11865
+ name: string;
11866
+ };
11867
+ export type NotificationRecipientOffering = {
11868
+ uuid: string;
11869
+ name: string;
11870
+ };
11878
11871
  export type NotificationRequest = {
11879
11872
  key: string;
11880
11873
  description?: string;
@@ -12522,6 +12515,15 @@ export type OfferingLocationUpdateRequest = {
12522
12515
  latitude: number;
12523
12516
  longitude: number;
12524
12517
  };
12518
+ export type OfferingMapping = {
12519
+ uuid: string;
12520
+ name: string;
12521
+ description: string;
12522
+ slug: string;
12523
+ };
12524
+ export type OfferingMappingMap = {
12525
+ '*': OfferingMapping | null;
12526
+ };
12525
12527
  export type OfferingOptions = {
12526
12528
  order?: Array<string>;
12527
12529
  options?: {
@@ -12792,12 +12794,6 @@ export type OfferingProfileRequest = {
12792
12794
  name: string;
12793
12795
  description?: string;
12794
12796
  };
12795
- export type OfferingProfileRoleAssign = {
12796
- /**
12797
- * Role UUID to add or remove.
12798
- */
12799
- role: string;
12800
- };
12801
12797
  export type OfferingProfileRoleAssignRequest = {
12802
12798
  /**
12803
12799
  * Role UUID to add or remove.
@@ -15518,20 +15514,6 @@ export type OpenStackTenantChangePasswordRequest = {
15518
15514
  */
15519
15515
  user_password: string;
15520
15516
  };
15521
- export type OpenStackTenantQuota = {
15522
- instances?: number;
15523
- volumes?: number;
15524
- snapshots?: number;
15525
- ram?: number;
15526
- vcpu?: number;
15527
- storage?: number;
15528
- security_group_count?: number;
15529
- security_group_rule_count?: number;
15530
- floating_ip_count?: number;
15531
- network_count?: number;
15532
- subnet_count?: number;
15533
- port_count?: number;
15534
- };
15535
15517
  export type OpenStackTenantRequest = {
15536
15518
  name: string;
15537
15519
  description?: string;
@@ -15557,6 +15539,11 @@ export type OpenStackTenantSecurityGroupRequest = {
15557
15539
  description?: string;
15558
15540
  rules?: Array<OpenStackSecurityGroupRuleCreateRequest>;
15559
15541
  };
15542
+ export type OpenStackUsageStatsResponse = {
15543
+ readonly name: string;
15544
+ readonly running_instances_count: number;
15545
+ readonly created_instances_count: number;
15546
+ };
15560
15547
  export type OpenStackVolume = {
15561
15548
  readonly url?: string;
15562
15549
  readonly uuid?: string;
@@ -19019,6 +19006,15 @@ export type ProjectInfoRequest = {
19019
19006
  */
19020
19007
  allowed_destinations?: string | null;
19021
19008
  };
19009
+ export type ProjectMapping = {
19010
+ uuid: string;
19011
+ name: string;
19012
+ customer_uuid: string;
19013
+ customer_name: string;
19014
+ };
19015
+ export type ProjectMappingMap = {
19016
+ '*': ProjectMapping | null;
19017
+ };
19022
19018
  export type ProjectOrderAutoApproval = {
19023
19019
  readonly uuid: string;
19024
19020
  readonly url: string;
@@ -21359,6 +21355,9 @@ export type RancherClusterTemplateNode = {
21359
21355
  preferred_volume_type?: string;
21360
21356
  role: RancherNodeRoleEnum;
21361
21357
  };
21358
+ export type RancherCreateManagementSecurityGroupResponse = {
21359
+ security_group_uuid: string;
21360
+ };
21362
21361
  export type RancherCreateNode = {
21363
21362
  cluster: string;
21364
21363
  role: RancherNodeRoleEnum;
@@ -21411,11 +21410,6 @@ export type RancherHpaRequest = {
21411
21410
  max_replicas?: number;
21412
21411
  metrics: unknown;
21413
21412
  };
21414
- export type RancherImportYaml = {
21415
- yaml: string;
21416
- default_namespace?: string | null;
21417
- namespace?: string | null;
21418
- };
21419
21413
  export type RancherImportYamlRequest = {
21420
21414
  yaml: string;
21421
21415
  default_namespace?: string | null;
@@ -22627,18 +22621,9 @@ export type ResourceProject = {
22627
22621
  readonly removed_by_username: string;
22628
22622
  readonly termination_metadata: unknown;
22629
22623
  };
22630
- export type ResourceProjectBackendId = {
22631
- backend_id: string;
22632
- };
22633
22624
  export type ResourceProjectBackendIdRequest = {
22634
22625
  backend_id: string;
22635
22626
  };
22636
- export type ResourceProjectErrorMessage = {
22637
- /**
22638
- * Free-form description of why the project transitioned to Erred.
22639
- */
22640
- error_message?: string;
22641
- };
22642
22627
  export type ResourceProjectErrorMessageRequest = {
22643
22628
  /**
22644
22629
  * Free-form description of why the project transitioned to Erred.
@@ -24061,12 +24046,6 @@ export type RoundReviewer = {
24061
24046
  in_review_proposals: number;
24062
24047
  };
24063
24048
  export type RoundStatus = 'scheduled' | 'open' | 'ended';
24064
- export type RouterSetErredResponse = {
24065
- detail: string;
24066
- };
24067
- export type RouterSetOkResponse = {
24068
- detail: string;
24069
- };
24070
24049
  export type Rule = {
24071
24050
  name: string;
24072
24051
  readonly uuid: string;
@@ -24273,6 +24252,12 @@ export type ScreenshotRequest = {
24273
24252
  image: Blob | File;
24274
24253
  offering: string;
24275
24254
  };
24255
+ export type ScriptAsyncDryRunResponse = {
24256
+ uuid: string;
24257
+ };
24258
+ export type ScriptDryRunResponse = {
24259
+ output: string;
24260
+ };
24276
24261
  export type Secret = {
24277
24262
  name: string;
24278
24263
  id: string;
@@ -25968,9 +25953,6 @@ export type TriggerSyncRequestRequest = {
25968
25953
  */
25969
25954
  resource_uuid?: string;
25970
25955
  };
25971
- export type UnsilenceActionResponse = {
25972
- status: string;
25973
- };
25974
25956
  export type UpdateActionsRequest = {
25975
25957
  /**
25976
25958
  * Optional provider action type to update. If not provided, updates all providers.
@@ -26458,6 +26440,9 @@ export type UserDataAccessLog = {
26458
26440
  export type UserEmailChangeRequest = {
26459
26441
  email: string;
26460
26442
  };
26443
+ export type UserHasResourceAccess = {
26444
+ readonly has_access: boolean;
26445
+ };
26461
26446
  export type UserIdentitySourceCount = {
26462
26447
  /**
26463
26448
  * Identity source
@@ -26496,6 +26481,146 @@ export type UserLanguageCount = {
26496
26481
  language: string;
26497
26482
  count: number;
26498
26483
  };
26484
+ export type UserMapping = {
26485
+ uuid: string;
26486
+ full_name: string;
26487
+ email: string;
26488
+ username: string;
26489
+ };
26490
+ export type UserMappingMap = {
26491
+ '*': UserMapping | null;
26492
+ };
26493
+ export type UserMe = {
26494
+ readonly url: string;
26495
+ readonly uuid: string;
26496
+ /**
26497
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
26498
+ */
26499
+ username: string;
26500
+ /**
26501
+ * URL-friendly identifier. Only editable by staff users.
26502
+ */
26503
+ slug?: string;
26504
+ readonly full_name: string;
26505
+ native_name?: string;
26506
+ job_title?: string;
26507
+ email: string;
26508
+ phone_number?: string;
26509
+ organization?: string;
26510
+ readonly civil_number: string | null;
26511
+ description?: string;
26512
+ /**
26513
+ * Staff status
26514
+ * Designates whether the user can log into this admin site.
26515
+ */
26516
+ is_staff?: boolean;
26517
+ /**
26518
+ * Active
26519
+ * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
26520
+ */
26521
+ is_active?: boolean;
26522
+ /**
26523
+ * Support status
26524
+ * Designates whether the user is a global support user.
26525
+ */
26526
+ is_support?: boolean;
26527
+ readonly token: string;
26528
+ /**
26529
+ * Token lifetime in seconds.
26530
+ */
26531
+ token_lifetime?: number | null;
26532
+ readonly token_expires_at: string | null;
26533
+ /**
26534
+ * Indicates what registration method was used.
26535
+ */
26536
+ readonly registration_method: string;
26537
+ readonly date_joined: string;
26538
+ /**
26539
+ * Indicates when the user has agreed with the policy.
26540
+ */
26541
+ readonly agreement_date: string | null;
26542
+ /**
26543
+ * Designates whether the user is allowed to receive email notifications.
26544
+ */
26545
+ notifications_enabled?: boolean;
26546
+ preferred_language?: string;
26547
+ readonly permissions: Array<Permission>;
26548
+ readonly requested_email: string | null;
26549
+ /**
26550
+ * Person's affiliation within organization such as student, faculty, staff.
26551
+ */
26552
+ readonly affiliations: unknown;
26553
+ first_name?: string;
26554
+ last_name?: string;
26555
+ birth_date?: string | null;
26556
+ readonly identity_provider_name: string;
26557
+ readonly identity_provider_label: string;
26558
+ readonly identity_provider_management_url: string;
26559
+ readonly identity_provider_fields: Array<string>;
26560
+ image?: string | null;
26561
+ /**
26562
+ * Source of identity
26563
+ * Indicates what identity provider was used.
26564
+ */
26565
+ readonly identity_source: string;
26566
+ readonly should_protect_user_details: boolean;
26567
+ readonly has_active_session: boolean;
26568
+ readonly has_usable_password: boolean;
26569
+ readonly ip_address: string;
26570
+ /**
26571
+ * User's gender (male, female, or unknown)
26572
+ */
26573
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
26574
+ /**
26575
+ * Honorific title (Mr, Ms, Dr, Prof, etc.)
26576
+ */
26577
+ personal_title?: string;
26578
+ place_of_birth?: string;
26579
+ address?: string;
26580
+ country_of_residence?: string;
26581
+ /**
26582
+ * Primary citizenship (ISO 3166-1 alpha-2 code)
26583
+ */
26584
+ nationality?: string;
26585
+ /**
26586
+ * List of all citizenships (ISO 3166-1 alpha-2 codes)
26587
+ */
26588
+ nationalities?: unknown;
26589
+ organization_country?: string;
26590
+ /**
26591
+ * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
26592
+ */
26593
+ organization_type?: string;
26594
+ /**
26595
+ * Company registration code of the user's organization, if known
26596
+ */
26597
+ organization_registry_code?: string;
26598
+ /**
26599
+ * REFEDS assurance profile URIs from identity provider
26600
+ */
26601
+ eduperson_assurance?: unknown;
26602
+ /**
26603
+ * Designates whether the user is allowed to manage remote user identities.
26604
+ */
26605
+ is_identity_manager?: boolean;
26606
+ /**
26607
+ * Per-attribute source and freshness tracking. Format: {'field_name': {'source': 'isd:<name>', 'timestamp': 'ISO8601'}}.
26608
+ */
26609
+ readonly attribute_sources: unknown;
26610
+ /**
26611
+ * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
26612
+ */
26613
+ managed_isds?: unknown;
26614
+ /**
26615
+ * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
26616
+ */
26617
+ readonly active_isds: unknown;
26618
+ /**
26619
+ * Reason why the user was deactivated. Visible to staff and support.
26620
+ */
26621
+ deactivation_reason?: string;
26622
+ profile_completeness: ProfileCompleteness;
26623
+ };
26499
26624
  export type UserNationalityStats = {
26500
26625
  /**
26501
26626
  * Nationality code
@@ -26885,12 +27010,6 @@ export type VmwareDisk = {
26885
27010
  readonly is_usage_based?: boolean | null;
26886
27011
  readonly is_limit_based?: boolean | null;
26887
27012
  };
26888
- export type VmwareDiskExtend = {
26889
- /**
26890
- * Size in MiB
26891
- */
26892
- size: number;
26893
- };
26894
27013
  export type VmwareDiskExtendRequest = {
26895
27014
  /**
26896
27015
  * Size in MiB
@@ -32360,7 +32479,7 @@ export type AwsInstancesResizeData = {
32360
32479
  url: '/api/aws-instances/{uuid}/resize/';
32361
32480
  };
32362
32481
  export type AwsInstancesResizeResponses = {
32363
- 200: AwsInstanceResize;
32482
+ 202: Status;
32364
32483
  };
32365
32484
  export type AwsInstancesResizeResponse = AwsInstancesResizeResponses[keyof AwsInstancesResizeResponses];
32366
32485
  export type AwsInstancesRestartData = {
@@ -32689,9 +32808,11 @@ export type AwsVolumesAttachData = {
32689
32808
  url: '/api/aws-volumes/{uuid}/attach/';
32690
32809
  };
32691
32810
  export type AwsVolumesAttachResponses = {
32692
- 200: AwsVolumeAttach;
32811
+ /**
32812
+ * No response body
32813
+ */
32814
+ 202: unknown;
32693
32815
  };
32694
- export type AwsVolumesAttachResponse = AwsVolumesAttachResponses[keyof AwsVolumesAttachResponses];
32695
32816
  export type AwsVolumesDetachData = {
32696
32817
  body?: never;
32697
32818
  path: {
@@ -33945,7 +34066,7 @@ export type AzureSqlServersCreateDatabaseData = {
33945
34066
  url: '/api/azure-sql-servers/{uuid}/create_database/';
33946
34067
  };
33947
34068
  export type AzureSqlServersCreateDatabaseResponses = {
33948
- 200: AzureSqlDatabaseCreate;
34069
+ 202: AzureSqlDatabaseCreateResponse;
33949
34070
  };
33950
34071
  export type AzureSqlServersCreateDatabaseResponse = AzureSqlServersCreateDatabaseResponses[keyof AzureSqlServersCreateDatabaseResponses];
33951
34072
  export type AzureSqlServersPullData = {
@@ -35232,7 +35353,7 @@ export type BookingResourcesAcceptData = {
35232
35353
  url: '/api/booking-resources/{uuid}/accept/';
35233
35354
  };
35234
35355
  export type BookingResourcesAcceptResponses = {
35235
- 200: BookingResource;
35356
+ 200: BookingOrderUuid;
35236
35357
  };
35237
35358
  export type BookingResourcesAcceptResponse = BookingResourcesAcceptResponses[keyof BookingResourcesAcceptResponses];
35238
35359
  export type BookingResourcesRejectData = {
@@ -35244,7 +35365,7 @@ export type BookingResourcesRejectData = {
35244
35365
  url: '/api/booking-resources/{uuid}/reject/';
35245
35366
  };
35246
35367
  export type BookingResourcesRejectResponses = {
35247
- 200: BookingResource;
35368
+ 200: BookingOrderUuid;
35248
35369
  };
35249
35370
  export type BookingResourcesRejectResponse = BookingResourcesRejectResponses[keyof BookingResourcesRejectResponses];
35250
35371
  export type BroadcastMessageTemplatesListData = {
@@ -35501,13 +35622,11 @@ export type BroadcastMessagesSendResponses = {
35501
35622
  export type BroadcastMessagesRecipientsRetrieveData = {
35502
35623
  body?: never;
35503
35624
  path?: never;
35504
- query?: {
35505
- field?: Array<BroadcastMessageFieldEnum>;
35506
- };
35625
+ query?: never;
35507
35626
  url: '/api/broadcast-messages/recipients/';
35508
35627
  };
35509
35628
  export type BroadcastMessagesRecipientsRetrieveResponses = {
35510
- 200: BroadcastMessage;
35629
+ 200: NotificationRecipient;
35511
35630
  };
35512
35631
  export type BroadcastMessagesRecipientsRetrieveResponse = BroadcastMessagesRecipientsRetrieveResponses[keyof BroadcastMessagesRecipientsRetrieveResponses];
35513
35632
  export type BroadcastMessagesRecipientsCountData = {
@@ -37753,9 +37872,11 @@ export type CustomerCreditsApplyCompensationsData = {
37753
37872
  url: '/api/customer-credits/{uuid}/apply_compensations/';
37754
37873
  };
37755
37874
  export type CustomerCreditsApplyCompensationsResponses = {
37756
- 200: CustomerCredit;
37875
+ /**
37876
+ * No response body
37877
+ */
37878
+ 200: unknown;
37757
37879
  };
37758
- export type CustomerCreditsApplyCompensationsResponse = CustomerCreditsApplyCompensationsResponses[keyof CustomerCreditsApplyCompensationsResponses];
37759
37880
  export type CustomerCreditsClearCompensationsData = {
37760
37881
  body?: never;
37761
37882
  path: {
@@ -37765,9 +37886,11 @@ export type CustomerCreditsClearCompensationsData = {
37765
37886
  url: '/api/customer-credits/{uuid}/clear_compensations/';
37766
37887
  };
37767
37888
  export type CustomerCreditsClearCompensationsResponses = {
37768
- 200: CustomerCredit;
37889
+ /**
37890
+ * No response body
37891
+ */
37892
+ 200: unknown;
37769
37893
  };
37770
- export type CustomerCreditsClearCompensationsResponse = CustomerCreditsClearCompensationsResponses[keyof CustomerCreditsClearCompensationsResponses];
37771
37894
  export type CustomerCreditsConsumptionsListData = {
37772
37895
  body?: never;
37773
37896
  path: {
@@ -39136,7 +39259,7 @@ export type DebugPubsubMetricsResetData = {
39136
39259
  url: '/api/debug/pubsub/metrics_reset/';
39137
39260
  };
39138
39261
  export type DebugPubsubMetricsResetResponses = {
39139
- 200: MetricsReset;
39262
+ 200: Status;
39140
39263
  };
39141
39264
  export type DebugPubsubMetricsResetResponse = DebugPubsubMetricsResetResponses[keyof DebugPubsubMetricsResetResponses];
39142
39265
  export type DebugPubsubOverviewRetrieveData = {
@@ -39426,7 +39549,7 @@ export type DigitaloceanDropletsResizeData = {
39426
39549
  url: '/api/digitalocean-droplets/{uuid}/resize/';
39427
39550
  };
39428
39551
  export type DigitaloceanDropletsResizeResponses = {
39429
- 200: DigitalOceanDropletResize;
39552
+ 202: Status;
39430
39553
  };
39431
39554
  export type DigitaloceanDropletsResizeResponse = DigitaloceanDropletsResizeResponses[keyof DigitaloceanDropletsResizeResponses];
39432
39555
  export type DigitaloceanDropletsRestartData = {
@@ -39438,7 +39561,7 @@ export type DigitaloceanDropletsRestartData = {
39438
39561
  url: '/api/digitalocean-droplets/{uuid}/restart/';
39439
39562
  };
39440
39563
  export type DigitaloceanDropletsRestartResponses = {
39441
- 200: DigitalOceanDroplet;
39564
+ 202: Status;
39442
39565
  };
39443
39566
  export type DigitaloceanDropletsRestartResponse = DigitaloceanDropletsRestartResponses[keyof DigitaloceanDropletsRestartResponses];
39444
39567
  export type DigitaloceanDropletsSetErredData = {
@@ -39474,7 +39597,7 @@ export type DigitaloceanDropletsStartData = {
39474
39597
  url: '/api/digitalocean-droplets/{uuid}/start/';
39475
39598
  };
39476
39599
  export type DigitaloceanDropletsStartResponses = {
39477
- 200: DigitalOceanDroplet;
39600
+ 202: Status;
39478
39601
  };
39479
39602
  export type DigitaloceanDropletsStartResponse = DigitaloceanDropletsStartResponses[keyof DigitaloceanDropletsStartResponses];
39480
39603
  export type DigitaloceanDropletsStopData = {
@@ -39486,7 +39609,7 @@ export type DigitaloceanDropletsStopData = {
39486
39609
  url: '/api/digitalocean-droplets/{uuid}/stop/';
39487
39610
  };
39488
39611
  export type DigitaloceanDropletsStopResponses = {
39489
- 200: DigitalOceanDroplet;
39612
+ 202: Status;
39490
39613
  };
39491
39614
  export type DigitaloceanDropletsStopResponse = DigitaloceanDropletsStopResponses[keyof DigitaloceanDropletsStopResponses];
39492
39615
  export type DigitaloceanDropletsUnlinkData = {
@@ -40184,13 +40307,11 @@ export type EventsRetrieveResponse = EventsRetrieveResponses[keyof EventsRetriev
40184
40307
  export type EventsCountRetrieveData = {
40185
40308
  body?: never;
40186
40309
  path?: never;
40187
- query?: {
40188
- field?: Array<EventFieldEnum>;
40189
- };
40310
+ query?: never;
40190
40311
  url: '/api/events/count/';
40191
40312
  };
40192
40313
  export type EventsCountRetrieveResponses = {
40193
- 200: Event;
40314
+ 200: EventCount;
40194
40315
  };
40195
40316
  export type EventsCountRetrieveResponse = EventsCountRetrieveResponses[keyof EventsCountRetrieveResponses];
40196
40317
  export type EventsCountCountData = {
@@ -40208,13 +40329,13 @@ export type EventsCountCountResponses = {
40208
40329
  export type EventsEventGroupsRetrieveData = {
40209
40330
  body?: never;
40210
40331
  path?: never;
40211
- query?: {
40212
- field?: Array<EventFieldEnum>;
40213
- };
40332
+ query?: never;
40214
40333
  url: '/api/events/event_groups/';
40215
40334
  };
40216
40335
  export type EventsEventGroupsRetrieveResponses = {
40217
- 200: Event;
40336
+ 200: {
40337
+ [key: string]: Array<string>;
40338
+ };
40218
40339
  };
40219
40340
  export type EventsEventGroupsRetrieveResponse = EventsEventGroupsRetrieveResponses[keyof EventsEventGroupsRetrieveResponses];
40220
40341
  export type EventsEventGroupsCountData = {
@@ -40232,13 +40353,11 @@ export type EventsEventGroupsCountResponses = {
40232
40353
  export type EventsScopeTypesRetrieveData = {
40233
40354
  body?: never;
40234
40355
  path?: never;
40235
- query?: {
40236
- field?: Array<EventFieldEnum>;
40237
- };
40356
+ query?: never;
40238
40357
  url: '/api/events/scope_types/';
40239
40358
  };
40240
40359
  export type EventsScopeTypesRetrieveResponses = {
40241
- 200: Event;
40360
+ 200: Array<string>;
40242
40361
  };
40243
40362
  export type EventsScopeTypesRetrieveResponse = EventsScopeTypesRetrieveResponses[keyof EventsScopeTypesRetrieveResponses];
40244
40363
  export type EventsScopeTypesCountData = {
@@ -40820,13 +40939,11 @@ export type GoogleAuthAuthorizeRetrieveData = {
40820
40939
  path: {
40821
40940
  uuid: string;
40822
40941
  };
40823
- query?: {
40824
- field?: Array<GoogleCredentialsFieldEnum>;
40825
- };
40942
+ query?: never;
40826
40943
  url: '/api/google-auth/{uuid}/authorize/';
40827
40944
  };
40828
40945
  export type GoogleAuthAuthorizeRetrieveResponses = {
40829
- 200: GoogleCredentials;
40946
+ 200: GoogleAuthUrl;
40830
40947
  };
40831
40948
  export type GoogleAuthAuthorizeRetrieveResponse = GoogleAuthAuthorizeRetrieveResponses[keyof GoogleAuthAuthorizeRetrieveResponses];
40832
40949
  export type GoogleAuthCallbackRetrieveData = {
@@ -40845,11 +40962,9 @@ export type GoogleAuthCallbackRetrieveData = {
40845
40962
  url: '/api/google-auth/callback/';
40846
40963
  };
40847
40964
  export type GoogleAuthCallbackRetrieveResponses = {
40848
- /**
40849
- * No response body
40850
- */
40851
- 200: unknown;
40965
+ 200: string;
40852
40966
  };
40967
+ export type GoogleAuthCallbackRetrieveResponse = GoogleAuthCallbackRetrieveResponses[keyof GoogleAuthCallbackRetrieveResponses];
40853
40968
  export type GoogleAuthCallbackCountData = {
40854
40969
  body?: never;
40855
40970
  path?: never;
@@ -41492,18 +41607,42 @@ export type InvoiceItemsUpdateResponses = {
41492
41607
  200: InvoiceItemUpdate;
41493
41608
  };
41494
41609
  export type InvoiceItemsUpdateResponse = InvoiceItemsUpdateResponses[keyof InvoiceItemsUpdateResponses];
41495
- export type InvoiceItemsConsumptionsRetrieveData = {
41610
+ export type InvoiceItemsConsumptionsListData = {
41496
41611
  body?: never;
41497
41612
  path: {
41498
41613
  uuid: string;
41499
41614
  };
41500
- query?: never;
41615
+ query?: {
41616
+ credit_uuid?: string;
41617
+ customer_uuid?: string;
41618
+ month?: number;
41619
+ offering_uuid?: string;
41620
+ /**
41621
+ * A page number within the paginated result set.
41622
+ */
41623
+ page?: number;
41624
+ /**
41625
+ * Number of results to return per page.
41626
+ */
41627
+ page_size?: number;
41628
+ project_uuid?: string;
41629
+ resource_uuid?: string;
41630
+ /**
41631
+ * Start month
41632
+ */
41633
+ start_month?: number;
41634
+ /**
41635
+ * Start year
41636
+ */
41637
+ start_year?: number;
41638
+ year?: number;
41639
+ };
41501
41640
  url: '/api/invoice-items/{uuid}/consumptions/';
41502
41641
  };
41503
- export type InvoiceItemsConsumptionsRetrieveResponses = {
41504
- 200: InvoiceItemDetail;
41642
+ export type InvoiceItemsConsumptionsListResponses = {
41643
+ 200: Array<CustomerCreditConsumptionByMonth>;
41505
41644
  };
41506
- export type InvoiceItemsConsumptionsRetrieveResponse = InvoiceItemsConsumptionsRetrieveResponses[keyof InvoiceItemsConsumptionsRetrieveResponses];
41645
+ export type InvoiceItemsConsumptionsListResponse = InvoiceItemsConsumptionsListResponses[keyof InvoiceItemsConsumptionsListResponses];
41507
41646
  export type InvoiceItemsCreateCompensationData = {
41508
41647
  body: InvoiceItemCompensationRequest;
41509
41648
  path: {
@@ -41513,7 +41652,7 @@ export type InvoiceItemsCreateCompensationData = {
41513
41652
  url: '/api/invoice-items/{uuid}/create_compensation/';
41514
41653
  };
41515
41654
  export type InvoiceItemsCreateCompensationResponses = {
41516
- 200: InvoiceItemCompensation;
41655
+ 201: InvoiceItemUuid;
41517
41656
  };
41518
41657
  export type InvoiceItemsCreateCompensationResponse = InvoiceItemsCreateCompensationResponses[keyof InvoiceItemsCreateCompensationResponses];
41519
41658
  export type InvoiceItemsMigrateToData = {
@@ -41525,7 +41664,7 @@ export type InvoiceItemsMigrateToData = {
41525
41664
  url: '/api/invoice-items/{uuid}/migrate_to/';
41526
41665
  };
41527
41666
  export type InvoiceItemsMigrateToResponses = {
41528
- 200: InvoiceItemMigrateTo;
41667
+ 200: InvoiceItemUuid;
41529
41668
  };
41530
41669
  export type InvoiceItemsMigrateToResponse = InvoiceItemsMigrateToResponses[keyof InvoiceItemsMigrateToResponses];
41531
41670
  export type InvoiceItemsCostsListData = {
@@ -41918,9 +42057,11 @@ export type InvoicesPaidData = {
41918
42057
  url: '/api/invoices/{uuid}/paid/';
41919
42058
  };
41920
42059
  export type InvoicesPaidResponses = {
41921
- 200: Invoice;
42060
+ /**
42061
+ * No response body
42062
+ */
42063
+ 200: unknown;
41922
42064
  };
41923
- export type InvoicesPaidResponse = InvoicesPaidResponses[keyof InvoicesPaidResponses];
41924
42065
  export type InvoicesSendNotificationData = {
41925
42066
  body?: never;
41926
42067
  path: {
@@ -41930,7 +42071,7 @@ export type InvoicesSendNotificationData = {
41930
42071
  url: '/api/invoices/{uuid}/send_notification/';
41931
42072
  };
41932
42073
  export type InvoicesSendNotificationResponses = {
41933
- 200: Invoice;
42074
+ 200: Detail;
41934
42075
  };
41935
42076
  export type InvoicesSendNotificationResponse = InvoicesSendNotificationResponses[keyof InvoicesSendNotificationResponses];
41936
42077
  export type InvoicesSetBackendIdData = {
@@ -45128,7 +45269,7 @@ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveData = {
45128
45269
  url: '/api/marketplace-customer-component-usage-policies/actions/';
45129
45270
  };
45130
45271
  export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses = {
45131
- 200: CustomerComponentUsagePolicy;
45272
+ 200: Array<string>;
45132
45273
  };
45133
45274
  export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses];
45134
45275
  export type MarketplaceCustomerComponentUsagePoliciesActionsCountData = {
@@ -45259,7 +45400,7 @@ export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveData = {
45259
45400
  url: '/api/marketplace-customer-estimated-cost-policies/actions/';
45260
45401
  };
45261
45402
  export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses = {
45262
- 200: CustomerEstimatedCostPolicy;
45403
+ 200: Array<string>;
45263
45404
  };
45264
45405
  export type MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceCustomerEstimatedCostPoliciesActionsRetrieveResponses];
45265
45406
  export type MarketplaceCustomerEstimatedCostPoliciesActionsCountData = {
@@ -45823,7 +45964,7 @@ export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveData = {
45823
45964
  url: '/api/marketplace-offering-estimated-cost-policies/actions/';
45824
45965
  };
45825
45966
  export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses = {
45826
- 200: OfferingEstimatedCostPolicy;
45967
+ 200: Array<string>;
45827
45968
  };
45828
45969
  export type MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceOfferingEstimatedCostPoliciesActionsRetrieveResponses];
45829
45970
  export type MarketplaceOfferingEstimatedCostPoliciesActionsCountData = {
@@ -46508,7 +46649,7 @@ export type MarketplaceOfferingProfilesAddRoleData = {
46508
46649
  url: '/api/marketplace-offering-profiles/{uuid}/add_role/';
46509
46650
  };
46510
46651
  export type MarketplaceOfferingProfilesAddRoleResponses = {
46511
- 200: OfferingProfileRoleAssign;
46652
+ 200: OfferingProfile;
46512
46653
  };
46513
46654
  export type MarketplaceOfferingProfilesAddRoleResponse = MarketplaceOfferingProfilesAddRoleResponses[keyof MarketplaceOfferingProfilesAddRoleResponses];
46514
46655
  export type MarketplaceOfferingProfilesRemoveRoleData = {
@@ -46520,7 +46661,7 @@ export type MarketplaceOfferingProfilesRemoveRoleData = {
46520
46661
  url: '/api/marketplace-offering-profiles/{uuid}/remove_role/';
46521
46662
  };
46522
46663
  export type MarketplaceOfferingProfilesRemoveRoleResponses = {
46523
- 200: OfferingProfileRoleAssign;
46664
+ 200: OfferingProfile;
46524
46665
  };
46525
46666
  export type MarketplaceOfferingProfilesRemoveRoleResponse = MarketplaceOfferingProfilesRemoveRoleResponses[keyof MarketplaceOfferingProfilesRemoveRoleResponses];
46526
46667
  export type MarketplaceOfferingReferralsListData = {
@@ -46967,7 +47108,7 @@ export type MarketplaceOfferingUsagePoliciesActionsRetrieveData = {
46967
47108
  url: '/api/marketplace-offering-usage-policies/actions/';
46968
47109
  };
46969
47110
  export type MarketplaceOfferingUsagePoliciesActionsRetrieveResponses = {
46970
- 200: OfferingUsagePolicy;
47111
+ 200: Array<string>;
46971
47112
  };
46972
47113
  export type MarketplaceOfferingUsagePoliciesActionsRetrieveResponse = MarketplaceOfferingUsagePoliciesActionsRetrieveResponses[keyof MarketplaceOfferingUsagePoliciesActionsRetrieveResponses];
46973
47114
  export type MarketplaceOfferingUsagePoliciesActionsCountData = {
@@ -48790,7 +48931,7 @@ export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveData = {
48790
48931
  url: '/api/marketplace-project-estimated-cost-policies/actions/';
48791
48932
  };
48792
48933
  export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses = {
48793
- 200: ProjectEstimatedCostPolicy;
48934
+ 200: Array<string>;
48794
48935
  };
48795
48936
  export type MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponse = MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses[keyof MarketplaceProjectEstimatedCostPoliciesActionsRetrieveResponses];
48796
48937
  export type MarketplaceProjectEstimatedCostPoliciesActionsCountData = {
@@ -51915,7 +52056,6 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
51915
52056
  uuid: string;
51916
52057
  };
51917
52058
  query: {
51918
- field?: Array<ProviderOfferingDetailsFieldEnum>;
51919
52059
  /**
51920
52060
  * Username of the user to check.
51921
52061
  */
@@ -51924,7 +52064,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
51924
52064
  url: '/api/marketplace-provider-offerings/{uuid}/user_has_resource_access/';
51925
52065
  };
51926
52066
  export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses = {
51927
- 200: ProviderOfferingDetails;
52067
+ 200: UserHasResourceAccess;
51928
52068
  };
51929
52069
  export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponse = MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses[keyof MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses];
51930
52070
  export type MarketplaceProviderOfferingsGroupsListData = {
@@ -52495,7 +52635,7 @@ export type MarketplaceProviderResourceProjectsSetBackendIdData = {
52495
52635
  url: '/api/marketplace-provider-resource-projects/{uuid}/set_backend_id/';
52496
52636
  };
52497
52637
  export type MarketplaceProviderResourceProjectsSetBackendIdResponses = {
52498
- 200: ResourceProjectBackendId;
52638
+ 200: Status;
52499
52639
  };
52500
52640
  export type MarketplaceProviderResourceProjectsSetBackendIdResponse = MarketplaceProviderResourceProjectsSetBackendIdResponses[keyof MarketplaceProviderResourceProjectsSetBackendIdResponses];
52501
52641
  export type MarketplaceProviderResourceProjectsSetStateErredData = {
@@ -52507,7 +52647,7 @@ export type MarketplaceProviderResourceProjectsSetStateErredData = {
52507
52647
  url: '/api/marketplace-provider-resource-projects/{uuid}/set_state_erred/';
52508
52648
  };
52509
52649
  export type MarketplaceProviderResourceProjectsSetStateErredResponses = {
52510
- 200: ResourceProjectErrorMessage;
52650
+ 200: Status;
52511
52651
  };
52512
52652
  export type MarketplaceProviderResourceProjectsSetStateErredResponse = MarketplaceProviderResourceProjectsSetStateErredResponses[keyof MarketplaceProviderResourceProjectsSetStateErredResponses];
52513
52653
  export type MarketplaceProviderResourceProjectsSetStateOkData = {
@@ -52519,9 +52659,7 @@ export type MarketplaceProviderResourceProjectsSetStateOkData = {
52519
52659
  url: '/api/marketplace-provider-resource-projects/{uuid}/set_state_ok/';
52520
52660
  };
52521
52661
  export type MarketplaceProviderResourceProjectsSetStateOkResponses = {
52522
- 200: {
52523
- [key: string]: unknown;
52524
- };
52662
+ 200: Status;
52525
52663
  };
52526
52664
  export type MarketplaceProviderResourceProjectsSetStateOkResponse = MarketplaceProviderResourceProjectsSetStateOkResponses[keyof MarketplaceProviderResourceProjectsSetStateOkResponses];
52527
52665
  export type MarketplaceProviderResourceProjectsUpdateUserData = {
@@ -53438,7 +53576,7 @@ export type MarketplaceProviderResourcesRestoreData = {
53438
53576
  url: '/api/marketplace-provider-resources/{uuid}/restore/';
53439
53577
  };
53440
53578
  export type MarketplaceProviderResourcesRestoreResponses = {
53441
- 200: Resource;
53579
+ 200: OrderUuid;
53442
53580
  };
53443
53581
  export type MarketplaceProviderResourcesRestoreResponse = MarketplaceProviderResourcesRestoreResponses[keyof MarketplaceProviderResourcesRestoreResponses];
53444
53582
  export type MarketplaceProviderResourcesSetAsErredData = {
@@ -55632,7 +55770,7 @@ export type MarketplaceResourcesRestoreData = {
55632
55770
  url: '/api/marketplace-resources/{uuid}/restore/';
55633
55771
  };
55634
55772
  export type MarketplaceResourcesRestoreResponses = {
55635
- 200: Resource;
55773
+ 200: OrderUuid;
55636
55774
  };
55637
55775
  export type MarketplaceResourcesRestoreResponse = MarketplaceResourcesRestoreResponses[keyof MarketplaceResourcesRestoreResponses];
55638
55776
  export type MarketplaceResourcesSetDownscaledData = {
@@ -56540,7 +56678,7 @@ export type MarketplaceScriptDryRunAsyncRunData = {
56540
56678
  url: '/api/marketplace-script-dry-run/{uuid}/async_run/';
56541
56679
  };
56542
56680
  export type MarketplaceScriptDryRunAsyncRunResponses = {
56543
- 200: PublicOfferingDetails;
56681
+ 202: ScriptAsyncDryRunResponse;
56544
56682
  };
56545
56683
  export type MarketplaceScriptDryRunAsyncRunResponse = MarketplaceScriptDryRunAsyncRunResponses[keyof MarketplaceScriptDryRunAsyncRunResponses];
56546
56684
  export type MarketplaceScriptDryRunRunData = {
@@ -56552,7 +56690,7 @@ export type MarketplaceScriptDryRunRunData = {
56552
56690
  url: '/api/marketplace-script-dry-run/{uuid}/run/';
56553
56691
  };
56554
56692
  export type MarketplaceScriptDryRunRunResponses = {
56555
- 200: PublicOfferingDetails;
56693
+ 200: ScriptDryRunResponse;
56556
56694
  };
56557
56695
  export type MarketplaceScriptDryRunRunResponse = MarketplaceScriptDryRunRunResponses[keyof MarketplaceScriptDryRunRunResponses];
56558
56696
  export type MarketplaceScriptSyncResourceData = {
@@ -58933,7 +59071,7 @@ export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveData = {
58933
59071
  url: '/api/marketplace-slurm-periodic-usage-policies/actions/';
58934
59072
  };
58935
59073
  export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses = {
58936
- 200: SlurmPeriodicUsagePolicy;
59074
+ 200: Array<string>;
58937
59075
  };
58938
59076
  export type MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponse = MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses[keyof MarketplaceSlurmPeriodicUsagePoliciesActionsRetrieveResponses];
58939
59077
  export type MarketplaceSlurmPeriodicUsagePoliciesActionsCountData = {
@@ -65604,9 +65742,7 @@ export type OpenportalOfferingMappingRetrieveData = {
65604
65742
  url: '/api/openportal/offering_mapping/';
65605
65743
  };
65606
65744
  export type OpenportalOfferingMappingRetrieveResponses = {
65607
- 200: {
65608
- [key: string]: unknown;
65609
- };
65745
+ 200: OfferingMappingMap;
65610
65746
  };
65611
65747
  export type OpenportalOfferingMappingRetrieveResponse = OpenportalOfferingMappingRetrieveResponses[keyof OpenportalOfferingMappingRetrieveResponses];
65612
65748
  export type OpenportalProjectMappingRetrieveData = {
@@ -65621,9 +65757,7 @@ export type OpenportalProjectMappingRetrieveData = {
65621
65757
  url: '/api/openportal/project_mapping/';
65622
65758
  };
65623
65759
  export type OpenportalProjectMappingRetrieveResponses = {
65624
- 200: {
65625
- [key: string]: unknown;
65626
- };
65760
+ 200: ProjectMappingMap;
65627
65761
  };
65628
65762
  export type OpenportalProjectMappingRetrieveResponse = OpenportalProjectMappingRetrieveResponses[keyof OpenportalProjectMappingRetrieveResponses];
65629
65763
  export type OpenportalUserMappingRetrieveData = {
@@ -65638,9 +65772,7 @@ export type OpenportalUserMappingRetrieveData = {
65638
65772
  url: '/api/openportal/user_mapping/';
65639
65773
  };
65640
65774
  export type OpenportalUserMappingRetrieveResponses = {
65641
- 200: {
65642
- [key: string]: unknown;
65643
- };
65775
+ 200: UserMappingMap;
65644
65776
  };
65645
65777
  export type OpenportalUserMappingRetrieveResponse = OpenportalUserMappingRetrieveResponses[keyof OpenportalUserMappingRetrieveResponses];
65646
65778
  export type OpenstackBackupsListData = {
@@ -66215,13 +66347,13 @@ export type OpenstackFlavorsRetrieveResponse = OpenstackFlavorsRetrieveResponses
66215
66347
  export type OpenstackFlavorsUsageStatsRetrieveData = {
66216
66348
  body?: never;
66217
66349
  path?: never;
66218
- query?: {
66219
- field?: Array<OpenStackFlavorFieldEnum>;
66220
- };
66350
+ query?: never;
66221
66351
  url: '/api/openstack-flavors/usage_stats/';
66222
66352
  };
66223
66353
  export type OpenstackFlavorsUsageStatsRetrieveResponses = {
66224
- 200: OpenStackFlavor;
66354
+ 200: {
66355
+ [key: string]: unknown;
66356
+ };
66225
66357
  };
66226
66358
  export type OpenstackFlavorsUsageStatsRetrieveResponse = OpenstackFlavorsUsageStatsRetrieveResponses[keyof OpenstackFlavorsUsageStatsRetrieveResponses];
66227
66359
  export type OpenstackFlavorsUsageStatsCountData = {
@@ -67104,7 +67236,7 @@ export type OpenstackImagesUsageStatsRetrieveData = {
67104
67236
  url: '/api/openstack-images/usage_stats/';
67105
67237
  };
67106
67238
  export type OpenstackImagesUsageStatsRetrieveResponses = {
67107
- 200: OpenStackImage;
67239
+ 200: OpenStackUsageStatsResponse;
67108
67240
  };
67109
67241
  export type OpenstackImagesUsageStatsRetrieveResponse = OpenstackImagesUsageStatsRetrieveResponses[keyof OpenstackImagesUsageStatsRetrieveResponses];
67110
67242
  export type OpenstackImagesUsageStatsCountData = {
@@ -68091,7 +68223,7 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
68091
68223
  url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
68092
68224
  };
68093
68225
  export type OpenstackLoadbalancersAttachFloatingIpResponses = {
68094
- 202: LoadBalancerAsyncOperationResponse;
68226
+ 202: Status;
68095
68227
  };
68096
68228
  export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
68097
68229
  export type OpenstackLoadbalancersDetachFloatingIpData = {
@@ -68103,7 +68235,7 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
68103
68235
  url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
68104
68236
  };
68105
68237
  export type OpenstackLoadbalancersDetachFloatingIpResponses = {
68106
- 202: LoadBalancerAsyncOperationResponse;
68238
+ 202: Status;
68107
68239
  };
68108
68240
  export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
68109
68241
  export type OpenstackLoadbalancersPullData = {
@@ -68129,7 +68261,7 @@ export type OpenstackLoadbalancersSetSecurityGroupsData = {
68129
68261
  url: '/api/openstack-loadbalancers/{uuid}/set_security_groups/';
68130
68262
  };
68131
68263
  export type OpenstackLoadbalancersSetSecurityGroupsResponses = {
68132
- 202: LoadBalancerAsyncOperationResponse;
68264
+ 202: Status;
68133
68265
  };
68134
68266
  export type OpenstackLoadbalancersSetSecurityGroupsResponse = OpenstackLoadbalancersSetSecurityGroupsResponses[keyof OpenstackLoadbalancersSetSecurityGroupsResponses];
68135
68267
  export type OpenstackLoadbalancersUnlinkData = {
@@ -68909,7 +69041,7 @@ export type OpenstackNetworksCreateSubnetData = {
68909
69041
  url: '/api/openstack-networks/{uuid}/create_subnet/';
68910
69042
  };
68911
69043
  export type OpenstackNetworksCreateSubnetResponses = {
68912
- 200: OpenStackSubNet;
69044
+ 201: OpenStackSubNet;
68913
69045
  };
68914
69046
  export type OpenstackNetworksCreateSubnetResponse = OpenstackNetworksCreateSubnetResponses[keyof OpenstackNetworksCreateSubnetResponses];
68915
69047
  export type OpenstackNetworksPullData = {
@@ -68980,7 +69112,7 @@ export type OpenstackNetworksSetMtuData = {
68980
69112
  url: '/api/openstack-networks/{uuid}/set_mtu/';
68981
69113
  };
68982
69114
  export type OpenstackNetworksSetMtuResponses = {
68983
- 200: SetMtu;
69115
+ 202: SetMtu;
68984
69116
  };
68985
69117
  export type OpenstackNetworksSetMtuResponse = OpenstackNetworksSetMtuResponses[keyof OpenstackNetworksSetMtuResponses];
68986
69118
  export type OpenstackNetworksSetOkData = {
@@ -69891,11 +70023,9 @@ export type OpenstackRoutersRemoveExternalGatewayData = {
69891
70023
  url: '/api/openstack-routers/{uuid}/remove_external_gateway/';
69892
70024
  };
69893
70025
  export type OpenstackRoutersRemoveExternalGatewayResponses = {
69894
- /**
69895
- * No response body
69896
- */
69897
- 202: unknown;
70026
+ 202: Status;
69898
70027
  };
70028
+ export type OpenstackRoutersRemoveExternalGatewayResponse = OpenstackRoutersRemoveExternalGatewayResponses[keyof OpenstackRoutersRemoveExternalGatewayResponses];
69899
70029
  export type OpenstackRoutersRemoveRouterInterfaceData = {
69900
70030
  body?: OpenStackRouterInterfaceRequest;
69901
70031
  path: {
@@ -69917,7 +70047,7 @@ export type OpenstackRoutersSetErredData = {
69917
70047
  url: '/api/openstack-routers/{uuid}/set_erred/';
69918
70048
  };
69919
70049
  export type OpenstackRoutersSetErredResponses = {
69920
- 200: RouterSetErredResponse;
70050
+ 200: Detail;
69921
70051
  };
69922
70052
  export type OpenstackRoutersSetErredResponse = OpenstackRoutersSetErredResponses[keyof OpenstackRoutersSetErredResponses];
69923
70053
  export type OpenstackRoutersSetExternalGatewayData = {
@@ -69929,11 +70059,9 @@ export type OpenstackRoutersSetExternalGatewayData = {
69929
70059
  url: '/api/openstack-routers/{uuid}/set_external_gateway/';
69930
70060
  };
69931
70061
  export type OpenstackRoutersSetExternalGatewayResponses = {
69932
- /**
69933
- * No response body
69934
- */
69935
- 202: unknown;
70062
+ 202: Status;
69936
70063
  };
70064
+ export type OpenstackRoutersSetExternalGatewayResponse = OpenstackRoutersSetExternalGatewayResponses[keyof OpenstackRoutersSetExternalGatewayResponses];
69937
70065
  export type OpenstackRoutersSetOkData = {
69938
70066
  body?: never;
69939
70067
  path: {
@@ -69943,7 +70071,7 @@ export type OpenstackRoutersSetOkData = {
69943
70071
  url: '/api/openstack-routers/{uuid}/set_ok/';
69944
70072
  };
69945
70073
  export type OpenstackRoutersSetOkResponses = {
69946
- 200: RouterSetOkResponse;
70074
+ 200: Detail;
69947
70075
  };
69948
70076
  export type OpenstackRoutersSetOkResponse = OpenstackRoutersSetOkResponses[keyof OpenstackRoutersSetOkResponses];
69949
70077
  export type OpenstackRoutersSetRoutesData = {
@@ -71241,7 +71369,7 @@ export type OpenstackSubnetsConnectData = {
71241
71369
  url: '/api/openstack-subnets/{uuid}/connect/';
71242
71370
  };
71243
71371
  export type OpenstackSubnetsConnectResponses = {
71244
- 200: OpenStackSubNet;
71372
+ 202: Status;
71245
71373
  };
71246
71374
  export type OpenstackSubnetsConnectResponse = OpenstackSubnetsConnectResponses[keyof OpenstackSubnetsConnectResponses];
71247
71375
  export type OpenstackSubnetsDisconnectData = {
@@ -71253,7 +71381,7 @@ export type OpenstackSubnetsDisconnectData = {
71253
71381
  url: '/api/openstack-subnets/{uuid}/disconnect/';
71254
71382
  };
71255
71383
  export type OpenstackSubnetsDisconnectResponses = {
71256
- 200: OpenStackSubNet;
71384
+ 202: Status;
71257
71385
  };
71258
71386
  export type OpenstackSubnetsDisconnectResponse = OpenstackSubnetsDisconnectResponses[keyof OpenstackSubnetsDisconnectResponses];
71259
71387
  export type OpenstackSubnetsPullData = {
@@ -71745,7 +71873,7 @@ export type OpenstackTenantsCreateNetworkData = {
71745
71873
  url: '/api/openstack-tenants/{uuid}/create_network/';
71746
71874
  };
71747
71875
  export type OpenstackTenantsCreateNetworkResponses = {
71748
- 200: OpenStackNetwork;
71876
+ 201: OpenStackNetwork;
71749
71877
  };
71750
71878
  export type OpenstackTenantsCreateNetworkResponse = OpenstackTenantsCreateNetworkResponses[keyof OpenstackTenantsCreateNetworkResponses];
71751
71879
  export type OpenstackTenantsCreateSecurityGroupData = {
@@ -71769,7 +71897,7 @@ export type OpenstackTenantsCreateServerGroupData = {
71769
71897
  url: '/api/openstack-tenants/{uuid}/create_server_group/';
71770
71898
  };
71771
71899
  export type OpenstackTenantsCreateServerGroupResponses = {
71772
- 200: OpenStackServerGroup;
71900
+ 201: OpenStackServerGroup;
71773
71901
  };
71774
71902
  export type OpenstackTenantsCreateServerGroupResponse = OpenstackTenantsCreateServerGroupResponses[keyof OpenstackTenantsCreateServerGroupResponses];
71775
71903
  export type OpenstackTenantsPullData = {
@@ -71823,7 +71951,7 @@ export type OpenstackTenantsPullSecurityGroupsData = {
71823
71951
  url: '/api/openstack-tenants/{uuid}/pull_security_groups/';
71824
71952
  };
71825
71953
  export type OpenstackTenantsPullSecurityGroupsResponses = {
71826
- 200: OpenStackTenant;
71954
+ 202: Status;
71827
71955
  };
71828
71956
  export type OpenstackTenantsPullSecurityGroupsResponse = OpenstackTenantsPullSecurityGroupsResponses[keyof OpenstackTenantsPullSecurityGroupsResponses];
71829
71957
  export type OpenstackTenantsPullServerGroupsData = {
@@ -71835,7 +71963,7 @@ export type OpenstackTenantsPullServerGroupsData = {
71835
71963
  url: '/api/openstack-tenants/{uuid}/pull_server_groups/';
71836
71964
  };
71837
71965
  export type OpenstackTenantsPullServerGroupsResponses = {
71838
- 200: OpenStackTenant;
71966
+ 202: Status;
71839
71967
  };
71840
71968
  export type OpenstackTenantsPullServerGroupsResponse = OpenstackTenantsPullServerGroupsResponses[keyof OpenstackTenantsPullServerGroupsResponses];
71841
71969
  export type OpenstackTenantsPushSecurityGroupsData = {
@@ -71915,7 +72043,7 @@ export type OpenstackTenantsSetQuotasData = {
71915
72043
  url: '/api/openstack-tenants/{uuid}/set_quotas/';
71916
72044
  };
71917
72045
  export type OpenstackTenantsSetQuotasResponses = {
71918
- 200: OpenStackTenantQuota;
72046
+ 202: Status;
71919
72047
  };
71920
72048
  export type OpenstackTenantsSetQuotasResponse = OpenstackTenantsSetQuotasResponses[keyof OpenstackTenantsSetQuotasResponses];
71921
72049
  export type OpenstackTenantsUnlinkData = {
@@ -73065,7 +73193,7 @@ export type PaymentProfilesEnableData = {
73065
73193
  url: '/api/payment-profiles/{uuid}/enable/';
73066
73194
  };
73067
73195
  export type PaymentProfilesEnableResponses = {
73068
- 200: PaymentProfile;
73196
+ 200: Status;
73069
73197
  };
73070
73198
  export type PaymentProfilesEnableResponse = PaymentProfilesEnableResponses[keyof PaymentProfilesEnableResponses];
73071
73199
  export type PaymentsListData = {
@@ -73184,7 +73312,7 @@ export type PaymentsLinkToInvoiceData = {
73184
73312
  url: '/api/payments/{uuid}/link_to_invoice/';
73185
73313
  };
73186
73314
  export type PaymentsLinkToInvoiceResponses = {
73187
- 200: LinkToInvoice;
73315
+ 200: Detail;
73188
73316
  };
73189
73317
  export type PaymentsLinkToInvoiceResponse = PaymentsLinkToInvoiceResponses[keyof PaymentsLinkToInvoiceResponses];
73190
73318
  export type PaymentsUnlinkFromInvoiceData = {
@@ -73196,7 +73324,7 @@ export type PaymentsUnlinkFromInvoiceData = {
73196
73324
  url: '/api/payments/{uuid}/unlink_from_invoice/';
73197
73325
  };
73198
73326
  export type PaymentsUnlinkFromInvoiceResponses = {
73199
- 200: Payment;
73327
+ 200: Detail;
73200
73328
  };
73201
73329
  export type PaymentsUnlinkFromInvoiceResponse = PaymentsUnlinkFromInvoiceResponses[keyof PaymentsUnlinkFromInvoiceResponses];
73202
73330
  export type PersonalAccessTokensListData = {
@@ -75179,10 +75307,7 @@ export type ProposalProposalsResourcesDestroyData = {
75179
75307
  url: '/api/proposal-proposals/{uuid}/resources/{obj_uuid}/';
75180
75308
  };
75181
75309
  export type ProposalProposalsResourcesDestroyResponses = {
75182
- /**
75183
- * No response body
75184
- */
75185
- 204: void;
75310
+ 200: RequestedResource;
75186
75311
  };
75187
75312
  export type ProposalProposalsResourcesDestroyResponse = ProposalProposalsResourcesDestroyResponses[keyof ProposalProposalsResourcesDestroyResponses];
75188
75313
  export type ProposalProposalsResourcesRetrieveData = {
@@ -75911,10 +76036,7 @@ export type ProposalProtectedCallsOfferingsDestroyData = {
75911
76036
  url: '/api/proposal-protected-calls/{uuid}/offerings/{obj_uuid}/';
75912
76037
  };
75913
76038
  export type ProposalProtectedCallsOfferingsDestroyResponses = {
75914
- /**
75915
- * No response body
75916
- */
75917
- 204: void;
76039
+ 200: RequestedOffering;
75918
76040
  };
75919
76041
  export type ProposalProtectedCallsOfferingsDestroyResponse = ProposalProtectedCallsOfferingsDestroyResponses[keyof ProposalProtectedCallsOfferingsDestroyResponses];
75920
76042
  export type ProposalProtectedCallsOfferingsRetrieveData = {
@@ -76081,10 +76203,7 @@ export type ProposalProtectedCallsResourceTemplatesDestroyData = {
76081
76203
  url: '/api/proposal-protected-calls/{uuid}/resource_templates/{obj_uuid}/';
76082
76204
  };
76083
76205
  export type ProposalProtectedCallsResourceTemplatesDestroyResponses = {
76084
- /**
76085
- * No response body
76086
- */
76087
- 204: void;
76206
+ 200: CallResourceTemplate;
76088
76207
  };
76089
76208
  export type ProposalProtectedCallsResourceTemplatesDestroyResponse = ProposalProtectedCallsResourceTemplatesDestroyResponses[keyof ProposalProtectedCallsResourceTemplatesDestroyResponses];
76090
76209
  export type ProposalProtectedCallsResourceTemplatesRetrieveData = {
@@ -76282,10 +76401,7 @@ export type ProposalProtectedCallsRoundsDestroyData = {
76282
76401
  url: '/api/proposal-protected-calls/{uuid}/rounds/{obj_uuid}/';
76283
76402
  };
76284
76403
  export type ProposalProtectedCallsRoundsDestroyResponses = {
76285
- /**
76286
- * No response body
76287
- */
76288
- 204: void;
76404
+ 200: ProtectedRound;
76289
76405
  };
76290
76406
  export type ProposalProtectedCallsRoundsDestroyResponse = ProposalProtectedCallsRoundsDestroyResponses[keyof ProposalProtectedCallsRoundsDestroyResponses];
76291
76407
  export type ProposalProtectedCallsRoundsRetrieveData = {
@@ -76337,7 +76453,7 @@ export type ProposalProtectedCallsRoundsCloseData = {
76337
76453
  url: '/api/proposal-protected-calls/{uuid}/rounds/{obj_uuid}/close/';
76338
76454
  };
76339
76455
  export type ProposalProtectedCallsRoundsCloseResponses = {
76340
- 200: ProtectedCall;
76456
+ 200: string;
76341
76457
  };
76342
76458
  export type ProposalProtectedCallsRoundsCloseResponse = ProposalProtectedCallsRoundsCloseResponses[keyof ProposalProtectedCallsRoundsCloseResponses];
76343
76459
  export type ProposalProtectedCallsSendAllAssignmentsData = {
@@ -76458,10 +76574,7 @@ export type ProposalProtectedCallsWorkflowStepsDestroyData = {
76458
76574
  url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
76459
76575
  };
76460
76576
  export type ProposalProtectedCallsWorkflowStepsDestroyResponses = {
76461
- /**
76462
- * No response body
76463
- */
76464
- 204: void;
76577
+ 200: CallWorkflowStep;
76465
76578
  };
76466
76579
  export type ProposalProtectedCallsWorkflowStepsDestroyResponse = ProposalProtectedCallsWorkflowStepsDestroyResponses[keyof ProposalProtectedCallsWorkflowStepsDestroyResponses];
76467
76580
  export type ProposalProtectedCallsWorkflowStepsRetrieveData = {
@@ -77802,9 +77915,11 @@ export type RancherCatalogsRefreshData = {
77802
77915
  url: '/api/rancher-catalogs/{uuid}/refresh/';
77803
77916
  };
77804
77917
  export type RancherCatalogsRefreshResponses = {
77805
- 200: RancherCatalog;
77918
+ /**
77919
+ * No response body
77920
+ */
77921
+ 200: unknown;
77806
77922
  };
77807
- export type RancherCatalogsRefreshResponse = RancherCatalogsRefreshResponses[keyof RancherCatalogsRefreshResponses];
77808
77923
  export type RancherClusterSecurityGroupsListData = {
77809
77924
  body?: never;
77810
77925
  path?: never;
@@ -78179,7 +78294,7 @@ export type RancherClustersCreateManagementSecurityGroupData = {
78179
78294
  url: '/api/rancher-clusters/{uuid}/create_management_security_group/';
78180
78295
  };
78181
78296
  export type RancherClustersCreateManagementSecurityGroupResponses = {
78182
- 200: RancherCluster;
78297
+ 201: RancherCreateManagementSecurityGroupResponse;
78183
78298
  };
78184
78299
  export type RancherClustersCreateManagementSecurityGroupResponse = RancherClustersCreateManagementSecurityGroupResponses[keyof RancherClustersCreateManagementSecurityGroupResponses];
78185
78300
  export type RancherClustersImportYamlData = {
@@ -78191,9 +78306,11 @@ export type RancherClustersImportYamlData = {
78191
78306
  url: '/api/rancher-clusters/{uuid}/import_yaml/';
78192
78307
  };
78193
78308
  export type RancherClustersImportYamlResponses = {
78194
- 200: RancherImportYaml;
78309
+ /**
78310
+ * No response body
78311
+ */
78312
+ 200: unknown;
78195
78313
  };
78196
- export type RancherClustersImportYamlResponse = RancherClustersImportYamlResponses[keyof RancherClustersImportYamlResponses];
78197
78314
  export type RancherClustersPullData = {
78198
78315
  body?: never;
78199
78316
  path: {
@@ -78454,7 +78571,7 @@ export type RancherHpasYamlRetrieveData = {
78454
78571
  url: '/api/rancher-hpas/{uuid}/yaml/';
78455
78572
  };
78456
78573
  export type RancherHpasYamlRetrieveResponses = {
78457
- 200: RancherHpa;
78574
+ 200: Detail;
78458
78575
  };
78459
78576
  export type RancherHpasYamlRetrieveResponse = RancherHpasYamlRetrieveResponses[keyof RancherHpasYamlRetrieveResponses];
78460
78577
  export type RancherHpasYamlUpdateData = {
@@ -78466,7 +78583,7 @@ export type RancherHpasYamlUpdateData = {
78466
78583
  url: '/api/rancher-hpas/{uuid}/yaml/';
78467
78584
  };
78468
78585
  export type RancherHpasYamlUpdateResponses = {
78469
- 200: RancherHpa;
78586
+ 200: Detail;
78470
78587
  };
78471
78588
  export type RancherHpasYamlUpdateResponse = RancherHpasYamlUpdateResponses[keyof RancherHpasYamlUpdateResponses];
78472
78589
  export type RancherIngressesListData = {
@@ -78779,13 +78896,11 @@ export type RancherIngressesYamlRetrieveData = {
78779
78896
  path: {
78780
78897
  uuid: string;
78781
78898
  };
78782
- query?: {
78783
- field?: Array<RancherIngressFieldEnum>;
78784
- };
78899
+ query?: never;
78785
78900
  url: '/api/rancher-ingresses/{uuid}/yaml/';
78786
78901
  };
78787
78902
  export type RancherIngressesYamlRetrieveResponses = {
78788
- 200: RancherIngress;
78903
+ 200: Detail;
78789
78904
  };
78790
78905
  export type RancherIngressesYamlRetrieveResponse = RancherIngressesYamlRetrieveResponses[keyof RancherIngressesYamlRetrieveResponses];
78791
78906
  export type RancherIngressesYamlUpdateData = {
@@ -78797,7 +78912,7 @@ export type RancherIngressesYamlUpdateData = {
78797
78912
  url: '/api/rancher-ingresses/{uuid}/yaml/';
78798
78913
  };
78799
78914
  export type RancherIngressesYamlUpdateResponses = {
78800
- 200: RancherIngress;
78915
+ 200: Detail;
78801
78916
  };
78802
78917
  export type RancherIngressesYamlUpdateResponse = RancherIngressesYamlUpdateResponses[keyof RancherIngressesYamlUpdateResponses];
78803
78918
  export type RancherNamespacesListData = {
@@ -79581,13 +79696,11 @@ export type RancherServicesYamlRetrieveData = {
79581
79696
  path: {
79582
79697
  uuid: string;
79583
79698
  };
79584
- query?: {
79585
- field?: Array<RancherServiceFieldEnum>;
79586
- };
79699
+ query?: never;
79587
79700
  url: '/api/rancher-services/{uuid}/yaml/';
79588
79701
  };
79589
79702
  export type RancherServicesYamlRetrieveResponses = {
79590
- 200: RancherService;
79703
+ 200: Detail;
79591
79704
  };
79592
79705
  export type RancherServicesYamlRetrieveResponse = RancherServicesYamlRetrieveResponses[keyof RancherServicesYamlRetrieveResponses];
79593
79706
  export type RancherServicesYamlUpdateData = {
@@ -79599,7 +79712,7 @@ export type RancherServicesYamlUpdateData = {
79599
79712
  url: '/api/rancher-services/{uuid}/yaml/';
79600
79713
  };
79601
79714
  export type RancherServicesYamlUpdateResponses = {
79602
- 200: RancherService;
79715
+ 200: Detail;
79603
79716
  };
79604
79717
  export type RancherServicesYamlUpdateResponse = RancherServicesYamlUpdateResponses[keyof RancherServicesYamlUpdateResponses];
79605
79718
  export type RancherTemplateVersionsRetrieveData = {
@@ -79967,7 +80080,7 @@ export type RancherWorkloadsYamlRetrieveData = {
79967
80080
  url: '/api/rancher-workloads/{uuid}/yaml/';
79968
80081
  };
79969
80082
  export type RancherWorkloadsYamlRetrieveResponses = {
79970
- 200: RancherWorkload;
80083
+ 200: Detail;
79971
80084
  };
79972
80085
  export type RancherWorkloadsYamlRetrieveResponse = RancherWorkloadsYamlRetrieveResponses[keyof RancherWorkloadsYamlRetrieveResponses];
79973
80086
  export type RancherWorkloadsYamlUpdateData = {
@@ -79979,7 +80092,7 @@ export type RancherWorkloadsYamlUpdateData = {
79979
80092
  url: '/api/rancher-workloads/{uuid}/yaml/';
79980
80093
  };
79981
80094
  export type RancherWorkloadsYamlUpdateResponses = {
79982
- 200: RancherWorkload;
80095
+ 200: Detail;
79983
80096
  };
79984
80097
  export type RancherWorkloadsYamlUpdateResponse = RancherWorkloadsYamlUpdateResponses[keyof RancherWorkloadsYamlUpdateResponses];
79985
80098
  export type RemoteEduteamsData = {
@@ -83237,7 +83350,7 @@ export type SupportIssuesCommentData = {
83237
83350
  url: '/api/support-issues/{uuid}/comment/';
83238
83351
  };
83239
83352
  export type SupportIssuesCommentResponses = {
83240
- 200: Comment;
83353
+ 201: Comment;
83241
83354
  };
83242
83355
  export type SupportIssuesCommentResponse = SupportIssuesCommentResponses[keyof SupportIssuesCommentResponses];
83243
83356
  export type SupportIssuesSyncData = {
@@ -83249,9 +83362,11 @@ export type SupportIssuesSyncData = {
83249
83362
  url: '/api/support-issues/{uuid}/sync/';
83250
83363
  };
83251
83364
  export type SupportIssuesSyncResponses = {
83252
- 200: Issue;
83365
+ /**
83366
+ * No response body
83367
+ */
83368
+ 200: unknown;
83253
83369
  };
83254
- export type SupportIssuesSyncResponse = SupportIssuesSyncResponses[keyof SupportIssuesSyncResponses];
83255
83370
  export type SupportJiraWebhookData = {
83256
83371
  body: WebHookReceiverRequest;
83257
83372
  path?: never;
@@ -83484,7 +83599,7 @@ export type SupportRequestTypesAdminActivateData = {
83484
83599
  url: '/api/support-request-types-admin/{uuid}/activate/';
83485
83600
  };
83486
83601
  export type SupportRequestTypesAdminActivateResponses = {
83487
- 200: RequestTypeAdmin;
83602
+ 200: Status;
83488
83603
  };
83489
83604
  export type SupportRequestTypesAdminActivateResponse = SupportRequestTypesAdminActivateResponses[keyof SupportRequestTypesAdminActivateResponses];
83490
83605
  export type SupportRequestTypesAdminDeactivateData = {
@@ -83496,7 +83611,7 @@ export type SupportRequestTypesAdminDeactivateData = {
83496
83611
  url: '/api/support-request-types-admin/{uuid}/deactivate/';
83497
83612
  };
83498
83613
  export type SupportRequestTypesAdminDeactivateResponses = {
83499
- 200: RequestTypeAdmin;
83614
+ 200: Status;
83500
83615
  };
83501
83616
  export type SupportRequestTypesAdminDeactivateResponse = SupportRequestTypesAdminDeactivateResponses[keyof SupportRequestTypesAdminDeactivateResponses];
83502
83617
  export type SupportRequestTypesAdminReorderData = {
@@ -83506,7 +83621,7 @@ export type SupportRequestTypesAdminReorderData = {
83506
83621
  url: '/api/support-request-types-admin/reorder/';
83507
83622
  };
83508
83623
  export type SupportRequestTypesAdminReorderResponses = {
83509
- 200: RequestTypeAdmin;
83624
+ 200: Status;
83510
83625
  };
83511
83626
  export type SupportRequestTypesAdminReorderResponse = SupportRequestTypesAdminReorderResponses[keyof SupportRequestTypesAdminReorderResponses];
83512
83627
  export type SupportRequestTypesRetrieveData = {
@@ -84433,7 +84548,7 @@ export type UserActionsUnsilenceData = {
84433
84548
  url: '/api/user-actions/{uuid}/unsilence/';
84434
84549
  };
84435
84550
  export type UserActionsUnsilenceResponses = {
84436
- 200: UnsilenceActionResponse;
84551
+ 200: Status;
84437
84552
  };
84438
84553
  export type UserActionsUnsilenceResponse = UserActionsUnsilenceResponses[keyof UserActionsUnsilenceResponses];
84439
84554
  export type UserActionsBulkSilenceData = {
@@ -86026,13 +86141,11 @@ export type UsersConfirmEmailResponses = {
86026
86141
  export type UsersMeRetrieveData = {
86027
86142
  body?: never;
86028
86143
  path?: never;
86029
- query?: {
86030
- field?: Array<UserFieldEnum>;
86031
- };
86144
+ query?: never;
86032
86145
  url: '/api/users/me/';
86033
86146
  };
86034
86147
  export type UsersMeRetrieveResponses = {
86035
- 200: User;
86148
+ 200: UserMe;
86036
86149
  };
86037
86150
  export type UsersMeRetrieveResponse = UsersMeRetrieveResponses[keyof UsersMeRetrieveResponses];
86038
86151
  export type UsersMeCountData = {
@@ -87132,7 +87245,7 @@ export type VmwareDisksExtendData = {
87132
87245
  url: '/api/vmware-disks/{uuid}/extend/';
87133
87246
  };
87134
87247
  export type VmwareDisksExtendResponses = {
87135
- 200: VmwareDiskExtend;
87248
+ 202: Status;
87136
87249
  };
87137
87250
  export type VmwareDisksExtendResponse = VmwareDisksExtendResponses[keyof VmwareDisksExtendResponses];
87138
87251
  export type VmwareDisksPullData = {
@@ -88018,7 +88131,7 @@ export type VmwareVirtualMachineCreateDiskData = {
88018
88131
  url: '/api/vmware-virtual-machine/{uuid}/create_disk/';
88019
88132
  };
88020
88133
  export type VmwareVirtualMachineCreateDiskResponses = {
88021
- 200: VmwareDisk;
88134
+ 201: VmwareDisk;
88022
88135
  };
88023
88136
  export type VmwareVirtualMachineCreateDiskResponse = VmwareVirtualMachineCreateDiskResponses[keyof VmwareVirtualMachineCreateDiskResponses];
88024
88137
  export type VmwareVirtualMachineCreatePortData = {
@@ -88030,7 +88143,7 @@ export type VmwareVirtualMachineCreatePortData = {
88030
88143
  url: '/api/vmware-virtual-machine/{uuid}/create_port/';
88031
88144
  };
88032
88145
  export type VmwareVirtualMachineCreatePortResponses = {
88033
- 200: VmwarePort;
88146
+ 201: VmwarePort;
88034
88147
  };
88035
88148
  export type VmwareVirtualMachineCreatePortResponse = VmwareVirtualMachineCreatePortResponses[keyof VmwareVirtualMachineCreatePortResponses];
88036
88149
  export type VmwareVirtualMachinePullData = {
@@ -88058,7 +88171,7 @@ export type VmwareVirtualMachineRebootGuestData = {
88058
88171
  url: '/api/vmware-virtual-machine/{uuid}/reboot_guest/';
88059
88172
  };
88060
88173
  export type VmwareVirtualMachineRebootGuestResponses = {
88061
- 200: VmwareVirtualMachine;
88174
+ 202: Status;
88062
88175
  };
88063
88176
  export type VmwareVirtualMachineRebootGuestResponse = VmwareVirtualMachineRebootGuestResponses[keyof VmwareVirtualMachineRebootGuestResponses];
88064
88177
  export type VmwareVirtualMachineResetData = {
@@ -88070,7 +88183,7 @@ export type VmwareVirtualMachineResetData = {
88070
88183
  url: '/api/vmware-virtual-machine/{uuid}/reset/';
88071
88184
  };
88072
88185
  export type VmwareVirtualMachineResetResponses = {
88073
- 200: VmwareVirtualMachine;
88186
+ 202: Status;
88074
88187
  };
88075
88188
  export type VmwareVirtualMachineResetResponse = VmwareVirtualMachineResetResponses[keyof VmwareVirtualMachineResetResponses];
88076
88189
  export type VmwareVirtualMachineSetErredData = {
@@ -88106,7 +88219,7 @@ export type VmwareVirtualMachineShutdownGuestData = {
88106
88219
  url: '/api/vmware-virtual-machine/{uuid}/shutdown_guest/';
88107
88220
  };
88108
88221
  export type VmwareVirtualMachineShutdownGuestResponses = {
88109
- 200: VmwareVirtualMachine;
88222
+ 202: Status;
88110
88223
  };
88111
88224
  export type VmwareVirtualMachineShutdownGuestResponse = VmwareVirtualMachineShutdownGuestResponses[keyof VmwareVirtualMachineShutdownGuestResponses];
88112
88225
  export type VmwareVirtualMachineStartData = {
@@ -88118,7 +88231,7 @@ export type VmwareVirtualMachineStartData = {
88118
88231
  url: '/api/vmware-virtual-machine/{uuid}/start/';
88119
88232
  };
88120
88233
  export type VmwareVirtualMachineStartResponses = {
88121
- 200: VmwareVirtualMachine;
88234
+ 202: Status;
88122
88235
  };
88123
88236
  export type VmwareVirtualMachineStartResponse = VmwareVirtualMachineStartResponses[keyof VmwareVirtualMachineStartResponses];
88124
88237
  export type VmwareVirtualMachineStopData = {
@@ -88130,7 +88243,7 @@ export type VmwareVirtualMachineStopData = {
88130
88243
  url: '/api/vmware-virtual-machine/{uuid}/stop/';
88131
88244
  };
88132
88245
  export type VmwareVirtualMachineStopResponses = {
88133
- 200: VmwareVirtualMachine;
88246
+ 202: Status;
88134
88247
  };
88135
88248
  export type VmwareVirtualMachineStopResponse = VmwareVirtualMachineStopResponses[keyof VmwareVirtualMachineStopResponses];
88136
88249
  export type VmwareVirtualMachineSuspendData = {
@@ -88142,7 +88255,7 @@ export type VmwareVirtualMachineSuspendData = {
88142
88255
  url: '/api/vmware-virtual-machine/{uuid}/suspend/';
88143
88256
  };
88144
88257
  export type VmwareVirtualMachineSuspendResponses = {
88145
- 200: VmwareVirtualMachine;
88258
+ 202: Status;
88146
88259
  };
88147
88260
  export type VmwareVirtualMachineSuspendResponse = VmwareVirtualMachineSuspendResponses[keyof VmwareVirtualMachineSuspendResponses];
88148
88261
  export type VmwareVirtualMachineUnlinkData = {