@daocloud-proto/zestu 0.4.0-dev-ef6ec62f → 0.4.0-dev-39c59771
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
CHANGED
|
@@ -93,8 +93,14 @@ export type ContainerInstance = {
|
|
|
93
93
|
instanceSpec?: InstanceSpec
|
|
94
94
|
regionId?: string
|
|
95
95
|
networks?: ContainerInstanceNetwork[]
|
|
96
|
-
ssh?: SSHInfo
|
|
97
96
|
saveImage?: SaveImage
|
|
97
|
+
ssh?: SSHInfo
|
|
98
|
+
schedule?: Schedule
|
|
99
|
+
serviceEnable?: ServiceEnable
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export type Schedule = {
|
|
103
|
+
shutdownTime?: string
|
|
98
104
|
}
|
|
99
105
|
|
|
100
106
|
export type SaveImage = {
|
|
@@ -123,6 +129,7 @@ export type CreateContainerInstanceRequest = {
|
|
|
123
129
|
packageSource?: PackageSource
|
|
124
130
|
volumeSpec?: VolumeSpec[]
|
|
125
131
|
sshKeyLoginEnable?: boolean
|
|
132
|
+
schedule?: Schedule
|
|
126
133
|
}
|
|
127
134
|
|
|
128
135
|
export type Image = {
|
|
@@ -224,6 +231,7 @@ export type UpdateContainerInstanceRequest = {
|
|
|
224
231
|
instanceId?: string
|
|
225
232
|
regionId?: string
|
|
226
233
|
image?: Image
|
|
234
|
+
schedule?: Schedule
|
|
227
235
|
}
|
|
228
236
|
|
|
229
237
|
export type UpdateContainerInstanceResponse = {
|