waldur-js-client 7.7.7-dev.5 → 7.7.7-dev.6
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/types.gen.d.ts +18 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6783,9 +6783,9 @@ export type OrderCreateRequest = {
|
|
|
6783
6783
|
offering: string;
|
|
6784
6784
|
plan?: string;
|
|
6785
6785
|
/**
|
|
6786
|
-
* Attributes structure depends on the offering type specified in the parent object
|
|
6786
|
+
* Attributes structure depends on the offering type specified in the parent object. Can also be a generic object for offerings without a specific attributes schema.
|
|
6787
6787
|
*/
|
|
6788
|
-
attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | MarketplaceRancherCreateOrderAttributes | MarketplaceManagedRancherCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes;
|
|
6788
|
+
attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | MarketplaceRancherCreateOrderAttributes | MarketplaceManagedRancherCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes | GenericOrderAttributes;
|
|
6789
6789
|
limits?: {
|
|
6790
6790
|
[key: string]: number;
|
|
6791
6791
|
};
|
|
@@ -9133,6 +9133,8 @@ export type QuestionAnswer = {
|
|
|
9133
9133
|
readonly question_type: string;
|
|
9134
9134
|
readonly required: boolean;
|
|
9135
9135
|
readonly order: number;
|
|
9136
|
+
readonly min_value: string | null;
|
|
9137
|
+
readonly max_value: string | null;
|
|
9136
9138
|
/**
|
|
9137
9139
|
* Get total projects count.
|
|
9138
9140
|
*/
|
|
@@ -12011,6 +12013,20 @@ export type VMwareVirtualMachineCreateOrderAttributes = {
|
|
|
12011
12013
|
cluster?: string | null;
|
|
12012
12014
|
datastore?: string | null;
|
|
12013
12015
|
};
|
|
12016
|
+
/**
|
|
12017
|
+
* A generic JSON object for offerings without a predefined schema. Allows any key-value pairs.
|
|
12018
|
+
*/
|
|
12019
|
+
export type GenericOrderAttributes = {
|
|
12020
|
+
/**
|
|
12021
|
+
* The name of the resource to be created. Will be displayed in the portal.
|
|
12022
|
+
*/
|
|
12023
|
+
name?: string;
|
|
12024
|
+
/**
|
|
12025
|
+
* A free-form description for the resource.
|
|
12026
|
+
*/
|
|
12027
|
+
description?: string;
|
|
12028
|
+
[key: string]: unknown | string | undefined;
|
|
12029
|
+
};
|
|
12014
12030
|
/**
|
|
12015
12031
|
* A page number within the paginated result set.
|
|
12016
12032
|
*/
|