waldur-js-client 7.9.9-dev.0 → 7.9.9-dev.1
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 +34 -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
|
};
|
|
@@ -11498,6 +11499,7 @@ export type OptionField = {
|
|
|
11498
11499
|
max?: number;
|
|
11499
11500
|
cascade_config?: CascadeConfig;
|
|
11500
11501
|
component_multiplier_config?: ComponentMultiplierConfig;
|
|
11502
|
+
storage_folder_config?: StorageFolderConfig;
|
|
11501
11503
|
default_configs?: K8sDefaultConfiguration;
|
|
11502
11504
|
};
|
|
11503
11505
|
export type OptionFieldRequest = {
|
|
@@ -11511,9 +11513,10 @@ export type OptionFieldRequest = {
|
|
|
11511
11513
|
max?: number;
|
|
11512
11514
|
cascade_config?: CascadeConfigRequest;
|
|
11513
11515
|
component_multiplier_config?: ComponentMultiplierConfigRequest;
|
|
11516
|
+
storage_folder_config?: StorageFolderConfigRequest;
|
|
11514
11517
|
default_configs?: K8sDefaultConfigurationRequest;
|
|
11515
11518
|
};
|
|
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';
|
|
11519
|
+
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
11520
|
export type OrcidCallbackRequest = {
|
|
11518
11521
|
/**
|
|
11519
11522
|
* Authorization code from ORCID OAuth callback
|
|
@@ -18788,6 +18791,36 @@ export type StateTransitionError = {
|
|
|
18788
18791
|
*/
|
|
18789
18792
|
detail: string;
|
|
18790
18793
|
};
|
|
18794
|
+
export type StorageDataType = {
|
|
18795
|
+
key: string;
|
|
18796
|
+
label: string;
|
|
18797
|
+
};
|
|
18798
|
+
export type StorageDataTypeRequest = {
|
|
18799
|
+
key: string;
|
|
18800
|
+
label: string;
|
|
18801
|
+
};
|
|
18802
|
+
export type StorageFolderConfig = {
|
|
18803
|
+
component_type: string;
|
|
18804
|
+
default_hard_quota_multiplier?: number;
|
|
18805
|
+
inode_soft_multiplier?: number;
|
|
18806
|
+
inode_hard_multiplier?: number;
|
|
18807
|
+
storage_data_types: Array<StorageDataType>;
|
|
18808
|
+
/**
|
|
18809
|
+
* Default permission to auto-select
|
|
18810
|
+
*/
|
|
18811
|
+
default_permission?: DefaultPermissionEnum;
|
|
18812
|
+
};
|
|
18813
|
+
export type StorageFolderConfigRequest = {
|
|
18814
|
+
component_type: string;
|
|
18815
|
+
default_hard_quota_multiplier?: number;
|
|
18816
|
+
inode_soft_multiplier?: number;
|
|
18817
|
+
inode_hard_multiplier?: number;
|
|
18818
|
+
storage_data_types: Array<StorageDataTypeRequest>;
|
|
18819
|
+
/**
|
|
18820
|
+
* Default permission to auto-select
|
|
18821
|
+
*/
|
|
18822
|
+
default_permission?: DefaultPermissionEnum;
|
|
18823
|
+
};
|
|
18791
18824
|
export type StorageModeEnum = 'fixed' | 'dynamic';
|
|
18792
18825
|
export type SubNetMapping = {
|
|
18793
18826
|
src_cidr: string;
|