waldur-js-client 7.8.2-dev.7 → 7.8.3-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/sdk.gen.js CHANGED
@@ -13223,7 +13223,11 @@ export const marketplaceProviderResourcesMoveResource = (options) => {
13223
13223
  }
13224
13224
  ],
13225
13225
  url: '/api/marketplace-provider-resources/{uuid}/move_resource/',
13226
- ...options
13226
+ ...options,
13227
+ headers: {
13228
+ 'Content-Type': 'application/json',
13229
+ ...options.headers
13230
+ }
13227
13231
  });
13228
13232
  };
13229
13233
  export const marketplaceProviderResourcesOfferingRetrieve = (options) => {
@@ -14113,7 +14117,11 @@ export const marketplaceResourcesMoveResource = (options) => {
14113
14117
  }
14114
14118
  ],
14115
14119
  url: '/api/marketplace-resources/{uuid}/move_resource/',
14116
- ...options
14120
+ ...options,
14121
+ headers: {
14122
+ 'Content-Type': 'application/json',
14123
+ ...options.headers
14124
+ }
14117
14125
  });
14118
14126
  };
14119
14127
  export const marketplaceResourcesOfferingRetrieve = (options) => {
@@ -879,6 +879,7 @@ export type BookingResource = {
879
879
  readonly offering_plugin_options?: unknown;
880
880
  readonly provider_name?: string;
881
881
  readonly provider_uuid?: string;
882
+ readonly provider_slug?: string;
882
883
  readonly category_title?: string;
883
884
  readonly category_uuid?: string;
884
885
  readonly category_icon?: string;
@@ -946,9 +947,6 @@ export type BookingResource = {
946
947
  readonly endpoints?: Array<NestedEndpoint>;
947
948
  readonly error_message?: string;
948
949
  readonly error_traceback?: string;
949
- readonly offering_customer_uuid?: string;
950
- readonly offering_customer_name?: string;
951
- readonly offering_customer_slug?: string;
952
950
  readonly options?: unknown;
953
951
  readonly available_actions?: Array<string>;
954
952
  readonly last_sync?: string;
@@ -3802,6 +3800,10 @@ export type MergedPluginOptions = {
3802
3800
  * If set to True, orders will support comments and metadata
3803
3801
  */
3804
3802
  order_supports_comments_and_metadata?: boolean;
3803
+ /**
3804
+ * If set to True, pricing and components tab would be concealed.
3805
+ */
3806
+ conceal_billing_data?: boolean;
3805
3807
  /**
3806
3808
  * If set, it will be used as a default MTU for the first network in a tenant
3807
3809
  */
@@ -3960,6 +3962,10 @@ export type MergedPluginOptionsRequest = {
3960
3962
  * If set to True, orders will support comments and metadata
3961
3963
  */
3962
3964
  order_supports_comments_and_metadata?: boolean;
3965
+ /**
3966
+ * If set to True, pricing and components tab would be concealed.
3967
+ */
3968
+ conceal_billing_data?: boolean;
3963
3969
  /**
3964
3970
  * If set, it will be used as a default MTU for the first network in a tenant
3965
3971
  */
@@ -4429,6 +4435,9 @@ export type MoveProjectRequest = {
4429
4435
  customer: string;
4430
4436
  preserve_permissions: boolean;
4431
4437
  };
4438
+ export type MoveResourceRequest = {
4439
+ project: ProjectHyperlinkRequest;
4440
+ };
4432
4441
  export type NameUuid = {
4433
4442
  readonly name: string;
4434
4443
  readonly uuid: string;
@@ -5562,18 +5571,31 @@ export type OpenStackBackupRestoration = {
5562
5571
  * New instance name. Leave blank to use source instance name.
5563
5572
  */
5564
5573
  name?: string;
5574
+ floating_ips?: Array<OpenStackNestedFloatingIp>;
5575
+ security_groups?: Array<OpenStackNestedSecurityGroup>;
5576
+ ports?: Array<OpenStackNestedPort>;
5577
+ };
5578
+ export type OpenStackBackupRestorationCreateRequest = {
5579
+ /**
5580
+ * Flavor to be used for the restored instance. If not specified, original instance flavor will be used
5581
+ */
5582
+ flavor: string;
5583
+ /**
5584
+ * New instance name. Leave blank to use source instance name.
5585
+ */
5586
+ name?: string;
5565
5587
  /**
5566
5588
  * Floating IPs that will be assigned to the restored instance
5567
5589
  */
5568
- floating_ips?: Array<OpenStackNestedFloatingIp>;
5590
+ floating_ips?: Array<OpenStackCreateFloatingIpRequest>;
5569
5591
  /**
5570
5592
  * Security groups that will be assigned to the restored instance
5571
5593
  */
5572
- security_groups?: Array<OpenStackNestedSecurityGroup>;
5594
+ security_groups?: Array<OpenStackSecurityGroupHyperlinkRequest>;
5573
5595
  /**
5574
5596
  * Network ports that will be attached to the restored instance
5575
5597
  */
5576
- ports?: Array<OpenStackNestedPort>;
5598
+ ports?: Array<OpenStackCreatePortRequest>;
5577
5599
  };
5578
5600
  export type OpenStackBackupRestorationRequest = {
5579
5601
  /**
@@ -5584,22 +5606,20 @@ export type OpenStackBackupRestorationRequest = {
5584
5606
  * New instance name. Leave blank to use source instance name.
5585
5607
  */
5586
5608
  name?: string;
5587
- /**
5588
- * Floating IPs that will be assigned to the restored instance
5589
- */
5590
- floating_ips?: Array<OpenStackNestedFloatingIpRequest>;
5591
- /**
5592
- * Network ports that will be attached to the restored instance
5593
- */
5594
- ports?: Array<OpenStackNestedPortRequest>;
5609
+ floating_ips: Array<OpenStackNestedFloatingIpRequest>;
5610
+ ports: Array<OpenStackNestedPortRequest>;
5595
5611
  };
5596
- export type OpenStackDataVolume = {
5597
- size: number;
5598
- volume_type?: string | null;
5612
+ export type OpenStackCreateFloatingIpRequest = {
5613
+ url?: string;
5614
+ subnet: string;
5599
5615
  };
5600
- export type OpenStackDataVolumeRequest = {
5601
- size: number;
5602
- volume_type?: string | null;
5616
+ export type OpenStackCreatePortRequest = {
5617
+ fixed_ips?: Array<OpenStackFixedIpRequest>;
5618
+ /**
5619
+ * Subnet to which this port belongs
5620
+ */
5621
+ subnet?: string | null;
5622
+ port?: string;
5603
5623
  };
5604
5624
  export type OpenStackFixedIp = {
5605
5625
  /**
@@ -5802,21 +5822,9 @@ export type OpenStackInstance = {
5802
5822
  * List of volumes attached to the instance
5803
5823
  */
5804
5824
  readonly volumes?: Array<OpenStackNestedVolume>;
5805
- /**
5806
- * List of security groups to apply to the instance
5807
- */
5808
5825
  security_groups?: Array<OpenStackNestedSecurityGroup>;
5809
- /**
5810
- * Server group for instance scheduling policy
5811
- */
5812
- server_group?: OpenStackNestedServerGroup | null;
5813
- /**
5814
- * Floating IPs to assign to the instance
5815
- */
5826
+ server_group?: OpenStackNestedServerGroup;
5816
5827
  floating_ips?: Array<OpenStackNestedFloatingIp>;
5817
- /**
5818
- * Network ports to attach to the instance
5819
- */
5820
5828
  ports?: Array<OpenStackNestedPort>;
5821
5829
  /**
5822
5830
  * Availability zone where this instance is located
@@ -5884,26 +5892,14 @@ export type OpenStackInstanceAvailabilityZone = {
5884
5892
  available?: boolean;
5885
5893
  };
5886
5894
  export type OpenStackInstanceFloatingIpsUpdateRequest = {
5887
- floating_ips?: Array<OpenStackNestedFloatingIpRequest>;
5895
+ floating_ips?: Array<OpenStackCreateFloatingIpRequest>;
5888
5896
  };
5889
5897
  export type OpenStackInstancePortsUpdateRequest = {
5890
- ports: Array<OpenStackNestedPortRequest>;
5898
+ ports: Array<OpenStackCreatePortRequest>;
5891
5899
  };
5892
5900
  export type OpenStackInstanceRequest = {
5893
5901
  name: string;
5894
5902
  description?: string;
5895
- /**
5896
- * Volume type for the system volume
5897
- */
5898
- system_volume_type?: string | null;
5899
- /**
5900
- * Volume type for the data volume
5901
- */
5902
- data_volume_type?: string | null;
5903
- /**
5904
- * Additional data volumes to attach to the instance
5905
- */
5906
- data_volumes?: Array<OpenStackDataVolumeRequest>;
5907
5903
  };
5908
5904
  export type OpenStackInstanceSecurityGroupsUpdateRequest = {
5909
5905
  /**
@@ -5978,7 +5974,6 @@ export type OpenStackNestedPortRequest = {
5978
5974
  * Subnet to which this port belongs
5979
5975
  */
5980
5976
  subnet?: string | null;
5981
- port?: string;
5982
5977
  };
5983
5978
  export type OpenStackNestedSecurityGroup = {
5984
5979
  readonly url?: string;
@@ -6382,6 +6377,9 @@ export type OpenStackSecurityGroup = {
6382
6377
  readonly is_usage_based?: boolean | null;
6383
6378
  readonly is_limit_based?: boolean | null;
6384
6379
  };
6380
+ export type OpenStackSecurityGroupHyperlinkRequest = {
6381
+ url: string;
6382
+ };
6385
6383
  export type OpenStackSecurityGroupRequest = {
6386
6384
  name: string;
6387
6385
  description?: string;
@@ -7057,6 +7055,7 @@ export type OrderCreate = {
7057
7055
  readonly offering_plugin_options: unknown;
7058
7056
  readonly provider_name: string;
7059
7057
  readonly provider_uuid: string;
7058
+ readonly provider_slug: string;
7060
7059
  readonly category_title: string;
7061
7060
  readonly category_uuid: string;
7062
7061
  readonly category_icon: string;
@@ -7148,6 +7147,7 @@ export type OrderDetails = {
7148
7147
  readonly offering_plugin_options?: unknown;
7149
7148
  readonly provider_name?: string;
7150
7149
  readonly provider_uuid?: string;
7150
+ readonly provider_slug?: string;
7151
7151
  readonly category_title?: string;
7152
7152
  readonly category_uuid?: string;
7153
7153
  readonly category_icon?: string;
@@ -7224,9 +7224,6 @@ export type OrderDetails = {
7224
7224
  readonly activation_price?: number;
7225
7225
  readonly termination_comment?: string | null;
7226
7226
  backend_id?: string;
7227
- readonly offering_customer_uuid?: string;
7228
- readonly offering_customer_name?: string;
7229
- readonly offering_customer_slug?: string;
7230
7227
  issue?: IssueReference | null;
7231
7228
  };
7232
7229
  export type OrderSetStateErredRequest = {
@@ -7729,18 +7726,6 @@ export type PatchedOpenStackBackupRequest = {
7729
7726
  export type PatchedOpenStackInstanceRequest = {
7730
7727
  name?: string;
7731
7728
  description?: string;
7732
- /**
7733
- * Volume type for the system volume
7734
- */
7735
- system_volume_type?: string | null;
7736
- /**
7737
- * Volume type for the data volume
7738
- */
7739
- data_volume_type?: string | null;
7740
- /**
7741
- * Additional data volumes to attach to the instance
7742
- */
7743
- data_volumes?: Array<OpenStackDataVolumeRequest>;
7744
7729
  };
7745
7730
  export type PatchedOpenStackNetworkRequest = {
7746
7731
  name?: string;
@@ -8634,6 +8619,9 @@ export type ProjectEstimatedCostPolicyRequest = {
8634
8619
  limit_cost: number;
8635
8620
  period?: PeriodEnum;
8636
8621
  };
8622
+ export type ProjectHyperlinkRequest = {
8623
+ url: string;
8624
+ };
8637
8625
  export type ProjectPermissionLog = {
8638
8626
  readonly created?: string;
8639
8627
  expiration_time?: string | null;
@@ -10157,9 +10145,6 @@ export type RancherNestedPublicIp = {
10157
10145
  */
10158
10146
  external_ip_address?: string;
10159
10147
  };
10160
- export type RancherNestedSecurityGroup = {
10161
- readonly url: string;
10162
- };
10163
10148
  export type RancherNestedWorkload = {
10164
10149
  readonly uuid?: string;
10165
10150
  readonly url?: string;
@@ -10265,6 +10250,70 @@ export type RancherService = {
10265
10250
  readonly is_usage_based?: boolean | null;
10266
10251
  readonly is_limit_based?: boolean | null;
10267
10252
  };
10253
+ export type RancherServiceCreate = {
10254
+ readonly url: string;
10255
+ readonly uuid: string;
10256
+ name: string;
10257
+ description?: string;
10258
+ readonly service_name: string;
10259
+ service_settings: string;
10260
+ readonly service_settings_uuid: string;
10261
+ readonly service_settings_state: string;
10262
+ readonly service_settings_error_message: string;
10263
+ project: string;
10264
+ readonly project_name: string;
10265
+ readonly project_uuid: string;
10266
+ readonly customer: string;
10267
+ readonly customer_name: string;
10268
+ readonly customer_native_name: string;
10269
+ readonly customer_abbreviation: string;
10270
+ error_message?: string;
10271
+ error_traceback?: string;
10272
+ readonly resource_type: string;
10273
+ state: CoreStates;
10274
+ readonly created: string;
10275
+ readonly modified: string;
10276
+ backend_id?: string;
10277
+ readonly access_url: string | null;
10278
+ runtime_state?: string;
10279
+ namespace?: string;
10280
+ readonly namespace_name: string;
10281
+ /**
10282
+ * An IPv4 or IPv6 address.
10283
+ */
10284
+ cluster_ip?: string | null;
10285
+ selector?: unknown;
10286
+ target_workloads?: Array<RancherWorkloadCreate>;
10287
+ readonly marketplace_offering_uuid: string | null;
10288
+ readonly marketplace_offering_name: string | null;
10289
+ readonly marketplace_offering_plugin_options: {
10290
+ [key: string]: unknown;
10291
+ } | null;
10292
+ readonly marketplace_category_uuid: string | null;
10293
+ readonly marketplace_category_name: string | null;
10294
+ readonly marketplace_resource_uuid: string | null;
10295
+ readonly marketplace_plan_uuid: string | null;
10296
+ readonly marketplace_resource_state: string | null;
10297
+ readonly is_usage_based: boolean | null;
10298
+ readonly is_limit_based: boolean | null;
10299
+ };
10300
+ export type RancherServiceCreateRequest = {
10301
+ name: string;
10302
+ description?: string;
10303
+ service_settings: string;
10304
+ project: string;
10305
+ error_message?: string;
10306
+ error_traceback?: string;
10307
+ backend_id?: string;
10308
+ runtime_state?: string;
10309
+ namespace?: string;
10310
+ /**
10311
+ * An IPv4 or IPv6 address.
10312
+ */
10313
+ cluster_ip?: string | null;
10314
+ selector?: unknown;
10315
+ target_workloads?: Array<RancherWorkloadCreateRequest>;
10316
+ };
10268
10317
  export type RancherServiceRequest = {
10269
10318
  name: string;
10270
10319
  description?: string;
@@ -10280,7 +10329,7 @@ export type RancherServiceRequest = {
10280
10329
  */
10281
10330
  cluster_ip?: string | null;
10282
10331
  selector?: unknown;
10283
- target_workloads?: Array<RancherNestedWorkloadRequest>;
10332
+ target_workloads: Array<RancherNestedWorkloadRequest>;
10284
10333
  };
10285
10334
  export type RancherTemplate = {
10286
10335
  readonly url: string;
@@ -10374,6 +10423,12 @@ export type RancherWorkload = {
10374
10423
  readonly namespace_name: string;
10375
10424
  scale: number;
10376
10425
  };
10426
+ export type RancherWorkloadCreate = {
10427
+ url: string;
10428
+ };
10429
+ export type RancherWorkloadCreateRequest = {
10430
+ url: string;
10431
+ };
10377
10432
  export type RancherWorkloadRequest = {
10378
10433
  name: string;
10379
10434
  runtime_state?: string;
@@ -10623,6 +10678,7 @@ export type Resource = {
10623
10678
  readonly offering_plugin_options?: unknown;
10624
10679
  readonly provider_name?: string;
10625
10680
  readonly provider_uuid?: string;
10681
+ readonly provider_slug?: string;
10626
10682
  readonly category_title?: string;
10627
10683
  readonly category_uuid?: string;
10628
10684
  readonly category_icon?: string;
@@ -10690,9 +10746,6 @@ export type Resource = {
10690
10746
  readonly endpoints?: Array<NestedEndpoint>;
10691
10747
  readonly error_message?: string;
10692
10748
  readonly error_traceback?: string;
10693
- readonly offering_customer_uuid?: string;
10694
- readonly offering_customer_name?: string;
10695
- readonly offering_customer_slug?: string;
10696
10749
  readonly options?: unknown;
10697
10750
  readonly available_actions?: Array<string>;
10698
10751
  readonly last_sync?: string;
@@ -10917,7 +10970,8 @@ export type RobotAccountDetails = {
10917
10970
  readonly project_uuid?: string;
10918
10971
  readonly customer_uuid?: string;
10919
10972
  readonly customer_name?: string;
10920
- readonly offering_customer_uuid?: string;
10973
+ readonly provider_uuid?: string;
10974
+ readonly provider_name?: string;
10921
10975
  offering_plugin_options?: MergedPluginOptions;
10922
10976
  };
10923
10977
  export type RobotAccountErrorRequest = {
@@ -12066,14 +12120,10 @@ export type VmwareNestedDiskRequest = {
12066
12120
  size: number;
12067
12121
  };
12068
12122
  export type VmwareNestedNetwork = {
12069
- readonly uuid: string;
12070
- readonly url: string;
12071
- name: string;
12072
- type: string;
12123
+ url: string;
12073
12124
  };
12074
12125
  export type VmwareNestedNetworkRequest = {
12075
- name: string;
12076
- type: string;
12126
+ url: string;
12077
12127
  };
12078
12128
  export type VmwareNestedPort = {
12079
12129
  readonly url?: string;
@@ -12320,6 +12370,144 @@ export type WebHookRequest = {
12320
12370
  };
12321
12371
  export type WebhookEventEnum = 'jira:issue_updated' | 'jira:issue_deleted' | 'comment_created' | 'comment_updated' | 'comment_deleted';
12322
12372
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
12373
+ export type AzureVirtualMachineCreateOrderAttributes = {
12374
+ name: string;
12375
+ description?: string;
12376
+ size: string;
12377
+ image: string;
12378
+ location: string;
12379
+ };
12380
+ export type AzureSqlServerCreateOrderAttributes = {
12381
+ name: string;
12382
+ description?: string;
12383
+ location: string;
12384
+ };
12385
+ export type OpenStackTenantCreateOrderAttributes = {
12386
+ name: string;
12387
+ description?: string;
12388
+ subnet_cidr?: string;
12389
+ skip_connection_extnet?: boolean;
12390
+ skip_creation_of_default_router?: boolean;
12391
+ /**
12392
+ * Optional availability group. Will be used for all instances provisioned in this tenant
12393
+ */
12394
+ availability_zone?: string;
12395
+ };
12396
+ export type OpenStackDataVolumeRequest = {
12397
+ size: number;
12398
+ volume_type?: string | null;
12399
+ };
12400
+ export type OpenStackServerGroupHyperlinkRequest = {
12401
+ url: string;
12402
+ };
12403
+ export type OpenStackInstanceCreateOrderAttributes = {
12404
+ name: string;
12405
+ description?: string;
12406
+ /**
12407
+ * The flavor to use for the instance
12408
+ */
12409
+ flavor: string;
12410
+ /**
12411
+ * The OS image to use for the instance
12412
+ */
12413
+ image: string;
12414
+ /**
12415
+ * List of security groups to apply to the instance
12416
+ */
12417
+ security_groups?: Array<OpenStackSecurityGroupHyperlinkRequest>;
12418
+ /**
12419
+ * Server group for instance scheduling policy
12420
+ */
12421
+ server_group?: OpenStackServerGroupHyperlinkRequest;
12422
+ /**
12423
+ * Network ports to attach to the instance
12424
+ */
12425
+ ports: Array<OpenStackCreatePortRequest>;
12426
+ /**
12427
+ * Floating IPs to assign to the instance
12428
+ */
12429
+ floating_ips?: Array<OpenStackCreateFloatingIpRequest>;
12430
+ /**
12431
+ * Size of the system volume in MiB. Minimum size is 1024 MiB (1 GiB)
12432
+ */
12433
+ system_volume_size: number;
12434
+ /**
12435
+ * Volume type for the system volume
12436
+ */
12437
+ system_volume_type?: string | null;
12438
+ /**
12439
+ * Size of the data volume in MiB. Minimum size is 1024 MiB (1 GiB)
12440
+ */
12441
+ data_volume_size?: number;
12442
+ /**
12443
+ * Volume type for the data volume
12444
+ */
12445
+ data_volume_type?: string | null;
12446
+ ssh_public_key?: string;
12447
+ /**
12448
+ * Additional data that will be added to instance on provisioning
12449
+ */
12450
+ user_data?: string;
12451
+ /**
12452
+ * Availability zone where this instance is located
12453
+ */
12454
+ availability_zone?: string | null;
12455
+ /**
12456
+ * If True, instance will be connected directly to external network
12457
+ */
12458
+ connect_directly_to_external_network?: boolean;
12459
+ /**
12460
+ * Additional data volumes to attach to the instance
12461
+ */
12462
+ data_volumes?: Array<OpenStackDataVolumeRequest>;
12463
+ };
12464
+ export type OpenStackVolumeCreateOrderAttributes = {
12465
+ name: string;
12466
+ description?: string;
12467
+ /**
12468
+ * Image that this volume was created from, if any
12469
+ */
12470
+ image?: string | null;
12471
+ /**
12472
+ * Size in MiB
12473
+ */
12474
+ size?: number | null;
12475
+ /**
12476
+ * Availability zone where this volume is located
12477
+ */
12478
+ availability_zone?: string | null;
12479
+ /**
12480
+ * Type of the volume (e.g. SSD, HDD)
12481
+ */
12482
+ type?: string | null;
12483
+ };
12484
+ export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
12485
+ name: string;
12486
+ description?: string;
12487
+ };
12488
+ export type VMwareVirtualMachineCreateOrderAttributes = {
12489
+ name: string;
12490
+ description?: string;
12491
+ guest_os?: 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64' | null;
12492
+ /**
12493
+ * Number of cores per socket in a VM
12494
+ */
12495
+ cores_per_socket?: number;
12496
+ template?: string | null;
12497
+ cluster?: string | null;
12498
+ datastore?: string | null;
12499
+ };
12500
+ export type GenericOrderAttributes = {
12501
+ /**
12502
+ * The name of the resource to be created. Will be displayed in the portal.
12503
+ */
12504
+ name?: string;
12505
+ /**
12506
+ * A free-form description for the resource.
12507
+ */
12508
+ description?: string;
12509
+ [key: string]: unknown | string | undefined;
12510
+ };
12323
12511
  export type CallManagingOrganisationRequestForm = {
12324
12512
  description?: string;
12325
12513
  customer: string;
@@ -13386,188 +13574,6 @@ export type PatchedUserRequestMultipart = {
13386
13574
  last_name?: string;
13387
13575
  image?: (Blob | File) | null;
13388
13576
  };
13389
- /**
13390
- * This mixin allows to specify list of fields to be rendered by serializer.
13391
- * It expects that request is available in serializer's context.
13392
- *
13393
- * It is disabled for nested serializers (where parent is another serializer)
13394
- * but remains active for list views (where parent is a ListSerializer).
13395
- */
13396
- export type AzureVirtualMachineCreateOrderAttributes = {
13397
- name: string;
13398
- description?: string;
13399
- size: string;
13400
- image: string;
13401
- location: string;
13402
- };
13403
- /**
13404
- * This mixin allows to specify list of fields to be rendered by serializer.
13405
- * It expects that request is available in serializer's context.
13406
- *
13407
- * It is disabled for nested serializers (where parent is another serializer)
13408
- * but remains active for list views (where parent is a ListSerializer).
13409
- */
13410
- export type AzureSqlServerCreateOrderAttributes = {
13411
- name: string;
13412
- description?: string;
13413
- location: string;
13414
- };
13415
- /**
13416
- * This mixin allows to specify list of fields to be rendered by serializer.
13417
- * It expects that request is available in serializer's context.
13418
- *
13419
- * It is disabled for nested serializers (where parent is another serializer)
13420
- * but remains active for list views (where parent is a ListSerializer).
13421
- */
13422
- export type OpenStackTenantCreateOrderAttributes = {
13423
- name: string;
13424
- description?: string;
13425
- subnet_cidr?: string;
13426
- skip_connection_extnet?: boolean;
13427
- skip_creation_of_default_router?: boolean;
13428
- /**
13429
- * Optional availability group. Will be used for all instances provisioned in this tenant
13430
- */
13431
- availability_zone?: string;
13432
- };
13433
- /**
13434
- * This mixin allows to specify list of fields to be rendered by serializer.
13435
- * It expects that request is available in serializer's context.
13436
- *
13437
- * It is disabled for nested serializers (where parent is another serializer)
13438
- * but remains active for list views (where parent is a ListSerializer).
13439
- */
13440
- export type OpenStackInstanceCreateOrderAttributes = {
13441
- name: string;
13442
- description?: string;
13443
- /**
13444
- * The flavor to use for the instance
13445
- */
13446
- flavor: string;
13447
- /**
13448
- * The OS image to use for the instance
13449
- */
13450
- image: string;
13451
- /**
13452
- * Network ports to attach to the instance
13453
- */
13454
- ports: Array<OpenStackNestedPortRequest>;
13455
- /**
13456
- * Floating IPs to assign to the instance
13457
- */
13458
- floating_ips?: Array<OpenStackNestedFloatingIpRequest>;
13459
- /**
13460
- * Size of the system volume in MiB. Minimum size is 1024 MiB (1 GiB)
13461
- */
13462
- system_volume_size: number;
13463
- /**
13464
- * Volume type for the system volume
13465
- */
13466
- system_volume_type?: string | null;
13467
- /**
13468
- * Size of the data volume in MiB. Minimum size is 1024 MiB (1 GiB)
13469
- */
13470
- data_volume_size?: number;
13471
- /**
13472
- * Volume type for the data volume
13473
- */
13474
- data_volume_type?: string | null;
13475
- ssh_public_key?: string;
13476
- /**
13477
- * Additional data that will be added to instance on provisioning
13478
- */
13479
- user_data?: string;
13480
- /**
13481
- * Availability zone where this instance is located
13482
- */
13483
- availability_zone?: string | null;
13484
- /**
13485
- * If True, instance will be connected directly to external network
13486
- */
13487
- connect_directly_to_external_network?: boolean;
13488
- /**
13489
- * Additional data volumes to attach to the instance
13490
- */
13491
- data_volumes?: Array<OpenStackDataVolumeRequest>;
13492
- /**
13493
- * Security groups to attach to the instance
13494
- */
13495
- security_groups?: Array<OpenStackNestedSecurityGroupRequest>;
13496
- };
13497
- /**
13498
- * This mixin allows to specify list of fields to be rendered by serializer.
13499
- * It expects that request is available in serializer's context.
13500
- *
13501
- * It is disabled for nested serializers (where parent is another serializer)
13502
- * but remains active for list views (where parent is a ListSerializer).
13503
- */
13504
- export type OpenStackVolumeCreateOrderAttributes = {
13505
- name: string;
13506
- description?: string;
13507
- /**
13508
- * Image that this volume was created from, if any
13509
- */
13510
- image?: string | null;
13511
- /**
13512
- * Size in MiB
13513
- */
13514
- size?: number | null;
13515
- /**
13516
- * Availability zone where this volume is located
13517
- */
13518
- availability_zone?: string | null;
13519
- /**
13520
- * Type of the volume (e.g. SSD, HDD)
13521
- */
13522
- type?: string | null;
13523
- };
13524
- /**
13525
- * This mixin allows to specify list of fields to be rendered by serializer.
13526
- * It expects that request is available in serializer's context.
13527
- *
13528
- * It is disabled for nested serializers (where parent is another serializer)
13529
- * but remains active for list views (where parent is a ListSerializer).
13530
- */
13531
- export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
13532
- name: string;
13533
- description?: string;
13534
- };
13535
- /**
13536
- * This mixin allows to specify list of fields to be rendered by serializer.
13537
- * It expects that request is available in serializer's context.
13538
- *
13539
- * It is disabled for nested serializers (where parent is another serializer)
13540
- * but remains active for list views (where parent is a ListSerializer).
13541
- */
13542
- export type VMwareVirtualMachineCreateOrderAttributes = {
13543
- name: string;
13544
- description?: string;
13545
- guest_os?: 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64' | null;
13546
- /**
13547
- * Number of cores per socket in a VM
13548
- */
13549
- cores_per_socket?: number;
13550
- template?: string | null;
13551
- cluster?: string | null;
13552
- datastore?: string | null;
13553
- };
13554
- export type OpenStackNestedSecurityGroupRequest = {
13555
- url?: string;
13556
- };
13557
- /**
13558
- * A generic JSON object for offerings without a predefined schema. Allows any key-value pairs.
13559
- */
13560
- export type GenericOrderAttributes = {
13561
- /**
13562
- * The name of the resource to be created. Will be displayed in the portal.
13563
- */
13564
- name?: string;
13565
- /**
13566
- * A free-form description for the resource.
13567
- */
13568
- description?: string;
13569
- [key: string]: unknown | string | undefined;
13570
- };
13571
13577
  /**
13572
13578
  * A page number within the paginated result set.
13573
13579
  */
@@ -16168,7 +16174,7 @@ export type BookingResourcesListData = {
16168
16174
  customer?: string;
16169
16175
  customer_uuid?: string;
16170
16176
  downscaled?: boolean;
16171
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
16177
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
16172
16178
  /**
16173
16179
  * Has termination date
16174
16180
  */
@@ -16340,7 +16346,7 @@ export type BookingResourcesRetrieveData = {
16340
16346
  uuid: string;
16341
16347
  };
16342
16348
  query?: {
16343
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
16349
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
16344
16350
  };
16345
16351
  url: '/api/booking-resources/{uuid}/';
16346
16352
  };
@@ -21865,7 +21871,7 @@ export type ManagedRancherClusterResourcesListData = {
21865
21871
  body?: never;
21866
21872
  path?: never;
21867
21873
  query?: {
21868
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21874
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21869
21875
  /**
21870
21876
  * A page number within the paginated result set.
21871
21877
  */
@@ -21908,7 +21914,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
21908
21914
  uuid: string;
21909
21915
  };
21910
21916
  query?: {
21911
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21917
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
21912
21918
  };
21913
21919
  url: '/api/managed-rancher-cluster-resources/{uuid}/';
21914
21920
  };
@@ -24812,7 +24818,7 @@ export type MarketplaceOrdersListData = {
24812
24818
  */
24813
24819
  created?: string;
24814
24820
  customer_uuid?: string;
24815
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
24821
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
24816
24822
  /**
24817
24823
  * Modified after
24818
24824
  */
@@ -24946,7 +24952,7 @@ export type MarketplaceOrdersRetrieveData = {
24946
24952
  uuid: string;
24947
24953
  };
24948
24954
  query?: {
24949
- field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
24955
+ field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
24950
24956
  };
24951
24957
  url: '/api/marketplace-orders/{uuid}/';
24952
24958
  };
@@ -25717,7 +25723,6 @@ export type MarketplaceProjectUpdateRequestsListData = {
25717
25723
  path?: never;
25718
25724
  query?: {
25719
25725
  customer_uuid?: string;
25720
- offering_customer_uuid?: string;
25721
25726
  offering_uuid?: string;
25722
25727
  /**
25723
25728
  * A page number within the paginated result set.
@@ -25728,6 +25733,7 @@ export type MarketplaceProjectUpdateRequestsListData = {
25728
25733
  */
25729
25734
  page_size?: number;
25730
25735
  project_uuid?: string;
25736
+ provider_uuid?: string;
25731
25737
  state?: Array<'approved' | 'canceled' | 'draft' | 'pending' | 'rejected'>;
25732
25738
  };
25733
25739
  url: '/api/marketplace-project-update-requests/';
@@ -25741,7 +25747,6 @@ export type MarketplaceProjectUpdateRequestsCountData = {
25741
25747
  path?: never;
25742
25748
  query?: {
25743
25749
  customer_uuid?: string;
25744
- offering_customer_uuid?: string;
25745
25750
  offering_uuid?: string;
25746
25751
  /**
25747
25752
  * A page number within the paginated result set.
@@ -25752,6 +25757,7 @@ export type MarketplaceProjectUpdateRequestsCountData = {
25752
25757
  */
25753
25758
  page_size?: number;
25754
25759
  project_uuid?: string;
25760
+ provider_uuid?: string;
25755
25761
  state?: Array<'approved' | 'canceled' | 'draft' | 'pending' | 'rejected'>;
25756
25762
  };
25757
25763
  url: '/api/marketplace-project-update-requests/';
@@ -27222,7 +27228,7 @@ export type MarketplaceProviderResourcesListData = {
27222
27228
  customer?: string;
27223
27229
  customer_uuid?: string;
27224
27230
  downscaled?: boolean;
27225
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27231
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27226
27232
  /**
27227
27233
  * Has termination date
27228
27234
  */
@@ -27393,7 +27399,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
27393
27399
  uuid: string;
27394
27400
  };
27395
27401
  query?: {
27396
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27402
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27397
27403
  };
27398
27404
  url: '/api/marketplace-provider-resources/{uuid}/';
27399
27405
  };
@@ -27431,7 +27437,7 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
27431
27437
  uuid: string;
27432
27438
  };
27433
27439
  query?: {
27434
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27440
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
27435
27441
  };
27436
27442
  url: '/api/marketplace-provider-resources/{uuid}/details/';
27437
27443
  };
@@ -27452,7 +27458,7 @@ export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponses = {
27452
27458
  };
27453
27459
  export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponse = MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponses[keyof MarketplaceProviderResourcesGlauthUsersConfigRetrieveResponses];
27454
27460
  export type MarketplaceProviderResourcesMoveResourceData = {
27455
- body?: never;
27461
+ body: MoveResourceRequest;
27456
27462
  path: {
27457
27463
  uuid: string;
27458
27464
  };
@@ -28195,7 +28201,7 @@ export type MarketplaceResourcesListData = {
28195
28201
  customer?: string;
28196
28202
  customer_uuid?: string;
28197
28203
  downscaled?: boolean;
28198
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
28204
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
28199
28205
  /**
28200
28206
  * Has termination date
28201
28207
  */
@@ -28366,7 +28372,7 @@ export type MarketplaceResourcesRetrieveData = {
28366
28372
  uuid: string;
28367
28373
  };
28368
28374
  query?: {
28369
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
28375
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
28370
28376
  };
28371
28377
  url: '/api/marketplace-resources/{uuid}/';
28372
28378
  };
@@ -28404,7 +28410,7 @@ export type MarketplaceResourcesDetailsRetrieveData = {
28404
28410
  uuid: string;
28405
28411
  };
28406
28412
  query?: {
28407
- field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_name' | 'offering_customer_slug' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
28413
+ field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
28408
28414
  };
28409
28415
  url: '/api/marketplace-resources/{uuid}/details/';
28410
28416
  };
@@ -28425,7 +28431,7 @@ export type MarketplaceResourcesGlauthUsersConfigRetrieveResponses = {
28425
28431
  };
28426
28432
  export type MarketplaceResourcesGlauthUsersConfigRetrieveResponse = MarketplaceResourcesGlauthUsersConfigRetrieveResponses[keyof MarketplaceResourcesGlauthUsersConfigRetrieveResponses];
28427
28433
  export type MarketplaceResourcesMoveResourceData = {
28428
- body?: never;
28434
+ body: MoveResourceRequest;
28429
28435
  path: {
28430
28436
  uuid: string;
28431
28437
  };
@@ -28607,7 +28613,7 @@ export type MarketplaceRobotAccountsListData = {
28607
28613
  */
28608
28614
  created?: string;
28609
28615
  customer_uuid?: string;
28610
- field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_customer_uuid' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid'>;
28616
+ field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid'>;
28611
28617
  /**
28612
28618
  * Modified after
28613
28619
  */
@@ -28700,7 +28706,7 @@ export type MarketplaceRobotAccountsRetrieveData = {
28700
28706
  uuid: string;
28701
28707
  };
28702
28708
  query?: {
28703
- field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_customer_uuid' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid'>;
28709
+ field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid'>;
28704
28710
  };
28705
28711
  url: '/api/marketplace-robot-accounts/{uuid}/';
28706
28712
  };
@@ -31499,7 +31505,7 @@ export type OpenstackBackupsPullResponses = {
31499
31505
  200: unknown;
31500
31506
  };
31501
31507
  export type OpenstackBackupsRestoreData = {
31502
- body: OpenStackBackupRestorationRequest;
31508
+ body: OpenStackBackupRestorationCreateRequest;
31503
31509
  path: {
31504
31510
  uuid: string;
31505
31511
  };
@@ -32011,7 +32017,7 @@ export type OpenstackInstancesListData = {
32011
32017
  customer_uuid?: string;
32012
32018
  description?: string;
32013
32019
  external_ip?: string;
32014
- field?: Array<'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'data_volume_size' | 'data_volume_type' | 'data_volumes' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'system_volume_size' | 'system_volume_type' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes'>;
32020
+ field?: Array<'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes'>;
32015
32021
  name?: string;
32016
32022
  name_exact?: string;
32017
32023
  /**
@@ -32100,7 +32106,7 @@ export type OpenstackInstancesRetrieveData = {
32100
32106
  uuid: string;
32101
32107
  };
32102
32108
  query?: {
32103
- field?: Array<'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'data_volume_size' | 'data_volume_type' | 'data_volumes' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'system_volume_size' | 'system_volume_type' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes'>;
32109
+ field?: Array<'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes'>;
32104
32110
  };
32105
32111
  url: '/api/openstack-instances/{uuid}/';
32106
32112
  };
@@ -38467,7 +38473,7 @@ export type RancherClustersListData = {
38467
38473
  customer_uuid?: string;
38468
38474
  description?: string;
38469
38475
  external_ip?: string;
38470
- field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
38476
+ field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
38471
38477
  name?: string;
38472
38478
  name_exact?: string;
38473
38479
  /**
@@ -38540,7 +38546,7 @@ export type RancherClustersRetrieveData = {
38540
38546
  uuid: string;
38541
38547
  };
38542
38548
  query?: {
38543
- field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
38549
+ field?: Array<'access_url' | 'backend_id' | 'capacity' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'kubernetes_version' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'public_ips' | 'requested' | 'resource_type' | 'router_ips' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid' | 'vm_project'>;
38544
38550
  };
38545
38551
  url: '/api/rancher-clusters/{uuid}/';
38546
38552
  };
@@ -39476,13 +39482,13 @@ export type RancherServicesCountResponses = {
39476
39482
  200: unknown;
39477
39483
  };
39478
39484
  export type RancherServicesCreateData = {
39479
- body: RancherServiceRequest;
39485
+ body: RancherServiceCreateRequest;
39480
39486
  path?: never;
39481
39487
  query?: never;
39482
39488
  url: '/api/rancher-services/';
39483
39489
  };
39484
39490
  export type RancherServicesCreateResponses = {
39485
- 201: RancherService;
39491
+ 201: RancherServiceCreate;
39486
39492
  };
39487
39493
  export type RancherServicesCreateResponse = RancherServicesCreateResponses[keyof RancherServicesCreateResponses];
39488
39494
  export type RancherServicesDestroyData = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.8.2-dev.7",
3
+ "version": "7.8.3-dev.0",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",