Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetResult ¶
type GetResult struct {
// contains filtered or unexported fields
}
GetResult contains the response body and error from a Get request.
func Get ¶
func Get(client *gophercloud.ServiceClient, id string) (r GetResult)
func GetServerDetail ¶
func GetServerDetail(client *gophercloud.ServiceClient, id string) (r GetResult)
type ListOpts ¶
type ListOpts struct { // The UUID of the project where the share network was created ProjectID string `q:"project_id"` // The export Location id ExportLocationID string `q:"export_location_id"` // The export Location path ExportLocationPath string `q:"export_location_path"` }
ListOpts holds options for listing ShareInstances. It is passed to the shareInstances.List function.
func (ListOpts) ToShareInstancesListQuery ¶
ToShareInstancesListQuery formats a ListOpts into a query string.
type ListResult ¶
type ListResult struct {
// contains filtered or unexported fields
}
ListResult contains the response body and error from a Get request.
func List ¶
func List(client *gophercloud.ServiceClient, opts *ListOpts) (r ListResult)
List returns ShareInstances optionally limited by the conditions provided in ListOpts.
type ShareInstances ¶
type ShareInstances struct { string `json:"id"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }ID
ShareInstances contains all the information associated with an OpenStack
type ShareInstancesPage ¶
type ShareInstancesPage struct {
}ShareInstancesPage is a pagination.pager that is returned from a call to the List function.
Click to show internal directories.
Click to hide internal directories.