| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // 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 esxi
- import (
- "fmt"
- "github.com/vmware/govmomi/object"
- "github.com/vmware/govmomi/vim25/methods"
- "github.com/vmware/govmomi/vim25/types"
- "yunion.io/x/pkg/errors"
- api "yunion.io/x/cloudmux/pkg/apis/compute"
- "yunion.io/x/cloudmux/pkg/multicloud"
- )
- type SVirtualMachineSnapshot struct {
- multicloud.SResourceBase
- multicloud.STagBase
- snapshotTree types.VirtualMachineSnapshotTree
- vm *SVirtualMachine
- }
- func NewSnapshot(st types.VirtualMachineSnapshotTree) *SVirtualMachineSnapshot {
- return &SVirtualMachineSnapshot{
- snapshotTree: st,
- }
- }
- func (s *SVirtualMachineSnapshot) GetId() string {
- return moRefId(s.snapshotTree.Snapshot)
- }
- func (s *SVirtualMachineSnapshot) GetName() string {
- return s.snapshotTree.Name
- }
- func (s *SVirtualMachineSnapshot) GetDescription() string {
- return s.snapshotTree.Description
- }
- func (s *SVirtualMachineSnapshot) GetGlobalId() string {
- return fmt.Sprintf("%s-%d", s.vm.GetGlobalId(), s.snapshotTree.Id)
- }
- func (s *SVirtualMachineSnapshot) GetStatus() string {
- return api.INSTANCE_SNAPSHOT_READY
- }
- func (s *SVirtualMachineSnapshot) Refresh() error {
- return nil
- }
- func (s *SVirtualMachineSnapshot) IsEmulated() bool {
- return false
- }
- func (s *SVirtualMachineSnapshot) GetProjectId() string {
- return s.vm.GetProjectId()
- }
- func (s *SVirtualMachineSnapshot) Delete() error {
- cTrue := true
- req := types.RemoveSnapshot_Task{
- This: s.snapshotTree.Snapshot.Reference(),
- RemoveChildren: false,
- Consolidate: &cTrue,
- }
- res, err := methods.RemoveSnapshot_Task(s.vm.manager.context, s.vm.manager.client.Client, &req)
- if err != nil {
- return errors.Wrap(err, "RemoveSnapshot_Task")
- }
- return object.NewTask(s.vm.manager.client.Client, res.Returnval).Wait(s.vm.manager.context)
- }
|