1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
package accept
import (
"encoding/json"
"time"
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/pagination"
)
type commonResult struct {
gophercloud.Result
}
// Extract interprets a GetResult, CreateResult as a TransferAccept.
// An error is returned if the original call or the extraction failed.
func (r commonResult) Extract() (*TransferAccept, error) {
var s *TransferAccept
err := r.ExtractInto(&s)
return s, err
}
// CreateResult is the result of a Create request. Call its Extract method
// to interpret the result as a TransferAccept.
type CreateResult struct {
commonResult
}
// GetResult is the result of a Get request. Call its Extract method
// to interpret the result as a TransferAccept.
type GetResult struct {
commonResult
}
// TransferAcceptPage is a single page of TransferAccept results.
type TransferAcceptPage struct {
pagination.LinkedPageBase
}
// IsEmpty returns true if the page contains no results.
func (r TransferAcceptPage) IsEmpty() (bool, error) {
if r.StatusCode == 204 {
return true, nil
}
s, err := ExtractTransferAccepts(r)
return len(s) == 0, err
}
// ExtractTransferAccepts extracts a slice of TransferAccept from a List result.
func ExtractTransferAccepts(r pagination.Page) ([]TransferAccept, error) {
var s struct {
TransferAccepts []TransferAccept `json:"transfer_accepts"`
}
err := (r.(TransferAcceptPage)).ExtractInto(&s)
return s.TransferAccepts, err
}
// TransferAccept represents a Zone transfer accept task.
type TransferAccept struct {
// ID for this zone transfer accept.
ID string `json:"id"`
// Status is current status of the zone transfer request.
Status string `json:"status"`
// ProjectID identifies the project/tenant owning this resource.
ProjectID string `json:"project_id"`
// ZoneID is the ID for the zone that was being exported.
ZoneID string `json:"zone_id"`
// Key is used as part of the zone transfer accept process.
// This is only shown to the creator, and must be communicated out of band.
Key string `json:"key"`
// ZoneTransferRequestID is ID for this zone transfer request
ZoneTransferRequestID string `json:"zone_transfer_request_id"`
// CreatedAt is the date when the zone transfer accept was created.
CreatedAt time.Time `json:"-"`
// UpdatedAt is the date when the last change was made to the zone transfer accept.
UpdatedAt time.Time `json:"-"`
// Links includes HTTP references to the itself, useful for passing along
// to other APIs that might want a server reference.
Links map[string]interface{} `json:"links"`
}
func (r *TransferAccept) UnmarshalJSON(b []byte) error {
type tmp TransferAccept
var s struct {
tmp
CreatedAt gophercloud.JSONRFC3339MilliNoZ `json:"created_at"`
UpdatedAt gophercloud.JSONRFC3339MilliNoZ `json:"updated_at"`
}
err := json.Unmarshal(b, &s)
if err != nil {
return err
}
*r = TransferAccept(s.tmp)
r.CreatedAt = time.Time(s.CreatedAt)
r.UpdatedAt = time.Time(s.UpdatedAt)
return err
}
|