jkawamoto/roadie

View on GitHub
cloud/azure/resource/client/deployment_operations/deployment_operations_get_responses.go

Summary

Maintainability
B
5 hrs
Test Coverage
package deployment_operations

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

// DeploymentOperationsGetReader is a Reader for the DeploymentOperationsGet structure.
type DeploymentOperationsGetReader struct {
    formats strfmt.Registry
}

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

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

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

// NewDeploymentOperationsGetOK creates a DeploymentOperationsGetOK with default headers values
func NewDeploymentOperationsGetOK() *DeploymentOperationsGetOK {
    return &DeploymentOperationsGetOK{}
}

/*DeploymentOperationsGetOK handles this case with default header values.

OK - Returns information about the deployment operation.
*/
type DeploymentOperationsGetOK struct {
    Payload *models.DeploymentOperation
}

func (o *DeploymentOperationsGetOK) Error() string {
    return fmt.Sprintf("[GET /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/deployments/{deploymentName}/operations/{operationId}][%d] deploymentOperationsGetOK  %+v", 200, o.Payload)
}

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

    o.Payload = new(models.DeploymentOperation)

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

    return nil
}