waldur-js-client 8.0.8-dev.40 → 8.0.8-dev.42

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.
@@ -4251,6 +4251,22 @@ export type ComponentStats = {
4251
4251
  readonly offering_name: string;
4252
4252
  readonly offering_uuid: string;
4253
4253
  };
4254
+ export type ComponentStatsPerOffering = {
4255
+ readonly type: string;
4256
+ readonly name: string;
4257
+ readonly description: string;
4258
+ readonly measured_unit: string;
4259
+ readonly billing_type: string;
4260
+ readonly usage: number;
4261
+ readonly limit_usage: number;
4262
+ readonly limit: number | null;
4263
+ readonly offering_name: string;
4264
+ readonly offering_uuid: string;
4265
+ readonly limit_period: string | null;
4266
+ readonly current_period_label: string;
4267
+ readonly current_period_start: string | null;
4268
+ readonly current_period_end: string | null;
4269
+ };
4254
4270
  export type ComponentUsage = {
4255
4271
  readonly uuid?: string;
4256
4272
  readonly created?: string;
@@ -4475,6 +4491,9 @@ export type ComponentUserUsageLimitRequest = {
4475
4491
  export type ComponentsUsageStats = {
4476
4492
  readonly components: Array<ComponentStats>;
4477
4493
  };
4494
+ export type ComponentsUsageStatsPerOffering = {
4495
+ readonly components: Array<ComponentStatsPerOffering>;
4496
+ };
4478
4497
  export type ComputeAffinitiesResponse = {
4479
4498
  computed_count: number;
4480
4499
  message: string;
@@ -5770,15 +5789,6 @@ export type CustomerCreditConsumption = {
5770
5789
  readonly date: string;
5771
5790
  readonly price: string;
5772
5791
  };
5773
- export type CustomerCreditRequest = {
5774
- value?: string;
5775
- customer: string;
5776
- end_date?: string | null;
5777
- expected_consumption?: string;
5778
- minimal_consumption_logic?: MinimalConsumptionLogicEnum;
5779
- grace_coefficient?: string;
5780
- apply_as_minimal_consumption?: boolean;
5781
- };
5782
5792
  export type CustomerDetails = {
5783
5793
  name?: string;
5784
5794
  address?: string;
@@ -9733,6 +9743,10 @@ export type MergedPluginOptions = {
9733
9743
  * Enable sub-project management within resources.
9734
9744
  */
9735
9745
  enable_resource_projects?: boolean;
9746
+ /**
9747
+ * If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
9748
+ */
9749
+ resource_projects_limits_required?: boolean;
9736
9750
  /**
9737
9751
  * If set to True, create orders when resource projects are created, updated or deleted.
9738
9752
  */
@@ -10027,6 +10041,10 @@ export type MergedPluginOptionsRequest = {
10027
10041
  * Enable sub-project management within resources.
10028
10042
  */
10029
10043
  enable_resource_projects?: boolean;
10044
+ /**
10045
+ * If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
10046
+ */
10047
+ resource_projects_limits_required?: boolean;
10030
10048
  /**
10031
10049
  * If set to True, create orders when resource projects are created, updated or deleted.
10032
10050
  */
@@ -11214,10 +11232,6 @@ export type NestedProviderOffering = {
11214
11232
  type: string;
11215
11233
  name: string;
11216
11234
  };
11217
- export type NestedProviderOfferingRequest = {
11218
- type: string;
11219
- name: string;
11220
- };
11221
11235
  export type NestedPublicOffering = {
11222
11236
  readonly uuid: string;
11223
11237
  readonly url: string;
@@ -20407,13 +20421,6 @@ export type RancherCatalogCreateRequest = {
20407
20421
  username?: string;
20408
20422
  password?: string;
20409
20423
  };
20410
- export type RancherCatalogRequest = {
20411
- name: string;
20412
- description?: string;
20413
- catalog_url: string;
20414
- branch: string;
20415
- scope: string;
20416
- };
20417
20424
  export type RancherCatalogScopeType = 'global' | 'cluster' | 'project';
20418
20425
  export type RancherCatalogUpdate = {
20419
20426
  readonly uuid: string;
@@ -31272,11 +31279,9 @@ export type AwsInstancesRestartData = {
31272
31279
  url: '/api/aws-instances/{uuid}/restart/';
31273
31280
  };
31274
31281
  export type AwsInstancesRestartResponses = {
31275
- /**
31276
- * No response body
31277
- */
31278
- 200: unknown;
31282
+ 200: AwsInstance;
31279
31283
  };
31284
+ export type AwsInstancesRestartResponse = AwsInstancesRestartResponses[keyof AwsInstancesRestartResponses];
31280
31285
  export type AwsInstancesSetErredData = {
31281
31286
  body?: SetErredRequest;
31282
31287
  path: {
@@ -31310,11 +31315,9 @@ export type AwsInstancesStartData = {
31310
31315
  url: '/api/aws-instances/{uuid}/start/';
31311
31316
  };
31312
31317
  export type AwsInstancesStartResponses = {
31313
- /**
31314
- * No response body
31315
- */
31316
- 200: unknown;
31318
+ 200: AwsInstance;
31317
31319
  };
31320
+ export type AwsInstancesStartResponse = AwsInstancesStartResponses[keyof AwsInstancesStartResponses];
31318
31321
  export type AwsInstancesStopData = {
31319
31322
  body?: never;
31320
31323
  path: {
@@ -31324,11 +31327,9 @@ export type AwsInstancesStopData = {
31324
31327
  url: '/api/aws-instances/{uuid}/stop/';
31325
31328
  };
31326
31329
  export type AwsInstancesStopResponses = {
31327
- /**
31328
- * No response body
31329
- */
31330
- 200: unknown;
31330
+ 200: AwsInstance;
31331
31331
  };
31332
+ export type AwsInstancesStopResponse = AwsInstancesStopResponses[keyof AwsInstancesStopResponses];
31332
31333
  export type AwsInstancesUnlinkData = {
31333
31334
  body?: never;
31334
31335
  path: {
@@ -31607,11 +31608,9 @@ export type AwsVolumesDetachData = {
31607
31608
  url: '/api/aws-volumes/{uuid}/detach/';
31608
31609
  };
31609
31610
  export type AwsVolumesDetachResponses = {
31610
- /**
31611
- * No response body
31612
- */
31613
- 200: unknown;
31611
+ 200: AwsVolume;
31614
31612
  };
31613
+ export type AwsVolumesDetachResponse = AwsVolumesDetachResponses[keyof AwsVolumesDetachResponses];
31615
31614
  export type AwsVolumesPullData = {
31616
31615
  body?: never;
31617
31616
  path: {
@@ -33184,11 +33183,9 @@ export type AzureVirtualmachinesRestartData = {
33184
33183
  url: '/api/azure-virtualmachines/{uuid}/restart/';
33185
33184
  };
33186
33185
  export type AzureVirtualmachinesRestartResponses = {
33187
- /**
33188
- * No response body
33189
- */
33190
- 200: unknown;
33186
+ 200: AzureVirtualMachine;
33191
33187
  };
33188
+ export type AzureVirtualmachinesRestartResponse = AzureVirtualmachinesRestartResponses[keyof AzureVirtualmachinesRestartResponses];
33192
33189
  export type AzureVirtualmachinesSetErredData = {
33193
33190
  body?: SetErredRequest;
33194
33191
  path: {
@@ -33222,11 +33219,9 @@ export type AzureVirtualmachinesStartData = {
33222
33219
  url: '/api/azure-virtualmachines/{uuid}/start/';
33223
33220
  };
33224
33221
  export type AzureVirtualmachinesStartResponses = {
33225
- /**
33226
- * No response body
33227
- */
33228
- 200: unknown;
33222
+ 200: AzureVirtualMachine;
33229
33223
  };
33224
+ export type AzureVirtualmachinesStartResponse = AzureVirtualmachinesStartResponses[keyof AzureVirtualmachinesStartResponses];
33230
33225
  export type AzureVirtualmachinesStopData = {
33231
33226
  body?: never;
33232
33227
  path: {
@@ -33236,11 +33231,9 @@ export type AzureVirtualmachinesStopData = {
33236
33231
  url: '/api/azure-virtualmachines/{uuid}/stop/';
33237
33232
  };
33238
33233
  export type AzureVirtualmachinesStopResponses = {
33239
- /**
33240
- * No response body
33241
- */
33242
- 200: unknown;
33234
+ 200: AzureVirtualMachine;
33243
33235
  };
33236
+ export type AzureVirtualmachinesStopResponse = AzureVirtualmachinesStopResponses[keyof AzureVirtualmachinesStopResponses];
33244
33237
  export type AzureVirtualmachinesUnlinkData = {
33245
33238
  body?: never;
33246
33239
  path: {
@@ -34136,11 +34129,9 @@ export type BookingResourcesAcceptData = {
34136
34129
  url: '/api/booking-resources/{uuid}/accept/';
34137
34130
  };
34138
34131
  export type BookingResourcesAcceptResponses = {
34139
- /**
34140
- * No response body
34141
- */
34142
- 200: unknown;
34132
+ 200: BookingResource;
34143
34133
  };
34134
+ export type BookingResourcesAcceptResponse = BookingResourcesAcceptResponses[keyof BookingResourcesAcceptResponses];
34144
34135
  export type BookingResourcesRejectData = {
34145
34136
  body?: never;
34146
34137
  path: {
@@ -34150,11 +34141,9 @@ export type BookingResourcesRejectData = {
34150
34141
  url: '/api/booking-resources/{uuid}/reject/';
34151
34142
  };
34152
34143
  export type BookingResourcesRejectResponses = {
34153
- /**
34154
- * No response body
34155
- */
34156
- 200: unknown;
34144
+ 200: BookingResource;
34157
34145
  };
34146
+ export type BookingResourcesRejectResponse = BookingResourcesRejectResponses[keyof BookingResourcesRejectResponses];
34158
34147
  export type BroadcastMessageTemplatesListData = {
34159
34148
  body?: never;
34160
34149
  path?: never;
@@ -35530,7 +35519,7 @@ export type ChatThreadsRetrieveResponses = {
35530
35519
  };
35531
35520
  export type ChatThreadsRetrieveResponse = ChatThreadsRetrieveResponses[keyof ChatThreadsRetrieveResponses];
35532
35521
  export type ChatThreadsArchiveData = {
35533
- body?: ThreadSessionRequest;
35522
+ body?: never;
35534
35523
  path: {
35535
35524
  uuid: string;
35536
35525
  };
@@ -35559,7 +35548,7 @@ export type ChatThreadsCancelResponses = {
35559
35548
  200: unknown;
35560
35549
  };
35561
35550
  export type ChatThreadsUnarchiveData = {
35562
- body?: ThreadSessionRequest;
35551
+ body?: never;
35563
35552
  path: {
35564
35553
  uuid: string;
35565
35554
  };
@@ -36653,7 +36642,7 @@ export type CustomerCreditsUpdateResponses = {
36653
36642
  };
36654
36643
  export type CustomerCreditsUpdateResponse = CustomerCreditsUpdateResponses[keyof CustomerCreditsUpdateResponses];
36655
36644
  export type CustomerCreditsApplyCompensationsData = {
36656
- body: CustomerCreditRequest;
36645
+ body?: never;
36657
36646
  path: {
36658
36647
  uuid: string;
36659
36648
  };
@@ -36665,7 +36654,7 @@ export type CustomerCreditsApplyCompensationsResponses = {
36665
36654
  };
36666
36655
  export type CustomerCreditsApplyCompensationsResponse = CustomerCreditsApplyCompensationsResponses[keyof CustomerCreditsApplyCompensationsResponses];
36667
36656
  export type CustomerCreditsClearCompensationsData = {
36668
- body: CustomerCreditRequest;
36657
+ body?: never;
36669
36658
  path: {
36670
36659
  uuid: string;
36671
36660
  };
@@ -37314,6 +37303,18 @@ export type CustomersAddUserResponses = {
37314
37303
  201: UserRoleExpirationTime;
37315
37304
  };
37316
37305
  export type CustomersAddUserResponse = CustomersAddUserResponses[keyof CustomersAddUserResponses];
37306
+ export type CustomersComponentsUsageRetrieveData = {
37307
+ body?: never;
37308
+ path: {
37309
+ uuid: string;
37310
+ };
37311
+ query?: never;
37312
+ url: '/api/customers/{uuid}/components-usage/';
37313
+ };
37314
+ export type CustomersComponentsUsageRetrieveResponses = {
37315
+ 200: ComponentsUsageStatsPerOffering;
37316
+ };
37317
+ export type CustomersComponentsUsageRetrieveResponse = CustomersComponentsUsageRetrieveResponses[keyof CustomersComponentsUsageRetrieveResponses];
37317
37318
  export type CustomersContactData = {
37318
37319
  body?: CustomerContactUpdateRequest;
37319
37320
  path: {
@@ -38332,11 +38333,9 @@ export type DigitaloceanDropletsRestartData = {
38332
38333
  url: '/api/digitalocean-droplets/{uuid}/restart/';
38333
38334
  };
38334
38335
  export type DigitaloceanDropletsRestartResponses = {
38335
- /**
38336
- * No response body
38337
- */
38338
- 200: unknown;
38336
+ 200: DigitalOceanDroplet;
38339
38337
  };
38338
+ export type DigitaloceanDropletsRestartResponse = DigitaloceanDropletsRestartResponses[keyof DigitaloceanDropletsRestartResponses];
38340
38339
  export type DigitaloceanDropletsSetErredData = {
38341
38340
  body?: SetErredRequest;
38342
38341
  path: {
@@ -38370,11 +38369,9 @@ export type DigitaloceanDropletsStartData = {
38370
38369
  url: '/api/digitalocean-droplets/{uuid}/start/';
38371
38370
  };
38372
38371
  export type DigitaloceanDropletsStartResponses = {
38373
- /**
38374
- * No response body
38375
- */
38376
- 200: unknown;
38372
+ 200: DigitalOceanDroplet;
38377
38373
  };
38374
+ export type DigitaloceanDropletsStartResponse = DigitaloceanDropletsStartResponses[keyof DigitaloceanDropletsStartResponses];
38378
38375
  export type DigitaloceanDropletsStopData = {
38379
38376
  body?: never;
38380
38377
  path: {
@@ -38384,11 +38381,9 @@ export type DigitaloceanDropletsStopData = {
38384
38381
  url: '/api/digitalocean-droplets/{uuid}/stop/';
38385
38382
  };
38386
38383
  export type DigitaloceanDropletsStopResponses = {
38387
- /**
38388
- * No response body
38389
- */
38390
- 200: unknown;
38384
+ 200: DigitalOceanDroplet;
38391
38385
  };
38386
+ export type DigitaloceanDropletsStopResponse = DigitaloceanDropletsStopResponses[keyof DigitaloceanDropletsStopResponses];
38392
38387
  export type DigitaloceanDropletsUnlinkData = {
38393
38388
  body?: never;
38394
38389
  path: {
@@ -40832,11 +40827,9 @@ export type InvoicesSendNotificationData = {
40832
40827
  url: '/api/invoices/{uuid}/send_notification/';
40833
40828
  };
40834
40829
  export type InvoicesSendNotificationResponses = {
40835
- /**
40836
- * No response body
40837
- */
40838
- 200: unknown;
40830
+ 200: Invoice;
40839
40831
  };
40832
+ export type InvoicesSendNotificationResponse = InvoicesSendNotificationResponses[keyof InvoicesSendNotificationResponses];
40840
40833
  export type InvoicesSetBackendIdData = {
40841
40834
  body?: BackendIdRequest;
40842
40835
  path: {
@@ -57118,7 +57111,7 @@ export type MarketplaceSoftwareCatalogsUpdateResponses = {
57118
57111
  };
57119
57112
  export type MarketplaceSoftwareCatalogsUpdateResponse = MarketplaceSoftwareCatalogsUpdateResponses[keyof MarketplaceSoftwareCatalogsUpdateResponses];
57120
57113
  export type MarketplaceSoftwareCatalogsUpdateCatalogData = {
57121
- body: SoftwareCatalogRequest;
57114
+ body?: never;
57122
57115
  path: {
57123
57116
  uuid: string;
57124
57117
  };
@@ -63166,6 +63159,18 @@ export type OpenportalUnmanagedProjectsCompletionStatusRetrieveResponses = {
63166
63159
  200: ChecklistCompletion;
63167
63160
  };
63168
63161
  export type OpenportalUnmanagedProjectsCompletionStatusRetrieveResponse = OpenportalUnmanagedProjectsCompletionStatusRetrieveResponses[keyof OpenportalUnmanagedProjectsCompletionStatusRetrieveResponses];
63162
+ export type OpenportalUnmanagedProjectsComponentsUsageRetrieveData = {
63163
+ body?: never;
63164
+ path: {
63165
+ uuid: string;
63166
+ };
63167
+ query?: never;
63168
+ url: '/api/openportal-unmanaged-projects/{uuid}/components-usage/';
63169
+ };
63170
+ export type OpenportalUnmanagedProjectsComponentsUsageRetrieveResponses = {
63171
+ 200: ComponentsUsageStatsPerOffering;
63172
+ };
63173
+ export type OpenportalUnmanagedProjectsComponentsUsageRetrieveResponse = OpenportalUnmanagedProjectsComponentsUsageRetrieveResponses[keyof OpenportalUnmanagedProjectsComponentsUsageRetrieveResponses];
63169
63174
  export type OpenportalUnmanagedProjectsDeleteUserData = {
63170
63175
  body: UserRoleDeleteRequest;
63171
63176
  path: {
@@ -69203,11 +69208,9 @@ export type OpenstackSubnetsConnectData = {
69203
69208
  url: '/api/openstack-subnets/{uuid}/connect/';
69204
69209
  };
69205
69210
  export type OpenstackSubnetsConnectResponses = {
69206
- /**
69207
- * No response body
69208
- */
69209
- 200: unknown;
69211
+ 200: OpenStackSubNet;
69210
69212
  };
69213
+ export type OpenstackSubnetsConnectResponse = OpenstackSubnetsConnectResponses[keyof OpenstackSubnetsConnectResponses];
69211
69214
  export type OpenstackSubnetsDisconnectData = {
69212
69215
  body?: never;
69213
69216
  path: {
@@ -69217,11 +69220,9 @@ export type OpenstackSubnetsDisconnectData = {
69217
69220
  url: '/api/openstack-subnets/{uuid}/disconnect/';
69218
69221
  };
69219
69222
  export type OpenstackSubnetsDisconnectResponses = {
69220
- /**
69221
- * No response body
69222
- */
69223
- 200: unknown;
69223
+ 200: OpenStackSubNet;
69224
69224
  };
69225
+ export type OpenstackSubnetsDisconnectResponse = OpenstackSubnetsDisconnectResponses[keyof OpenstackSubnetsDisconnectResponses];
69225
69226
  export type OpenstackSubnetsPullData = {
69226
69227
  body?: never;
69227
69228
  path: {
@@ -71013,11 +71014,9 @@ export type PaymentProfilesEnableData = {
71013
71014
  url: '/api/payment-profiles/{uuid}/enable/';
71014
71015
  };
71015
71016
  export type PaymentProfilesEnableResponses = {
71016
- /**
71017
- * No response body
71018
- */
71019
- 200: unknown;
71017
+ 200: PaymentProfile;
71020
71018
  };
71019
+ export type PaymentProfilesEnableResponse = PaymentProfilesEnableResponses[keyof PaymentProfilesEnableResponses];
71021
71020
  export type PaymentsListData = {
71022
71021
  body?: never;
71023
71022
  path?: never;
@@ -71146,11 +71145,9 @@ export type PaymentsUnlinkFromInvoiceData = {
71146
71145
  url: '/api/payments/{uuid}/unlink_from_invoice/';
71147
71146
  };
71148
71147
  export type PaymentsUnlinkFromInvoiceResponses = {
71149
- /**
71150
- * No response body
71151
- */
71152
- 200: unknown;
71148
+ 200: Payment;
71153
71149
  };
71150
+ export type PaymentsUnlinkFromInvoiceResponse = PaymentsUnlinkFromInvoiceResponses[keyof PaymentsUnlinkFromInvoiceResponses];
71154
71151
  export type PersonalAccessTokensListData = {
71155
71152
  body?: never;
71156
71153
  path?: never;
@@ -72224,6 +72221,18 @@ export type ProjectsCompletionStatusRetrieveResponses = {
72224
72221
  200: ChecklistCompletion;
72225
72222
  };
72226
72223
  export type ProjectsCompletionStatusRetrieveResponse = ProjectsCompletionStatusRetrieveResponses[keyof ProjectsCompletionStatusRetrieveResponses];
72224
+ export type ProjectsComponentsUsageRetrieveData = {
72225
+ body?: never;
72226
+ path: {
72227
+ uuid: string;
72228
+ };
72229
+ query?: never;
72230
+ url: '/api/projects/{uuid}/components-usage/';
72231
+ };
72232
+ export type ProjectsComponentsUsageRetrieveResponses = {
72233
+ 200: ComponentsUsageStatsPerOffering;
72234
+ };
72235
+ export type ProjectsComponentsUsageRetrieveResponse = ProjectsComponentsUsageRetrieveResponses[keyof ProjectsComponentsUsageRetrieveResponses];
72227
72236
  export type ProjectsDeleteUserData = {
72228
72237
  body: UserRoleDeleteRequest;
72229
72238
  path: {
@@ -73454,7 +73463,7 @@ export type ProposalProtectedCallsComplianceOverviewRetrieveResponses = {
73454
73463
  };
73455
73464
  export type ProposalProtectedCallsComplianceOverviewRetrieveResponse = ProposalProtectedCallsComplianceOverviewRetrieveResponses[keyof ProposalProtectedCallsComplianceOverviewRetrieveResponses];
73456
73465
  export type ProposalProtectedCallsComputeAffinitiesData = {
73457
- body: ProtectedCallRequest;
73466
+ body?: never;
73458
73467
  path: {
73459
73468
  uuid: string;
73460
73469
  };
@@ -75492,7 +75501,7 @@ export type RancherCatalogsUpdateResponses = {
75492
75501
  };
75493
75502
  export type RancherCatalogsUpdateResponse = RancherCatalogsUpdateResponses[keyof RancherCatalogsUpdateResponses];
75494
75503
  export type RancherCatalogsRefreshData = {
75495
- body: RancherCatalogRequest;
75504
+ body?: never;
75496
75505
  path: {
75497
75506
  uuid: string;
75498
75507
  };
@@ -80930,7 +80939,7 @@ export type SupportIssuesCommentResponses = {
80930
80939
  };
80931
80940
  export type SupportIssuesCommentResponse = SupportIssuesCommentResponses[keyof SupportIssuesCommentResponses];
80932
80941
  export type SupportIssuesSyncData = {
80933
- body: IssueRequest;
80942
+ body?: never;
80934
80943
  path: {
80935
80944
  uuid: string;
80936
80945
  };
@@ -85735,11 +85744,9 @@ export type VmwareVirtualMachineRebootGuestData = {
85735
85744
  url: '/api/vmware-virtual-machine/{uuid}/reboot_guest/';
85736
85745
  };
85737
85746
  export type VmwareVirtualMachineRebootGuestResponses = {
85738
- /**
85739
- * No response body
85740
- */
85741
- 200: unknown;
85747
+ 200: VmwareVirtualMachine;
85742
85748
  };
85749
+ export type VmwareVirtualMachineRebootGuestResponse = VmwareVirtualMachineRebootGuestResponses[keyof VmwareVirtualMachineRebootGuestResponses];
85743
85750
  export type VmwareVirtualMachineResetData = {
85744
85751
  body?: never;
85745
85752
  path: {
@@ -85749,11 +85756,9 @@ export type VmwareVirtualMachineResetData = {
85749
85756
  url: '/api/vmware-virtual-machine/{uuid}/reset/';
85750
85757
  };
85751
85758
  export type VmwareVirtualMachineResetResponses = {
85752
- /**
85753
- * No response body
85754
- */
85755
- 200: unknown;
85759
+ 200: VmwareVirtualMachine;
85756
85760
  };
85761
+ export type VmwareVirtualMachineResetResponse = VmwareVirtualMachineResetResponses[keyof VmwareVirtualMachineResetResponses];
85757
85762
  export type VmwareVirtualMachineSetErredData = {
85758
85763
  body?: SetErredRequest;
85759
85764
  path: {
@@ -85787,11 +85792,9 @@ export type VmwareVirtualMachineShutdownGuestData = {
85787
85792
  url: '/api/vmware-virtual-machine/{uuid}/shutdown_guest/';
85788
85793
  };
85789
85794
  export type VmwareVirtualMachineShutdownGuestResponses = {
85790
- /**
85791
- * No response body
85792
- */
85793
- 200: unknown;
85795
+ 200: VmwareVirtualMachine;
85794
85796
  };
85797
+ export type VmwareVirtualMachineShutdownGuestResponse = VmwareVirtualMachineShutdownGuestResponses[keyof VmwareVirtualMachineShutdownGuestResponses];
85795
85798
  export type VmwareVirtualMachineStartData = {
85796
85799
  body?: never;
85797
85800
  path: {
@@ -85801,11 +85804,9 @@ export type VmwareVirtualMachineStartData = {
85801
85804
  url: '/api/vmware-virtual-machine/{uuid}/start/';
85802
85805
  };
85803
85806
  export type VmwareVirtualMachineStartResponses = {
85804
- /**
85805
- * No response body
85806
- */
85807
- 200: unknown;
85807
+ 200: VmwareVirtualMachine;
85808
85808
  };
85809
+ export type VmwareVirtualMachineStartResponse = VmwareVirtualMachineStartResponses[keyof VmwareVirtualMachineStartResponses];
85809
85810
  export type VmwareVirtualMachineStopData = {
85810
85811
  body?: never;
85811
85812
  path: {
@@ -85815,11 +85816,9 @@ export type VmwareVirtualMachineStopData = {
85815
85816
  url: '/api/vmware-virtual-machine/{uuid}/stop/';
85816
85817
  };
85817
85818
  export type VmwareVirtualMachineStopResponses = {
85818
- /**
85819
- * No response body
85820
- */
85821
- 200: unknown;
85819
+ 200: VmwareVirtualMachine;
85822
85820
  };
85821
+ export type VmwareVirtualMachineStopResponse = VmwareVirtualMachineStopResponses[keyof VmwareVirtualMachineStopResponses];
85823
85822
  export type VmwareVirtualMachineSuspendData = {
85824
85823
  body?: never;
85825
85824
  path: {
@@ -85829,11 +85828,9 @@ export type VmwareVirtualMachineSuspendData = {
85829
85828
  url: '/api/vmware-virtual-machine/{uuid}/suspend/';
85830
85829
  };
85831
85830
  export type VmwareVirtualMachineSuspendResponses = {
85832
- /**
85833
- * No response body
85834
- */
85835
- 200: unknown;
85831
+ 200: VmwareVirtualMachine;
85836
85832
  };
85833
+ export type VmwareVirtualMachineSuspendResponse = VmwareVirtualMachineSuspendResponses[keyof VmwareVirtualMachineSuspendResponses];
85837
85834
  export type VmwareVirtualMachineUnlinkData = {
85838
85835
  body?: never;
85839
85836
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.8-dev.40",
3
+ "version": "8.0.8-dev.42",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",