@cycleplatform/api-client-typescript 0.3.14 → 0.3.15
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/package.json +1 -1
- package/src/generated/types.ts +4 -6
package/package.json
CHANGED
package/src/generated/types.ts
CHANGED
|
@@ -15115,13 +15115,11 @@ export interface components {
|
|
|
15115
15115
|
* @enum {string}
|
|
15116
15116
|
*/
|
|
15117
15117
|
action: "volumes.reconfigure";
|
|
15118
|
-
/** @description
|
|
15118
|
+
/** @description A map of volume objects where the key is the id and the value is the volume's config.
|
|
15119
|
+
* */
|
|
15119
15120
|
contents: {
|
|
15120
|
-
|
|
15121
|
-
|
|
15122
|
-
hash: string;
|
|
15123
|
-
config: components["schemas"]["VirtualMachineVolumeConfig"];
|
|
15124
|
-
}[];
|
|
15121
|
+
[key: string]: components["schemas"]["VirtualMachineVolumeConfig"];
|
|
15122
|
+
};
|
|
15125
15123
|
};
|
|
15126
15124
|
/** VirtualMachineTask.yml */
|
|
15127
15125
|
VirtualMachineTask: components["schemas"]["VirtualMachineStartAction"] | components["schemas"]["VirtualMachineStopAction"] | components["schemas"]["VirtualMachineRestartAction"] | components["schemas"]["VirtualMachineReconfigureAction"] | components["schemas"]["VirtualMachineRootPwChangeAction"] | components["schemas"]["VirtualMachineIpAllocateAction"] | components["schemas"]["VirtualMachineIpUnallocateAction"] | components["schemas"]["VirtualMachineReconfigureVolumesAction"];
|