waldur-js-client 1.0.4-dev.56 → 1.0.4-dev.57
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 +16 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -21048,6 +21048,10 @@ export type OpenstackNetworksListData = {
|
|
|
21048
21048
|
customer_native_name?: string;
|
|
21049
21049
|
customer_uuid?: string;
|
|
21050
21050
|
description?: string;
|
|
21051
|
+
/**
|
|
21052
|
+
* Direct only
|
|
21053
|
+
*/
|
|
21054
|
+
direct_only?: boolean;
|
|
21051
21055
|
external_ip?: string;
|
|
21052
21056
|
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | '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' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
|
|
21053
21057
|
is_external?: boolean;
|
|
@@ -21064,6 +21068,10 @@ export type OpenstackNetworksListData = {
|
|
|
21064
21068
|
project?: string;
|
|
21065
21069
|
project_name?: string;
|
|
21066
21070
|
project_uuid?: string;
|
|
21071
|
+
/**
|
|
21072
|
+
* RBAC only
|
|
21073
|
+
*/
|
|
21074
|
+
rbac_only?: boolean;
|
|
21067
21075
|
service_settings_name?: string;
|
|
21068
21076
|
service_settings_uuid?: string;
|
|
21069
21077
|
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|
|
@@ -21912,6 +21920,10 @@ export type OpenstackSubnetsListData = {
|
|
|
21912
21920
|
customer_native_name?: string;
|
|
21913
21921
|
customer_uuid?: string;
|
|
21914
21922
|
description?: string;
|
|
21923
|
+
/**
|
|
21924
|
+
* Direct only
|
|
21925
|
+
*/
|
|
21926
|
+
direct_only?: boolean;
|
|
21915
21927
|
enable_dhcp?: boolean;
|
|
21916
21928
|
external_ip?: string;
|
|
21917
21929
|
field?: Array<'access_url' | 'allocation_pools' | 'backend_id' | 'cidr' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'disable_gateway' | 'dns_nameservers' | 'enable_dhcp' | 'error_message' | 'error_traceback' | 'gateway_ip' | 'host_routes' | 'ip_version' | 'is_connected' | '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' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'url' | 'uuid'>;
|
|
@@ -21931,6 +21943,10 @@ export type OpenstackSubnetsListData = {
|
|
|
21931
21943
|
project?: string;
|
|
21932
21944
|
project_name?: string;
|
|
21933
21945
|
project_uuid?: string;
|
|
21946
|
+
/**
|
|
21947
|
+
* RBAC only
|
|
21948
|
+
*/
|
|
21949
|
+
rbac_only?: boolean;
|
|
21934
21950
|
service_settings_name?: string;
|
|
21935
21951
|
service_settings_uuid?: string;
|
|
21936
21952
|
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|