waldur-js-client 7.9.6-dev.22 → 7.9.6-dev.24
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 +13 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5485,6 +5485,10 @@ export type MergedPluginOptions = {
|
|
|
5485
5485
|
* Skip approval of public offering belonging to the same organization under which the request is done
|
|
5486
5486
|
*/
|
|
5487
5487
|
auto_approve_in_service_provider_projects?: boolean;
|
|
5488
|
+
/**
|
|
5489
|
+
* If set to True, orders for this offering will always require manual approval, overriding auto_approve_in_service_provider_projects
|
|
5490
|
+
*/
|
|
5491
|
+
disable_autoapprove?: boolean;
|
|
5488
5492
|
/**
|
|
5489
5493
|
* If set to True, it will be possible to downscale resources
|
|
5490
5494
|
*/
|
|
@@ -5723,6 +5727,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
5723
5727
|
* Skip approval of public offering belonging to the same organization under which the request is done
|
|
5724
5728
|
*/
|
|
5725
5729
|
auto_approve_in_service_provider_projects?: boolean;
|
|
5730
|
+
/**
|
|
5731
|
+
* If set to True, orders for this offering will always require manual approval, overriding auto_approve_in_service_provider_projects
|
|
5732
|
+
*/
|
|
5733
|
+
disable_autoapprove?: boolean;
|
|
5726
5734
|
/**
|
|
5727
5735
|
* If set to True, it will be possible to downscale resources
|
|
5728
5736
|
*/
|
|
@@ -9832,6 +9840,7 @@ export type OpenStackTenant = {
|
|
|
9832
9840
|
* Volume type name to use when creating volumes.
|
|
9833
9841
|
*/
|
|
9834
9842
|
default_volume_type_name?: string;
|
|
9843
|
+
skip_creation_of_default_router?: boolean;
|
|
9835
9844
|
readonly marketplace_offering_uuid?: string | null;
|
|
9836
9845
|
readonly marketplace_offering_name?: string | null;
|
|
9837
9846
|
readonly marketplace_offering_plugin_options?: {
|
|
@@ -9884,6 +9893,7 @@ export type OpenStackTenantRequest = {
|
|
|
9884
9893
|
default_volume_type_name?: string;
|
|
9885
9894
|
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
9886
9895
|
skip_creation_of_default_subnet?: boolean;
|
|
9896
|
+
skip_creation_of_default_router?: boolean;
|
|
9887
9897
|
};
|
|
9888
9898
|
export type OpenStackTenantSecurityGroup = {
|
|
9889
9899
|
name: string;
|
|
@@ -10992,6 +11002,7 @@ export type PatchedOpenStackTenantRequest = {
|
|
|
10992
11002
|
default_volume_type_name?: string;
|
|
10993
11003
|
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
10994
11004
|
skip_creation_of_default_subnet?: boolean;
|
|
11005
|
+
skip_creation_of_default_router?: boolean;
|
|
10995
11006
|
};
|
|
10996
11007
|
export type PatchedOpenStackVolumeRequest = {
|
|
10997
11008
|
name?: string;
|
|
@@ -48951,7 +48962,7 @@ export type OpenstackTenantsListData = {
|
|
|
48951
48962
|
* External IP
|
|
48952
48963
|
*/
|
|
48953
48964
|
external_ip?: string;
|
|
48954
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
48965
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
48955
48966
|
/**
|
|
48956
48967
|
* Name
|
|
48957
48968
|
*/
|
|
@@ -49106,7 +49117,7 @@ export type OpenstackTenantsRetrieveData = {
|
|
|
49106
49117
|
uuid: string;
|
|
49107
49118
|
};
|
|
49108
49119
|
query?: {
|
|
49109
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
49120
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
49110
49121
|
};
|
|
49111
49122
|
url: '/api/openstack-tenants/{uuid}/';
|
|
49112
49123
|
};
|