jkawamoto/roadie

View on GitHub
cloud/azure/compute/client/availability_sets/availability_sets_get_responses.go

Summary

Maintainability
B
5 hrs
Test Coverage
package availability_sets

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

// AvailabilitySetsGetReader is a Reader for the AvailabilitySetsGet structure.
type AvailabilitySetsGetReader struct {
    formats strfmt.Registry
}

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

    case 200:
        result := NewAvailabilitySetsGetOK()
        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())
    }
}

// NewAvailabilitySetsGetOK creates a AvailabilitySetsGetOK with default headers values
func NewAvailabilitySetsGetOK() *AvailabilitySetsGetOK {
    return &AvailabilitySetsGetOK{}
}

/*AvailabilitySetsGetOK handles this case with default header values.

OK
*/
type AvailabilitySetsGetOK struct {
    Payload *models.AvailabilitySet
}

func (o *AvailabilitySetsGetOK) Error() string {
    return fmt.Sprintf("[GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/availabilitySets/{availabilitySetName}][%d] availabilitySetsGetOK  %+v", 200, o.Payload)
}

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

    o.Payload = new(models.AvailabilitySet)

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

    return nil
}