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
|
package ec2credentials
import (
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/pagination"
)
// Credential represents the application credential object
type Credential struct {
// UserID contains a User ID of the EC2 credential owner.
UserID string `json:"user_id"`
// TenantID contains an EC2 credential project scope.
TenantID string `json:"tenant_id"`
// Access contains an EC2 credential access UUID.
Access string `json:"access"`
// Secret contains an EC2 credential secret UUID.
Secret string `json:"secret"`
// TrustID contains an EC2 credential trust ID scope.
TrustID string `json:"trust_id"`
// Links contains referencing links to the application credential.
Links map[string]interface{} `json:"links"`
}
type credentialResult struct {
gophercloud.Result
}
// GetResult is the response from a Get operation. Call its Extract method
// to interpret it as an Credential.
type GetResult struct {
credentialResult
}
// CreateResult is the response from a Create operation. Call its Extract method
// to interpret it as an Credential.
type CreateResult struct {
credentialResult
}
// DeleteResult is the response from a Delete operation. Call its ExtractErr to
// determine if the request succeeded or failed.
type DeleteResult struct {
gophercloud.ErrResult
}
// an CredentialPage is a single page of an Credential results.
type CredentialPage struct {
pagination.LinkedPageBase
}
// IsEmpty determines whether or not a an CredentialPage contains any results.
func (r CredentialPage) IsEmpty() (bool, error) {
ec2Credentials, err := ExtractCredentials(r)
return len(ec2Credentials) == 0, err
}
// NextPageURL extracts the "next" link from the links section of the result.
func (r CredentialPage) NextPageURL() (string, error) {
var s struct {
Links struct {
Next string `json:"next"`
Previous string `json:"previous"`
} `json:"links"`
}
err := r.ExtractInto(&s)
if err != nil {
return "", err
}
return s.Links.Next, err
}
// Extractan Credentials returns a slice of Credentials contained in a single page of results.
func ExtractCredentials(r pagination.Page) ([]Credential, error) {
var s struct {
Credentials []Credential `json:"credentials"`
}
err := (r.(CredentialPage)).ExtractInto(&s)
return s.Credentials, err
}
// Extract interprets any Credential results as a Credential.
func (r credentialResult) Extract() (*Credential, error) {
var s struct {
Credential *Credential `json:"credential"`
}
err := r.ExtractInto(&s)
return s.Credential, err
}
|