* Added a webhook show command. This gives us info about the webhook and
if it is installed.
* Return webhook info when installing the webhook
* Small typo fixes.
Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
179 lines
5.3 KiB
Go
179 lines
5.3 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package organizations
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/go-openapi/runtime"
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
apiserver_params "github.com/cloudbase/garm/apiserver/params"
|
|
garm_params "github.com/cloudbase/garm/params"
|
|
)
|
|
|
|
// InstallOrgWebhookReader is a Reader for the InstallOrgWebhook structure.
|
|
type InstallOrgWebhookReader struct {
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
// ReadResponse reads a server response into the received o.
|
|
func (o *InstallOrgWebhookReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
|
|
switch response.Code() {
|
|
case 200:
|
|
result := NewInstallOrgWebhookOK()
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
return result, nil
|
|
default:
|
|
result := NewInstallOrgWebhookDefault(response.Code())
|
|
if err := result.readResponse(response, consumer, o.formats); err != nil {
|
|
return nil, err
|
|
}
|
|
if response.Code()/100 == 2 {
|
|
return result, nil
|
|
}
|
|
return nil, result
|
|
}
|
|
}
|
|
|
|
// NewInstallOrgWebhookOK creates a InstallOrgWebhookOK with default headers values
|
|
func NewInstallOrgWebhookOK() *InstallOrgWebhookOK {
|
|
return &InstallOrgWebhookOK{}
|
|
}
|
|
|
|
/*
|
|
InstallOrgWebhookOK describes a response with status code 200, with default header values.
|
|
|
|
HookInfo
|
|
*/
|
|
type InstallOrgWebhookOK struct {
|
|
Payload garm_params.HookInfo
|
|
}
|
|
|
|
// IsSuccess returns true when this install org webhook o k response has a 2xx status code
|
|
func (o *InstallOrgWebhookOK) IsSuccess() bool {
|
|
return true
|
|
}
|
|
|
|
// IsRedirect returns true when this install org webhook o k response has a 3xx status code
|
|
func (o *InstallOrgWebhookOK) IsRedirect() bool {
|
|
return false
|
|
}
|
|
|
|
// IsClientError returns true when this install org webhook o k response has a 4xx status code
|
|
func (o *InstallOrgWebhookOK) IsClientError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsServerError returns true when this install org webhook o k response has a 5xx status code
|
|
func (o *InstallOrgWebhookOK) IsServerError() bool {
|
|
return false
|
|
}
|
|
|
|
// IsCode returns true when this install org webhook o k response a status code equal to that given
|
|
func (o *InstallOrgWebhookOK) IsCode(code int) bool {
|
|
return code == 200
|
|
}
|
|
|
|
// Code gets the status code for the install org webhook o k response
|
|
func (o *InstallOrgWebhookOK) Code() int {
|
|
return 200
|
|
}
|
|
|
|
func (o *InstallOrgWebhookOK) Error() string {
|
|
return fmt.Sprintf("[POST /organizations/{orgID}/webhook][%d] installOrgWebhookOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *InstallOrgWebhookOK) String() string {
|
|
return fmt.Sprintf("[POST /organizations/{orgID}/webhook][%d] installOrgWebhookOK %+v", 200, o.Payload)
|
|
}
|
|
|
|
func (o *InstallOrgWebhookOK) GetPayload() garm_params.HookInfo {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *InstallOrgWebhookOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewInstallOrgWebhookDefault creates a InstallOrgWebhookDefault with default headers values
|
|
func NewInstallOrgWebhookDefault(code int) *InstallOrgWebhookDefault {
|
|
return &InstallOrgWebhookDefault{
|
|
_statusCode: code,
|
|
}
|
|
}
|
|
|
|
/*
|
|
InstallOrgWebhookDefault describes a response with status code -1, with default header values.
|
|
|
|
APIErrorResponse
|
|
*/
|
|
type InstallOrgWebhookDefault struct {
|
|
_statusCode int
|
|
|
|
Payload apiserver_params.APIErrorResponse
|
|
}
|
|
|
|
// IsSuccess returns true when this install org webhook default response has a 2xx status code
|
|
func (o *InstallOrgWebhookDefault) IsSuccess() bool {
|
|
return o._statusCode/100 == 2
|
|
}
|
|
|
|
// IsRedirect returns true when this install org webhook default response has a 3xx status code
|
|
func (o *InstallOrgWebhookDefault) IsRedirect() bool {
|
|
return o._statusCode/100 == 3
|
|
}
|
|
|
|
// IsClientError returns true when this install org webhook default response has a 4xx status code
|
|
func (o *InstallOrgWebhookDefault) IsClientError() bool {
|
|
return o._statusCode/100 == 4
|
|
}
|
|
|
|
// IsServerError returns true when this install org webhook default response has a 5xx status code
|
|
func (o *InstallOrgWebhookDefault) IsServerError() bool {
|
|
return o._statusCode/100 == 5
|
|
}
|
|
|
|
// IsCode returns true when this install org webhook default response a status code equal to that given
|
|
func (o *InstallOrgWebhookDefault) IsCode(code int) bool {
|
|
return o._statusCode == code
|
|
}
|
|
|
|
// Code gets the status code for the install org webhook default response
|
|
func (o *InstallOrgWebhookDefault) Code() int {
|
|
return o._statusCode
|
|
}
|
|
|
|
func (o *InstallOrgWebhookDefault) Error() string {
|
|
return fmt.Sprintf("[POST /organizations/{orgID}/webhook][%d] InstallOrgWebhook default %+v", o._statusCode, o.Payload)
|
|
}
|
|
|
|
func (o *InstallOrgWebhookDefault) String() string {
|
|
return fmt.Sprintf("[POST /organizations/{orgID}/webhook][%d] InstallOrgWebhook default %+v", o._statusCode, o.Payload)
|
|
}
|
|
|
|
func (o *InstallOrgWebhookDefault) GetPayload() apiserver_params.APIErrorResponse {
|
|
return o.Payload
|
|
}
|
|
|
|
func (o *InstallOrgWebhookDefault) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
|
|
|
|
// response payload
|
|
if err := consumer.Consume(response.Body(), &o.Payload); err != nil && err != io.EOF {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|