waldur-js-client 1.0.4-dev.51 → 1.0.4-dev.53
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 +4 -20
- package/dist/types.gen.d.ts +9 -6
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -11298,11 +11298,7 @@ const openstackPortsDisablePort = (options) => {
|
|
|
11298
11298
|
}
|
|
11299
11299
|
],
|
|
11300
11300
|
url: '/api/openstack-ports/{uuid}/disable_port/',
|
|
11301
|
-
...options
|
|
11302
|
-
headers: {
|
|
11303
|
-
'Content-Type': 'application/json',
|
|
11304
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11305
|
-
}
|
|
11301
|
+
...options
|
|
11306
11302
|
});
|
|
11307
11303
|
};
|
|
11308
11304
|
exports.openstackPortsDisablePort = openstackPortsDisablePort;
|
|
@@ -11319,11 +11315,7 @@ const openstackPortsDisablePortSecurity = (options) => {
|
|
|
11319
11315
|
}
|
|
11320
11316
|
],
|
|
11321
11317
|
url: '/api/openstack-ports/{uuid}/disable_port_security/',
|
|
11322
|
-
...options
|
|
11323
|
-
headers: {
|
|
11324
|
-
'Content-Type': 'application/json',
|
|
11325
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11326
|
-
}
|
|
11318
|
+
...options
|
|
11327
11319
|
});
|
|
11328
11320
|
};
|
|
11329
11321
|
exports.openstackPortsDisablePortSecurity = openstackPortsDisablePortSecurity;
|
|
@@ -11340,11 +11332,7 @@ const openstackPortsEnablePort = (options) => {
|
|
|
11340
11332
|
}
|
|
11341
11333
|
],
|
|
11342
11334
|
url: '/api/openstack-ports/{uuid}/enable_port/',
|
|
11343
|
-
...options
|
|
11344
|
-
headers: {
|
|
11345
|
-
'Content-Type': 'application/json',
|
|
11346
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11347
|
-
}
|
|
11335
|
+
...options
|
|
11348
11336
|
});
|
|
11349
11337
|
};
|
|
11350
11338
|
exports.openstackPortsEnablePort = openstackPortsEnablePort;
|
|
@@ -11361,11 +11349,7 @@ const openstackPortsEnablePortSecurity = (options) => {
|
|
|
11361
11349
|
}
|
|
11362
11350
|
],
|
|
11363
11351
|
url: '/api/openstack-ports/{uuid}/enable_port_security/',
|
|
11364
|
-
...options
|
|
11365
|
-
headers: {
|
|
11366
|
-
'Content-Type': 'application/json',
|
|
11367
|
-
...options === null || options === void 0 ? void 0 : options.headers
|
|
11368
|
-
}
|
|
11352
|
+
...options
|
|
11369
11353
|
});
|
|
11370
11354
|
};
|
|
11371
11355
|
exports.openstackPortsEnablePortSecurity = openstackPortsEnablePortSecurity;
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -6170,6 +6170,7 @@ export type PatchedRancherCatalogRequest = {
|
|
|
6170
6170
|
export type PatchedRancherClusterRequest = {
|
|
6171
6171
|
name?: string;
|
|
6172
6172
|
description?: string;
|
|
6173
|
+
vm_project?: string | null;
|
|
6173
6174
|
ssh_public_key?: string;
|
|
6174
6175
|
/**
|
|
6175
6176
|
* Longhorn is a distributed block storage deployed on top of Kubernetes cluster
|
|
@@ -7438,6 +7439,7 @@ export type RancherCluster = {
|
|
|
7438
7439
|
nodes?: Array<RancherNestedNode>;
|
|
7439
7440
|
tenant?: string;
|
|
7440
7441
|
readonly tenant_uuid?: string;
|
|
7442
|
+
vm_project?: string | null;
|
|
7441
7443
|
readonly runtime_state?: string;
|
|
7442
7444
|
/**
|
|
7443
7445
|
* Longhorn is a distributed block storage deployed on top of Kubernetes cluster
|
|
@@ -7467,6 +7469,7 @@ export type RancherClusterRequest = {
|
|
|
7467
7469
|
project: string;
|
|
7468
7470
|
nodes: Array<RancherNestedNodeRequest>;
|
|
7469
7471
|
tenant: string;
|
|
7472
|
+
vm_project?: string | null;
|
|
7470
7473
|
ssh_public_key?: string;
|
|
7471
7474
|
/**
|
|
7472
7475
|
* Longhorn is a distributed block storage deployed on top of Kubernetes cluster
|
|
@@ -21310,7 +21313,7 @@ export type OpenstackPortsUpdateResponses = {
|
|
|
21310
21313
|
};
|
|
21311
21314
|
export type OpenstackPortsUpdateResponse = OpenstackPortsUpdateResponses[keyof OpenstackPortsUpdateResponses];
|
|
21312
21315
|
export type OpenstackPortsDisablePortData = {
|
|
21313
|
-
body
|
|
21316
|
+
body?: never;
|
|
21314
21317
|
path: {
|
|
21315
21318
|
uuid: string;
|
|
21316
21319
|
};
|
|
@@ -21324,7 +21327,7 @@ export type OpenstackPortsDisablePortResponses = {
|
|
|
21324
21327
|
200: unknown;
|
|
21325
21328
|
};
|
|
21326
21329
|
export type OpenstackPortsDisablePortSecurityData = {
|
|
21327
|
-
body
|
|
21330
|
+
body?: never;
|
|
21328
21331
|
path: {
|
|
21329
21332
|
uuid: string;
|
|
21330
21333
|
};
|
|
@@ -21338,7 +21341,7 @@ export type OpenstackPortsDisablePortSecurityResponses = {
|
|
|
21338
21341
|
200: unknown;
|
|
21339
21342
|
};
|
|
21340
21343
|
export type OpenstackPortsEnablePortData = {
|
|
21341
|
-
body
|
|
21344
|
+
body?: never;
|
|
21342
21345
|
path: {
|
|
21343
21346
|
uuid: string;
|
|
21344
21347
|
};
|
|
@@ -21352,7 +21355,7 @@ export type OpenstackPortsEnablePortResponses = {
|
|
|
21352
21355
|
200: unknown;
|
|
21353
21356
|
};
|
|
21354
21357
|
export type OpenstackPortsEnablePortSecurityData = {
|
|
21355
|
-
body
|
|
21358
|
+
body?: never;
|
|
21356
21359
|
path: {
|
|
21357
21360
|
uuid: string;
|
|
21358
21361
|
};
|
|
@@ -24990,7 +24993,7 @@ export type RancherClustersListData = {
|
|
|
24990
24993
|
customer_uuid?: string;
|
|
24991
24994
|
description?: string;
|
|
24992
24995
|
external_ip?: string;
|
|
24993
|
-
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | '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' | 'resource_type' | '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'>;
|
|
24996
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | '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' | 'resource_type' | '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'>;
|
|
24994
24997
|
name?: string;
|
|
24995
24998
|
name_exact?: string;
|
|
24996
24999
|
/**
|
|
@@ -25046,7 +25049,7 @@ export type RancherClustersRetrieveData = {
|
|
|
25046
25049
|
uuid: string;
|
|
25047
25050
|
};
|
|
25048
25051
|
query?: {
|
|
25049
|
-
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | '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' | 'resource_type' | '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'>;
|
|
25052
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | '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' | 'resource_type' | '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'>;
|
|
25050
25053
|
};
|
|
25051
25054
|
url: '/api/rancher-clusters/{uuid}/';
|
|
25052
25055
|
};
|