jkawamoto/roadie

View on GitHub
cloud/azure/resource/client/deployments/deployments_validate_responses.go

Summary

Maintainability
C
1 day
Test Coverage
package deployments

// 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"

    strfmt "github.com/go-openapi/strfmt"

    "github.com/jkawamoto/roadie/cloud/azure/resource/models"
)

// DeploymentsValidateReader is a Reader for the DeploymentsValidate structure.
type DeploymentsValidateReader struct {
    formats strfmt.Registry
}

// ReadResponse reads a server response into the received o.
func (o *DeploymentsValidateReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
    switch response.Code() {

    case 200:
        result := NewDeploymentsValidateOK()
        if err := result.readResponse(response, consumer, o.formats); err != nil {
            return nil, err
        }
        return result, nil

    case 400:
        result := NewDeploymentsValidateBadRequest()
        if err := result.readResponse(response, consumer, o.formats); err != nil {
            return nil, err
        }
        return nil, result

    default:
        return nil, runtime.NewAPIError("unknown error", response, response.Code())
    }
}

// NewDeploymentsValidateOK creates a DeploymentsValidateOK with default headers values
func NewDeploymentsValidateOK() *DeploymentsValidateOK {
    return &DeploymentsValidateOK{}
}

/*DeploymentsValidateOK handles this case with default header values.

OK - Returns the validation result.
*/
type DeploymentsValidateOK struct {
    Payload *models.DeploymentValidateResult
}

func (o *DeploymentsValidateOK) Error() string {
    return fmt.Sprintf("[POST /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/validate][%d] deploymentsValidateOK  %+v", 200, o.Payload)
}

func (o *DeploymentsValidateOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

    o.Payload = new(models.DeploymentValidateResult)

    // response payload
    if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
        return err
    }

    return nil
}

// NewDeploymentsValidateBadRequest creates a DeploymentsValidateBadRequest with default headers values
func NewDeploymentsValidateBadRequest() *DeploymentsValidateBadRequest {
    return &DeploymentsValidateBadRequest{}
}

/*DeploymentsValidateBadRequest handles this case with default header values.

Returns the validation result.
*/
type DeploymentsValidateBadRequest struct {
    Payload *models.DeploymentValidateResult
}

func (o *DeploymentsValidateBadRequest) Error() string {
    return fmt.Sprintf("[POST /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}/validate][%d] deploymentsValidateBadRequest  %+v", 400, o.Payload)
}

func (o *DeploymentsValidateBadRequest) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {

    o.Payload = new(models.DeploymentValidateResult)

    // response payload
    if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
        return err
    }

    return nil
}