waldur-js-client 1.0.4-dev.34 → 1.0.4-dev.36
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 +6 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3039,8 +3039,8 @@ export type MergedPluginOptions = {
|
|
|
3039
3039
|
*/
|
|
3040
3040
|
openstack_offering_uuid_list?: Array<string>;
|
|
3041
3041
|
managed_rancher_server_flavor_name?: string;
|
|
3042
|
-
|
|
3043
|
-
|
|
3042
|
+
managed_rancher_server_system_volume_size_gb?: number;
|
|
3043
|
+
managed_rancher_server_system_volume_type_name?: string;
|
|
3044
3044
|
/**
|
|
3045
3045
|
* Slurm account name generation policy
|
|
3046
3046
|
*/
|
|
@@ -3156,8 +3156,8 @@ export type MergedPluginOptionsRequest = {
|
|
|
3156
3156
|
*/
|
|
3157
3157
|
openstack_offering_uuid_list?: Array<string>;
|
|
3158
3158
|
managed_rancher_server_flavor_name?: string;
|
|
3159
|
-
|
|
3160
|
-
|
|
3159
|
+
managed_rancher_server_system_volume_size_gb?: number;
|
|
3160
|
+
managed_rancher_server_system_volume_type_name?: string;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* Slurm account name generation policy
|
|
3163
3163
|
*/
|
|
@@ -8074,7 +8074,7 @@ export type RobotAccount = {
|
|
|
8074
8074
|
readonly backend_id: string;
|
|
8075
8075
|
responsible_user?: string | null;
|
|
8076
8076
|
readonly fingerprints: Array<Fingerprint>;
|
|
8077
|
-
readonly state: string;
|
|
8077
|
+
readonly state: string | null;
|
|
8078
8078
|
readonly error_message: string;
|
|
8079
8079
|
readonly error_traceback: string;
|
|
8080
8080
|
};
|
|
@@ -8091,7 +8091,7 @@ export type RobotAccountDetails = {
|
|
|
8091
8091
|
readonly backend_id: string;
|
|
8092
8092
|
responsible_user: BasicUser | null;
|
|
8093
8093
|
readonly fingerprints: Array<Fingerprint>;
|
|
8094
|
-
readonly state: string;
|
|
8094
|
+
readonly state: string | null;
|
|
8095
8095
|
readonly error_message: string;
|
|
8096
8096
|
readonly error_traceback: string;
|
|
8097
8097
|
readonly user_keys: Array<SshKey>;
|