Documentation ¶
Index ¶
- Constants
- type AdminInfo
- type AdminInfoDefault
- func (o *AdminInfoDefault) SetPayload(payload *models.APIError)
- func (o *AdminInfoDefault) SetStatusCode(code int)
- func (o *AdminInfoDefault) WithPayload(payload *models.APIError) *AdminInfoDefault
- func (o *AdminInfoDefault) WithStatusCode(code int) *AdminInfoDefault
- func (o *AdminInfoDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
- type AdminInfoHandler
- type AdminInfoHandlerFunc
- type AdminInfoOK
- type AdminInfoParams
- type AdminInfoURL
- func (o *AdminInfoURL) Build() (*url.URL, error)
- func (o *AdminInfoURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *AdminInfoURL) Must(u *url.URL, err error) *url.URL
- func (o *AdminInfoURL) SetBasePath(bp string)
- func (o *AdminInfoURL) String() string
- func (o *AdminInfoURL) StringFull(scheme, host string) string
- func (o *AdminInfoURL) WithBasePath(bp string) *AdminInfoURL
- type ArnList
- type ArnListDefault
- func (o *ArnListDefault) SetPayload(payload *models.APIError)
- func (o *ArnListDefault) SetStatusCode(code int)
- func (o *ArnListDefault) WithPayload(payload *models.APIError) *ArnListDefault
- func (o *ArnListDefault) WithStatusCode(code int) *ArnListDefault
- func (o *ArnListDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
- type ArnListHandler
- type ArnListHandlerFunc
- type ArnListOK
- type ArnListParams
- type ArnListURL
- func (o *ArnListURL) Build() (*url.URL, error)
- func (o *ArnListURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *ArnListURL) Must(u *url.URL, err error) *url.URL
- func (o *ArnListURL) SetBasePath(bp string)
- func (o *ArnListURL) String() string
- func (o *ArnListURL) StringFull(scheme, host string) string
- func (o *ArnListURL) WithBasePath(bp string) *ArnListURL
- type DashboardWidgetDetails
- type DashboardWidgetDetailsDefault
- func (o *DashboardWidgetDetailsDefault) SetPayload(payload *models.APIError)
- func (o *DashboardWidgetDetailsDefault) SetStatusCode(code int)
- func (o *DashboardWidgetDetailsDefault) WithPayload(payload *models.APIError) *DashboardWidgetDetailsDefault
- func (o *DashboardWidgetDetailsDefault) WithStatusCode(code int) *DashboardWidgetDetailsDefault
- func (o *DashboardWidgetDetailsDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
- type DashboardWidgetDetailsHandler
- type DashboardWidgetDetailsHandlerFunc
- type DashboardWidgetDetailsOK
- type DashboardWidgetDetailsParams
- type DashboardWidgetDetailsURL
- func (o *DashboardWidgetDetailsURL) Build() (*url.URL, error)
- func (o *DashboardWidgetDetailsURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *DashboardWidgetDetailsURL) Must(u *url.URL, err error) *url.URL
- func (o *DashboardWidgetDetailsURL) SetBasePath(bp string)
- func (o *DashboardWidgetDetailsURL) String() string
- func (o *DashboardWidgetDetailsURL) StringFull(scheme, host string) string
- func (o *DashboardWidgetDetailsURL) WithBasePath(bp string) *DashboardWidgetDetailsURL
- type ListNodes
- type ListNodesDefault
- func (o *ListNodesDefault) SetPayload(payload *models.APIError)
- func (o *ListNodesDefault) SetStatusCode(code int)
- func (o *ListNodesDefault) WithPayload(payload *models.APIError) *ListNodesDefault
- func (o *ListNodesDefault) WithStatusCode(code int) *ListNodesDefault
- func (o *ListNodesDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
- type ListNodesHandler
- type ListNodesHandlerFunc
- type ListNodesOK
- type ListNodesParams
- type ListNodesURL
- func (o *ListNodesURL) Build() (*url.URL, error)
- func (o *ListNodesURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *ListNodesURL) Must(u *url.URL, err error) *url.URL
- func (o *ListNodesURL) SetBasePath(bp string)
- func (o *ListNodesURL) String() string
- func (o *ListNodesURL) StringFull(scheme, host string) string
- func (o *ListNodesURL) WithBasePath(bp string) *ListNodesURL
Constants ¶
const AdminInfoOKCode int = 200
AdminInfoOKCode is the HTTP code returned for type AdminInfoOK
const ArnListOKCode int = 200
ArnListOKCode is the HTTP code returned for type ArnListOK
const DashboardWidgetDetailsOKCode int = 200
DashboardWidgetDetailsOKCode is the HTTP code returned for type DashboardWidgetDetailsOK
const ListNodesOKCode int = 200
ListNodesOKCode is the HTTP code returned for type ListNodesOK
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdminInfo ¶
type AdminInfo struct { Context *middleware.Context Handler AdminInfoHandler }
AdminInfo swagger:route GET /admin/info System adminInfo
Returns information about the deployment
func NewAdminInfo ¶
func NewAdminInfo(ctx *middleware.Context, handler AdminInfoHandler) *AdminInfo
NewAdminInfo creates a new http.Handler for the admin info operation
type AdminInfoDefault ¶
type AdminInfoDefault struct { /* In: Body */ Payload *models.APIError `json:"body,omitempty"` // contains filtered or unexported fields }
AdminInfoDefault Generic error response.
swagger:response adminInfoDefault
func NewAdminInfoDefault ¶
func NewAdminInfoDefault(code int) *AdminInfoDefault
NewAdminInfoDefault creates AdminInfoDefault with default headers values
func (*AdminInfoDefault) SetPayload ¶
func (o *AdminInfoDefault) SetPayload(payload *models.APIError)
SetPayload sets the payload to the admin info default response
func (*AdminInfoDefault) SetStatusCode ¶
func (o *AdminInfoDefault) SetStatusCode(code int)
SetStatusCode sets the status to the admin info default response
func (*AdminInfoDefault) WithPayload ¶
func (o *AdminInfoDefault) WithPayload(payload *models.APIError) *AdminInfoDefault
WithPayload adds the payload to the admin info default response
func (*AdminInfoDefault) WithStatusCode ¶
func (o *AdminInfoDefault) WithStatusCode(code int) *AdminInfoDefault
WithStatusCode adds the status to the admin info default response
func (*AdminInfoDefault) WriteResponse ¶
func (o *AdminInfoDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type AdminInfoHandler ¶
type AdminInfoHandler interface {
Handle(AdminInfoParams, *models.Principal) middleware.Responder
}
AdminInfoHandler interface for that can handle valid admin info params
type AdminInfoHandlerFunc ¶
type AdminInfoHandlerFunc func(AdminInfoParams, *models.Principal) middleware.Responder
AdminInfoHandlerFunc turns a function with the right signature into a admin info handler
func (AdminInfoHandlerFunc) Handle ¶
func (fn AdminInfoHandlerFunc) Handle(params AdminInfoParams, principal *models.Principal) middleware.Responder
Handle executing the request and returning a response
type AdminInfoOK ¶
type AdminInfoOK struct { /* In: Body */ Payload *models.AdminInfoResponse `json:"body,omitempty"` }
AdminInfoOK A successful response.
swagger:response adminInfoOK
func NewAdminInfoOK ¶
func NewAdminInfoOK() *AdminInfoOK
NewAdminInfoOK creates AdminInfoOK with default headers values
func (*AdminInfoOK) SetPayload ¶
func (o *AdminInfoOK) SetPayload(payload *models.AdminInfoResponse)
SetPayload sets the payload to the admin info o k response
func (*AdminInfoOK) WithPayload ¶
func (o *AdminInfoOK) WithPayload(payload *models.AdminInfoResponse) *AdminInfoOK
WithPayload adds the payload to the admin info o k response
func (*AdminInfoOK) WriteResponse ¶
func (o *AdminInfoOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type AdminInfoParams ¶
type AdminInfoParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /* In: query Default: false */ DefaultOnly *bool }
AdminInfoParams contains all the bound params for the admin info operation typically these are obtained from a http.Request
swagger:parameters AdminInfo
func NewAdminInfoParams ¶
func NewAdminInfoParams() AdminInfoParams
NewAdminInfoParams creates a new AdminInfoParams object with the default values initialized.
func (*AdminInfoParams) BindRequest ¶
func (o *AdminInfoParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.
To ensure default values, the struct must have been initialized with NewAdminInfoParams() beforehand.
type AdminInfoURL ¶
type AdminInfoURL struct { DefaultOnly *bool // contains filtered or unexported fields }
AdminInfoURL generates an URL for the admin info operation
func (*AdminInfoURL) Build ¶
func (o *AdminInfoURL) Build() (*url.URL, error)
Build a url path and query string
func (*AdminInfoURL) BuildFull ¶
func (o *AdminInfoURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*AdminInfoURL) Must ¶
Must is a helper function to panic when the url builder returns an error
func (*AdminInfoURL) SetBasePath ¶
func (o *AdminInfoURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (*AdminInfoURL) String ¶
func (o *AdminInfoURL) String() string
String returns the string representation of the path with query string
func (*AdminInfoURL) StringFull ¶
func (o *AdminInfoURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*AdminInfoURL) WithBasePath ¶
func (o *AdminInfoURL) WithBasePath(bp string) *AdminInfoURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
type ArnList ¶
type ArnList struct { Context *middleware.Context Handler ArnListHandler }
ArnList swagger:route GET /admin/arns System arnList
Returns a list of active ARNs in the instance
func NewArnList ¶
func NewArnList(ctx *middleware.Context, handler ArnListHandler) *ArnList
NewArnList creates a new http.Handler for the arn list operation
type ArnListDefault ¶
type ArnListDefault struct { /* In: Body */ Payload *models.APIError `json:"body,omitempty"` // contains filtered or unexported fields }
ArnListDefault Generic error response.
swagger:response arnListDefault
func NewArnListDefault ¶
func NewArnListDefault(code int) *ArnListDefault
NewArnListDefault creates ArnListDefault with default headers values
func (*ArnListDefault) SetPayload ¶
func (o *ArnListDefault) SetPayload(payload *models.APIError)
SetPayload sets the payload to the arn list default response
func (*ArnListDefault) SetStatusCode ¶
func (o *ArnListDefault) SetStatusCode(code int)
SetStatusCode sets the status to the arn list default response
func (*ArnListDefault) WithPayload ¶
func (o *ArnListDefault) WithPayload(payload *models.APIError) *ArnListDefault
WithPayload adds the payload to the arn list default response
func (*ArnListDefault) WithStatusCode ¶
func (o *ArnListDefault) WithStatusCode(code int) *ArnListDefault
WithStatusCode adds the status to the arn list default response
func (*ArnListDefault) WriteResponse ¶
func (o *ArnListDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type ArnListHandler ¶
type ArnListHandler interface {
Handle(ArnListParams, *models.Principal) middleware.Responder
}
ArnListHandler interface for that can handle valid arn list params
type ArnListHandlerFunc ¶
type ArnListHandlerFunc func(ArnListParams, *models.Principal) middleware.Responder
ArnListHandlerFunc turns a function with the right signature into a arn list handler
func (ArnListHandlerFunc) Handle ¶
func (fn ArnListHandlerFunc) Handle(params ArnListParams, principal *models.Principal) middleware.Responder
Handle executing the request and returning a response
type ArnListOK ¶
type ArnListOK struct { /* In: Body */ Payload *models.ArnsResponse `json:"body,omitempty"` }
ArnListOK A successful response.
swagger:response arnListOK
func NewArnListOK ¶
func NewArnListOK() *ArnListOK
NewArnListOK creates ArnListOK with default headers values
func (*ArnListOK) SetPayload ¶
func (o *ArnListOK) SetPayload(payload *models.ArnsResponse)
SetPayload sets the payload to the arn list o k response
func (*ArnListOK) WithPayload ¶
func (o *ArnListOK) WithPayload(payload *models.ArnsResponse) *ArnListOK
WithPayload adds the payload to the arn list o k response
func (*ArnListOK) WriteResponse ¶
func (o *ArnListOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type ArnListParams ¶
ArnListParams contains all the bound params for the arn list operation typically these are obtained from a http.Request
swagger:parameters ArnList
func NewArnListParams ¶
func NewArnListParams() ArnListParams
NewArnListParams creates a new ArnListParams object
There are no default values defined in the spec.
func (*ArnListParams) BindRequest ¶
func (o *ArnListParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.
To ensure default values, the struct must have been initialized with NewArnListParams() beforehand.
type ArnListURL ¶
type ArnListURL struct {
// contains filtered or unexported fields
}
ArnListURL generates an URL for the arn list operation
func (*ArnListURL) Build ¶
func (o *ArnListURL) Build() (*url.URL, error)
Build a url path and query string
func (*ArnListURL) BuildFull ¶
func (o *ArnListURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*ArnListURL) SetBasePath ¶
func (o *ArnListURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (*ArnListURL) String ¶
func (o *ArnListURL) String() string
String returns the string representation of the path with query string
func (*ArnListURL) StringFull ¶
func (o *ArnListURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*ArnListURL) WithBasePath ¶
func (o *ArnListURL) WithBasePath(bp string) *ArnListURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
type DashboardWidgetDetails ¶
type DashboardWidgetDetails struct { Context *middleware.Context Handler DashboardWidgetDetailsHandler }
DashboardWidgetDetails swagger:route GET /admin/info/widgets/{widgetId} System dashboardWidgetDetails
Returns information about the deployment
func NewDashboardWidgetDetails ¶
func NewDashboardWidgetDetails(ctx *middleware.Context, handler DashboardWidgetDetailsHandler) *DashboardWidgetDetails
NewDashboardWidgetDetails creates a new http.Handler for the dashboard widget details operation
func (*DashboardWidgetDetails) ServeHTTP ¶
func (o *DashboardWidgetDetails) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type DashboardWidgetDetailsDefault ¶
type DashboardWidgetDetailsDefault struct { /* In: Body */ Payload *models.APIError `json:"body,omitempty"` // contains filtered or unexported fields }
DashboardWidgetDetailsDefault Generic error response.
swagger:response dashboardWidgetDetailsDefault
func NewDashboardWidgetDetailsDefault ¶
func NewDashboardWidgetDetailsDefault(code int) *DashboardWidgetDetailsDefault
NewDashboardWidgetDetailsDefault creates DashboardWidgetDetailsDefault with default headers values
func (*DashboardWidgetDetailsDefault) SetPayload ¶
func (o *DashboardWidgetDetailsDefault) SetPayload(payload *models.APIError)
SetPayload sets the payload to the dashboard widget details default response
func (*DashboardWidgetDetailsDefault) SetStatusCode ¶
func (o *DashboardWidgetDetailsDefault) SetStatusCode(code int)
SetStatusCode sets the status to the dashboard widget details default response
func (*DashboardWidgetDetailsDefault) WithPayload ¶
func (o *DashboardWidgetDetailsDefault) WithPayload(payload *models.APIError) *DashboardWidgetDetailsDefault
WithPayload adds the payload to the dashboard widget details default response
func (*DashboardWidgetDetailsDefault) WithStatusCode ¶
func (o *DashboardWidgetDetailsDefault) WithStatusCode(code int) *DashboardWidgetDetailsDefault
WithStatusCode adds the status to the dashboard widget details default response
func (*DashboardWidgetDetailsDefault) WriteResponse ¶
func (o *DashboardWidgetDetailsDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type DashboardWidgetDetailsHandler ¶
type DashboardWidgetDetailsHandler interface {
Handle(DashboardWidgetDetailsParams, *models.Principal) middleware.Responder
}
DashboardWidgetDetailsHandler interface for that can handle valid dashboard widget details params
type DashboardWidgetDetailsHandlerFunc ¶
type DashboardWidgetDetailsHandlerFunc func(DashboardWidgetDetailsParams, *models.Principal) middleware.Responder
DashboardWidgetDetailsHandlerFunc turns a function with the right signature into a dashboard widget details handler
func (DashboardWidgetDetailsHandlerFunc) Handle ¶
func (fn DashboardWidgetDetailsHandlerFunc) Handle(params DashboardWidgetDetailsParams, principal *models.Principal) middleware.Responder
Handle executing the request and returning a response
type DashboardWidgetDetailsOK ¶
type DashboardWidgetDetailsOK struct { /* In: Body */ Payload *models.WidgetDetails `json:"body,omitempty"` }
DashboardWidgetDetailsOK A successful response.
swagger:response dashboardWidgetDetailsOK
func NewDashboardWidgetDetailsOK ¶
func NewDashboardWidgetDetailsOK() *DashboardWidgetDetailsOK
NewDashboardWidgetDetailsOK creates DashboardWidgetDetailsOK with default headers values
func (*DashboardWidgetDetailsOK) SetPayload ¶
func (o *DashboardWidgetDetailsOK) SetPayload(payload *models.WidgetDetails)
SetPayload sets the payload to the dashboard widget details o k response
func (*DashboardWidgetDetailsOK) WithPayload ¶
func (o *DashboardWidgetDetailsOK) WithPayload(payload *models.WidgetDetails) *DashboardWidgetDetailsOK
WithPayload adds the payload to the dashboard widget details o k response
func (*DashboardWidgetDetailsOK) WriteResponse ¶
func (o *DashboardWidgetDetailsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type DashboardWidgetDetailsParams ¶
type DashboardWidgetDetailsParams struct { // HTTP Request Object HTTPRequest *http.Request `json:"-"` /* In: query */ End *int64 /* In: query */ Start *int64 /* In: query */ Step *int32 /* Required: true In: path */ WidgetID int32 }
DashboardWidgetDetailsParams contains all the bound params for the dashboard widget details operation typically these are obtained from a http.Request
swagger:parameters DashboardWidgetDetails
func NewDashboardWidgetDetailsParams ¶
func NewDashboardWidgetDetailsParams() DashboardWidgetDetailsParams
NewDashboardWidgetDetailsParams creates a new DashboardWidgetDetailsParams object
There are no default values defined in the spec.
func (*DashboardWidgetDetailsParams) BindRequest ¶
func (o *DashboardWidgetDetailsParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.
To ensure default values, the struct must have been initialized with NewDashboardWidgetDetailsParams() beforehand.
type DashboardWidgetDetailsURL ¶
type DashboardWidgetDetailsURL struct { WidgetID int32 End *int64 Start *int64 Step *int32 // contains filtered or unexported fields }
DashboardWidgetDetailsURL generates an URL for the dashboard widget details operation
func (*DashboardWidgetDetailsURL) Build ¶
func (o *DashboardWidgetDetailsURL) Build() (*url.URL, error)
Build a url path and query string
func (*DashboardWidgetDetailsURL) BuildFull ¶
func (o *DashboardWidgetDetailsURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*DashboardWidgetDetailsURL) Must ¶
Must is a helper function to panic when the url builder returns an error
func (*DashboardWidgetDetailsURL) SetBasePath ¶
func (o *DashboardWidgetDetailsURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (*DashboardWidgetDetailsURL) String ¶
func (o *DashboardWidgetDetailsURL) String() string
String returns the string representation of the path with query string
func (*DashboardWidgetDetailsURL) StringFull ¶
func (o *DashboardWidgetDetailsURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*DashboardWidgetDetailsURL) WithBasePath ¶
func (o *DashboardWidgetDetailsURL) WithBasePath(bp string) *DashboardWidgetDetailsURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
type ListNodes ¶
type ListNodes struct { Context *middleware.Context Handler ListNodesHandler }
ListNodes swagger:route GET /nodes System listNodes
Lists Nodes
func NewListNodes ¶
func NewListNodes(ctx *middleware.Context, handler ListNodesHandler) *ListNodes
NewListNodes creates a new http.Handler for the list nodes operation
type ListNodesDefault ¶
type ListNodesDefault struct { /* In: Body */ Payload *models.APIError `json:"body,omitempty"` // contains filtered or unexported fields }
ListNodesDefault Generic error response.
swagger:response listNodesDefault
func NewListNodesDefault ¶
func NewListNodesDefault(code int) *ListNodesDefault
NewListNodesDefault creates ListNodesDefault with default headers values
func (*ListNodesDefault) SetPayload ¶
func (o *ListNodesDefault) SetPayload(payload *models.APIError)
SetPayload sets the payload to the list nodes default response
func (*ListNodesDefault) SetStatusCode ¶
func (o *ListNodesDefault) SetStatusCode(code int)
SetStatusCode sets the status to the list nodes default response
func (*ListNodesDefault) WithPayload ¶
func (o *ListNodesDefault) WithPayload(payload *models.APIError) *ListNodesDefault
WithPayload adds the payload to the list nodes default response
func (*ListNodesDefault) WithStatusCode ¶
func (o *ListNodesDefault) WithStatusCode(code int) *ListNodesDefault
WithStatusCode adds the status to the list nodes default response
func (*ListNodesDefault) WriteResponse ¶
func (o *ListNodesDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type ListNodesHandler ¶
type ListNodesHandler interface {
Handle(ListNodesParams, *models.Principal) middleware.Responder
}
ListNodesHandler interface for that can handle valid list nodes params
type ListNodesHandlerFunc ¶
type ListNodesHandlerFunc func(ListNodesParams, *models.Principal) middleware.Responder
ListNodesHandlerFunc turns a function with the right signature into a list nodes handler
func (ListNodesHandlerFunc) Handle ¶
func (fn ListNodesHandlerFunc) Handle(params ListNodesParams, principal *models.Principal) middleware.Responder
Handle executing the request and returning a response
type ListNodesOK ¶
type ListNodesOK struct { /* In: Body */ Payload []string `json:"body,omitempty"` }
ListNodesOK A successful response.
swagger:response listNodesOK
func NewListNodesOK ¶
func NewListNodesOK() *ListNodesOK
NewListNodesOK creates ListNodesOK with default headers values
func (*ListNodesOK) SetPayload ¶
func (o *ListNodesOK) SetPayload(payload []string)
SetPayload sets the payload to the list nodes o k response
func (*ListNodesOK) WithPayload ¶
func (o *ListNodesOK) WithPayload(payload []string) *ListNodesOK
WithPayload adds the payload to the list nodes o k response
func (*ListNodesOK) WriteResponse ¶
func (o *ListNodesOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type ListNodesParams ¶
ListNodesParams contains all the bound params for the list nodes operation typically these are obtained from a http.Request
swagger:parameters ListNodes
func NewListNodesParams ¶
func NewListNodesParams() ListNodesParams
NewListNodesParams creates a new ListNodesParams object
There are no default values defined in the spec.
func (*ListNodesParams) BindRequest ¶
func (o *ListNodesParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.
To ensure default values, the struct must have been initialized with NewListNodesParams() beforehand.
type ListNodesURL ¶
type ListNodesURL struct {
// contains filtered or unexported fields
}
ListNodesURL generates an URL for the list nodes operation
func (*ListNodesURL) Build ¶
func (o *ListNodesURL) Build() (*url.URL, error)
Build a url path and query string
func (*ListNodesURL) BuildFull ¶
func (o *ListNodesURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*ListNodesURL) Must ¶
Must is a helper function to panic when the url builder returns an error
func (*ListNodesURL) SetBasePath ¶
func (o *ListNodesURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (*ListNodesURL) String ¶
func (o *ListNodesURL) String() string
String returns the string representation of the path with query string
func (*ListNodesURL) StringFull ¶
func (o *ListNodesURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*ListNodesURL) WithBasePath ¶
func (o *ListNodesURL) WithBasePath(bp string) *ListNodesURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
Source Files ¶
- admin_info.go
- admin_info_parameters.go
- admin_info_responses.go
- admin_info_urlbuilder.go
- arn_list.go
- arn_list_parameters.go
- arn_list_responses.go
- arn_list_urlbuilder.go
- dashboard_widget_details.go
- dashboard_widget_details_parameters.go
- dashboard_widget_details_responses.go
- dashboard_widget_details_urlbuilder.go
- list_nodes.go
- list_nodes_parameters.go
- list_nodes_responses.go
- list_nodes_urlbuilder.go