Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Configurations ¶
type JobResponse ¶
type JobResult ¶
func Update ¶
func Update(c *golangsdk.ServiceClient, instanceId string, opts UpdateParametersOpts) (r JobResult)
func (JobResult) ExtractJobResponse ¶
func (r JobResult) ExtractJobResponse() (*JobResponse, error)
type ListParametersResponse ¶
type ListParametersResponse struct { Configurations Configurations `json:"configurations"` ParameterValues []ParameterValue `json:"parameter_values"` TotalCount int `json:"total_count"` }
func ExtractParameters ¶
func ExtractParameters(r pagination.Page) (ListParametersResponse, error)
type ParameterPage ¶
type ParameterPage struct {
pagination.OffsetPageBase
}
func (ParameterPage) IsEmpty ¶
func (r ParameterPage) IsEmpty() (bool, error)
type ParameterValue ¶
type ParameterValue struct { // the parameter name Name string `json:"name"` // the parameter value Value string `json:"value"` // whether the instance need restart RestartRequired bool `json:"restart_required"` // whether the parameter is readonly Readonly bool `json:"readonly"` // the parameter value range ValueRange string `json:"value_range"` // the parameter type Type string `json:"type"` // the description Description string `json:"description"` }
func List ¶
func List(client *golangsdk.ServiceClient, instanceId string) ([]ParameterValue, error)
type UpdateParametersOpts ¶
Click to show internal directories.
Click to hide internal directories.