waldur-js-client 1.0.4-dev.56 → 1.0.4-dev.58
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 +20 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2774,6 +2774,10 @@ export type KeycloakUserGroupMembership = {
|
|
|
2774
2774
|
readonly group_name: string;
|
|
2775
2775
|
readonly group_role: string;
|
|
2776
2776
|
readonly group_scope_type: string;
|
|
2777
|
+
/**
|
|
2778
|
+
* Get the name of the cluster or project
|
|
2779
|
+
*/
|
|
2780
|
+
readonly group_scope_name: string | null;
|
|
2777
2781
|
state: KeycloakUserGroupMembershipState;
|
|
2778
2782
|
readonly created: string;
|
|
2779
2783
|
readonly modified: string;
|
|
@@ -21048,6 +21052,10 @@ export type OpenstackNetworksListData = {
|
|
|
21048
21052
|
customer_native_name?: string;
|
|
21049
21053
|
customer_uuid?: string;
|
|
21050
21054
|
description?: string;
|
|
21055
|
+
/**
|
|
21056
|
+
* Direct only
|
|
21057
|
+
*/
|
|
21058
|
+
direct_only?: boolean;
|
|
21051
21059
|
external_ip?: string;
|
|
21052
21060
|
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
21061
|
is_external?: boolean;
|
|
@@ -21064,6 +21072,10 @@ export type OpenstackNetworksListData = {
|
|
|
21064
21072
|
project?: string;
|
|
21065
21073
|
project_name?: string;
|
|
21066
21074
|
project_uuid?: string;
|
|
21075
|
+
/**
|
|
21076
|
+
* RBAC only
|
|
21077
|
+
*/
|
|
21078
|
+
rbac_only?: boolean;
|
|
21067
21079
|
service_settings_name?: string;
|
|
21068
21080
|
service_settings_uuid?: string;
|
|
21069
21081
|
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|
|
@@ -21912,6 +21924,10 @@ export type OpenstackSubnetsListData = {
|
|
|
21912
21924
|
customer_native_name?: string;
|
|
21913
21925
|
customer_uuid?: string;
|
|
21914
21926
|
description?: string;
|
|
21927
|
+
/**
|
|
21928
|
+
* Direct only
|
|
21929
|
+
*/
|
|
21930
|
+
direct_only?: boolean;
|
|
21915
21931
|
enable_dhcp?: boolean;
|
|
21916
21932
|
external_ip?: string;
|
|
21917
21933
|
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 +21947,10 @@ export type OpenstackSubnetsListData = {
|
|
|
21931
21947
|
project?: string;
|
|
21932
21948
|
project_name?: string;
|
|
21933
21949
|
project_uuid?: string;
|
|
21950
|
+
/**
|
|
21951
|
+
* RBAC only
|
|
21952
|
+
*/
|
|
21953
|
+
rbac_only?: boolean;
|
|
21934
21954
|
service_settings_name?: string;
|
|
21935
21955
|
service_settings_uuid?: string;
|
|
21936
21956
|
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|