waldur-js-client 1.0.4-dev.53 → 1.0.4-dev.55
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 +5 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7468,7 +7468,7 @@ export type RancherClusterRequest = {
|
|
|
7468
7468
|
service_settings: string;
|
|
7469
7469
|
project: string;
|
|
7470
7470
|
nodes: Array<RancherNestedNodeRequest>;
|
|
7471
|
-
tenant
|
|
7471
|
+
tenant?: string;
|
|
7472
7472
|
vm_project?: string | null;
|
|
7473
7473
|
ssh_public_key?: string;
|
|
7474
7474
|
/**
|
|
@@ -7494,6 +7494,7 @@ export type RancherClusterTemplateNode = {
|
|
|
7494
7494
|
export type RancherCreateNode = {
|
|
7495
7495
|
cluster: string;
|
|
7496
7496
|
role: RoleEnum;
|
|
7497
|
+
readonly uuid: string;
|
|
7497
7498
|
};
|
|
7498
7499
|
export type RancherCreateNodeRequest = {
|
|
7499
7500
|
cluster: string;
|
|
@@ -7506,6 +7507,7 @@ export type RancherCreateNodeRequest = {
|
|
|
7506
7507
|
flavor?: string | null;
|
|
7507
7508
|
data_volumes?: Array<DataVolumeRequest>;
|
|
7508
7509
|
ssh_public_key?: string;
|
|
7510
|
+
tenant?: string;
|
|
7509
7511
|
};
|
|
7510
7512
|
export type RancherHpa = {
|
|
7511
7513
|
readonly url: string;
|
|
@@ -7661,6 +7663,7 @@ export type RancherNestedNodeRequest = {
|
|
|
7661
7663
|
memory?: number;
|
|
7662
7664
|
cpu?: number;
|
|
7663
7665
|
role: RoleEnum;
|
|
7666
|
+
tenant?: string;
|
|
7664
7667
|
error_traceback?: string;
|
|
7665
7668
|
backend_id?: string;
|
|
7666
7669
|
};
|
|
@@ -21240,6 +21243,7 @@ export type OpenstackPortsListData = {
|
|
|
21240
21243
|
* Number of results to return per page.
|
|
21241
21244
|
*/
|
|
21242
21245
|
page_size?: number;
|
|
21246
|
+
query?: string;
|
|
21243
21247
|
tenant?: string;
|
|
21244
21248
|
tenant_uuid?: string;
|
|
21245
21249
|
};
|