Documentation ¶
Index ¶
- func List(c *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager
- func Resize(client *gophercloud.ServiceClient, serverId string, opts ResizeOpts) (jobId string, err error)
- type Flavor
- type FlavorsPage
- type Job
- type Link
- type ListOpts
- type ListOptsBuilder
- type OsExtraSpecs
- type ResizeOpts
- type ResizeResult
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func List ¶
func List(c *gophercloud.ServiceClient, opts ListOptsBuilder) pagination.Pager
List returns a Pager which allows you to iterate over a collection of flavors.
func Resize ¶
func Resize(client *gophercloud.ServiceClient, serverId string, opts ResizeOpts) (jobId string, err error)
Resize is an operation which modifying the specifications of an ecs.
Types ¶
type Flavor ¶
type Flavor struct { // Specifies the ID of ECS specifications. ID string `json:"id"` // Specifies the name of the ECS specifications. Name string `json:"name"` // Specifies the number of CPU cores in the ECS specifications. Vcpus string `json:"vcpus"` // Specifies the memory size (MB) in the ECS specifications. Ram int64 `json:"ram"` // Specifies the system disk size in the ECS specifications. // The value 0 indicates that the disk size is not limited. Disk string `json:"disk"` // Specifies shortcut links for ECS flavors. Links []Link `json:"links"` // Specifies extended ECS specifications. OsExtraSpecs OsExtraSpecs `json:"os_extra_specs"` // Reserved Swap string `json:"swap"` // Reserved FlvEphemeral int64 `json:"OS-FLV-EXT-DATA:ephemeral"` // Reserved FlvDisabled bool `json:"OS-FLV-DISABLED:disabled"` // Reserved RxtxFactor int64 `json:"rxtx_factor"` // Reserved RxtxQuota string `json:"rxtx_quota"` // Reserved RxtxCap string `json:"rxtx_cap"` // Reserved AccessIsPublic bool `json:"os-flavor-access:is_public"` }
func ExtractFlavors ¶
func ExtractFlavors(r pagination.Page) ([]Flavor, error)
ExtractFlavors accepts a Page struct, specifically a FlavorsPage struct, and extracts the elements into a slice of flavor structs. In other words, a generic collection is mapped into a relevant slice.
type FlavorsPage ¶
type FlavorsPage struct {
pagination.LinkedPageBase
}
FlavorsPage is the page returned by a pager when traversing over a collection of flavor.
func (FlavorsPage) IsEmpty ¶
func (r FlavorsPage) IsEmpty() (bool, error)
IsEmpty checks whether a FlavorsPage struct is empty.
type ListOpts ¶
type ListOpts struct { // Specifies the AZ name. AvailabilityZone string `q:"availability_zone"` }
ListOpts allows the filtering and sorting of paginated collections through the API.
func (ListOpts) ToFlavorListMap ¶
ToFlavorListMap formats a ListOpts into a query string.
type ListOptsBuilder ¶
ListOptsBuilder allows extensions to add additional parameters to the List request.
type OsExtraSpecs ¶
type OsExtraSpecs struct { // Specifies the ECS specifications types PerformanceType string `json:"ecs:performancetype"` // Specifies the resource type. ResourceType string `json:"resource_type"` // Specifies the generation of an ECS type Generation string `json:"ecs:generation"` // Specifies a virtualization type VirtualizationEnvTypes string `json:"ecs:virtualization_env_types"` // Indicates whether the GPU is passthrough. PciPassthroughEnableGpu string `json:"pci_passthrough:enable_gpu"` // Indicates the technology used on the G1 and G2 ECSs, // including GPU virtualization and GPU passthrough. PciPassthroughGpuSpecs string `json:"pci_passthrough:gpu_specs"` // Indicates the model and quantity of passthrough-enabled GPUs on P1 ECSs. PciPassthroughAlias string `json:"pci_passthrough:alias"` }
type ResizeOpts ¶
type ResizeOpts struct { // Specifies the specifications ID of the ECS after the modification. FlavorRef string `json:"flavorRef" required:"true"` // Specifies the new DeH ID, which is applicable only to the ECSs on DeHs. DedicatedHostId string `json:"dedicated_host_id,omitempty"` }
ResizeOpts represents options for modifying the specifications of an ecs.
func (ResizeOpts) ToResizeOptsMap ¶
func (opts ResizeOpts) ToResizeOptsMap() (map[string]interface{}, error)
ToResizeOptsMap builds a request body from ResizeOpts.
type ResizeResult ¶
type ResizeResult struct {
// contains filtered or unexported fields
}
ResizeResult represents the result of a create operation. Call its ExtractJob method to interpret it as a Job.
func (ResizeResult) ExtractJob ¶
func (r ResizeResult) ExtractJob() (Job, error)
ExtractJob is a function that accepts a result and extracts a Job.