waldur-js-client 8.0.4-dev.5 → 8.0.4-dev.6
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 +3 -3
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -13083,7 +13083,7 @@ export type OpenStackServerGroup = {
|
|
|
13083
13083
|
readonly tenant_name?: string;
|
|
13084
13084
|
readonly tenant_uuid?: string;
|
|
13085
13085
|
/**
|
|
13086
|
-
*
|
|
13086
|
+
* affinity — all instances are placed on the same hypervisor. anti-affinity — all instances are placed on different hypervisors. soft-affinity — instances are placed on the same hypervisor if possible, but not enforced. soft-anti-affinity — instances are placed on different hypervisors if possible, but not enforced.
|
|
13087
13087
|
*/
|
|
13088
13088
|
policy?: PolicyEnum | BlankEnum;
|
|
13089
13089
|
readonly display_name?: string;
|
|
@@ -13105,7 +13105,7 @@ export type OpenStackServerGroupRequest = {
|
|
|
13105
13105
|
name: string;
|
|
13106
13106
|
description?: string;
|
|
13107
13107
|
/**
|
|
13108
|
-
*
|
|
13108
|
+
* affinity — all instances are placed on the same hypervisor. anti-affinity — all instances are placed on different hypervisors. soft-affinity — instances are placed on the same hypervisor if possible, but not enforced. soft-anti-affinity — instances are placed on different hypervisors if possible, but not enforced.
|
|
13109
13109
|
*/
|
|
13110
13110
|
policy?: PolicyEnum | BlankEnum;
|
|
13111
13111
|
};
|
|
@@ -16143,7 +16143,7 @@ export type PluginOfferingType = {
|
|
|
16143
16143
|
components: Array<PluginComponent>;
|
|
16144
16144
|
available_limits: Array<string>;
|
|
16145
16145
|
};
|
|
16146
|
-
export type PolicyEnum = 'affinity';
|
|
16146
|
+
export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
|
|
16147
16147
|
export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
|
|
16148
16148
|
export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
|
|
16149
16149
|
export type PreviewServiceAttributesRequestRequest = {
|