mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-19 10:46:58 +08:00
59 lines
2.0 KiB
Go
59 lines
2.0 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package compute
|
|
|
|
const (
|
|
// create by
|
|
SNAPSHOT_MANUAL = "manual"
|
|
SNAPSHOT_AUTO = "auto"
|
|
|
|
SNAPSHOT_CREATING = "creating"
|
|
SNAPSHOT_ROLLBACKING = "rollbacking"
|
|
SNAPSHOT_FAILED = "create_failed"
|
|
SNAPSHOT_READY = "ready"
|
|
SNAPSHOT_DELETING = "deleting"
|
|
SNAPSHOT_UNKNOWN = "unknown"
|
|
|
|
SNAPSHOT_POLICY_CREATING = "creating"
|
|
|
|
SNAPSHOT_POLICY_READY = "ready"
|
|
SNAPSHOT_POLICY_UPDATING = "updating"
|
|
SNAPSHOT_POLICY_UNKNOWN = "unknown"
|
|
SNAPSHOT_POLICY_DELETING = "deleting"
|
|
SNAPSHOT_POLICY_DELETE_FAILED = "delete_failed"
|
|
|
|
SNAPSHOT_POLICY_APPLY = "applying"
|
|
SNAPSHOT_POLICY_APPLY_FAILED = "apply_failed"
|
|
SNAPSHOT_POLICY_CANCEL = "canceling"
|
|
SNAPSHOT_POLICY_CANCEL_FAILED = "cancel_failed"
|
|
|
|
SNAPSHOT_POLICY_DISK_INIT = "init"
|
|
SNAPSHOT_POLICY_DISK_READY = "ready"
|
|
SNAPSHOT_POLICY_DISK_DELETING = "deleting"
|
|
SNAPSHOT_POLICY_DISK_DELETE_FAILED = "delete_failed"
|
|
|
|
INSTANCE_SNAPSHOT_READY = "ready"
|
|
INSTANCE_SNAPSHOT_FAILED = "instance_snapshot_create_failed"
|
|
INSTANCE_SNAPSHOT_START_DELETE = "instance_snapshot_start_delete"
|
|
INSTANCE_SNAPSHOT_DELETE_FAILED = "instance_snapshot_delete_failed"
|
|
|
|
SNAPSHOT_POLICY_CACHE_STATUS_READY = "ready"
|
|
SNAPSHOT_POLICY_CACHE_STATUS_DELETING = "deleting"
|
|
SNAPSHOT_POLICY_CACHE_STATUS_DELETE_FAILED = "delete_failed"
|
|
|
|
SNAPSHOT_EXIST = "exist"
|
|
SNAPSHOT_NOT_EXIST = "not_exist"
|
|
)
|