waldur-js-client 7.9.9-dev.0 → 7.9.9-dev.2
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 +43 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4453,6 +4453,7 @@ export type DeadLetterQueue = {
|
|
|
4453
4453
|
readonly note: string;
|
|
4454
4454
|
};
|
|
4455
4455
|
export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
|
|
4456
|
+
export type DefaultPermissionEnum = '2770' | '2775' | '2777' | '770' | '775' | '777';
|
|
4456
4457
|
export type DeleteAttachmentsRequest = {
|
|
4457
4458
|
attachment_ids: Array<string>;
|
|
4458
4459
|
};
|
|
@@ -10181,6 +10182,7 @@ export type OpenStackImage = {
|
|
|
10181
10182
|
min_ram?: number;
|
|
10182
10183
|
settings: string;
|
|
10183
10184
|
backend_id: string;
|
|
10185
|
+
backend_created_at?: string | null;
|
|
10184
10186
|
};
|
|
10185
10187
|
export type OpenStackInstance = {
|
|
10186
10188
|
readonly url?: string;
|
|
@@ -11498,6 +11500,7 @@ export type OptionField = {
|
|
|
11498
11500
|
max?: number;
|
|
11499
11501
|
cascade_config?: CascadeConfig;
|
|
11500
11502
|
component_multiplier_config?: ComponentMultiplierConfig;
|
|
11503
|
+
storage_folder_config?: StorageFolderConfig;
|
|
11501
11504
|
default_configs?: K8sDefaultConfiguration;
|
|
11502
11505
|
};
|
|
11503
11506
|
export type OptionFieldRequest = {
|
|
@@ -11511,9 +11514,10 @@ export type OptionFieldRequest = {
|
|
|
11511
11514
|
max?: number;
|
|
11512
11515
|
cascade_config?: CascadeConfigRequest;
|
|
11513
11516
|
component_multiplier_config?: ComponentMultiplierConfigRequest;
|
|
11517
|
+
storage_folder_config?: StorageFolderConfigRequest;
|
|
11514
11518
|
default_configs?: K8sDefaultConfigurationRequest;
|
|
11515
11519
|
};
|
|
11516
|
-
export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config';
|
|
11520
|
+
export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config' | 'storage_folder_manager';
|
|
11517
11521
|
export type OrcidCallbackRequest = {
|
|
11518
11522
|
/**
|
|
11519
11523
|
* Authorization code from ORCID OAuth callback
|
|
@@ -18788,6 +18792,36 @@ export type StateTransitionError = {
|
|
|
18788
18792
|
*/
|
|
18789
18793
|
detail: string;
|
|
18790
18794
|
};
|
|
18795
|
+
export type StorageDataType = {
|
|
18796
|
+
key: string;
|
|
18797
|
+
label: string;
|
|
18798
|
+
};
|
|
18799
|
+
export type StorageDataTypeRequest = {
|
|
18800
|
+
key: string;
|
|
18801
|
+
label: string;
|
|
18802
|
+
};
|
|
18803
|
+
export type StorageFolderConfig = {
|
|
18804
|
+
component_type: string;
|
|
18805
|
+
default_hard_quota_multiplier?: number;
|
|
18806
|
+
inode_soft_multiplier?: number;
|
|
18807
|
+
inode_hard_multiplier?: number;
|
|
18808
|
+
storage_data_types: Array<StorageDataType>;
|
|
18809
|
+
/**
|
|
18810
|
+
* Default permission to auto-select
|
|
18811
|
+
*/
|
|
18812
|
+
default_permission?: DefaultPermissionEnum;
|
|
18813
|
+
};
|
|
18814
|
+
export type StorageFolderConfigRequest = {
|
|
18815
|
+
component_type: string;
|
|
18816
|
+
default_hard_quota_multiplier?: number;
|
|
18817
|
+
inode_soft_multiplier?: number;
|
|
18818
|
+
inode_hard_multiplier?: number;
|
|
18819
|
+
storage_data_types: Array<StorageDataTypeRequest>;
|
|
18820
|
+
/**
|
|
18821
|
+
* Default permission to auto-select
|
|
18822
|
+
*/
|
|
18823
|
+
default_permission?: DefaultPermissionEnum;
|
|
18824
|
+
};
|
|
18791
18825
|
export type StorageModeEnum = 'fixed' | 'dynamic';
|
|
18792
18826
|
export type SubNetMapping = {
|
|
18793
18827
|
src_cidr: string;
|
|
@@ -49627,6 +49661,10 @@ export type OpenstackImagesListData = {
|
|
|
49627
49661
|
* Settings UUID
|
|
49628
49662
|
*/
|
|
49629
49663
|
settings_uuid?: string;
|
|
49664
|
+
/**
|
|
49665
|
+
* Show duplicate image names
|
|
49666
|
+
*/
|
|
49667
|
+
show_duplicate_names?: boolean;
|
|
49630
49668
|
/**
|
|
49631
49669
|
* Tenant URL
|
|
49632
49670
|
*/
|
|
@@ -49674,6 +49712,10 @@ export type OpenstackImagesCountData = {
|
|
|
49674
49712
|
* Settings UUID
|
|
49675
49713
|
*/
|
|
49676
49714
|
settings_uuid?: string;
|
|
49715
|
+
/**
|
|
49716
|
+
* Show duplicate image names
|
|
49717
|
+
*/
|
|
49718
|
+
show_duplicate_names?: boolean;
|
|
49677
49719
|
/**
|
|
49678
49720
|
* Tenant URL
|
|
49679
49721
|
*/
|