github.com/huaweicloud/golangsdk@v0.0.0-20210831081626-d823fe11ceba/openstack/compute/v2/extensions/lockunlock/results.go (about)

     1  package lockunlock
     2  
     3  import (
     4  	"github.com/huaweicloud/golangsdk"
     5  )
     6  
     7  // LockResult and UnlockResult are the responses from a Lock and Unlock
     8  // operations respectively. Call their ExtractErr methods to determine if the
     9  // requests suceeded or failed.
    10  type LockResult struct {
    11  	golangsdk.ErrResult
    12  }
    13  
    14  type UnlockResult struct {
    15  	golangsdk.ErrResult
    16  }