jkawamoto/roadie

View on GitHub
cloud/azure/compute/client/virtual_machine_scale_sets/virtual_machine_scale_sets_deallocate_responses.go

Summary

Maintainability
C
1 day
Test Coverage
package virtual_machine_scale_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"
)

// VirtualMachineScaleSetsDeallocateReader is a Reader for the VirtualMachineScaleSetsDeallocate structure.
type VirtualMachineScaleSetsDeallocateReader struct {
    formats strfmt.Registry
}

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

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

    case 202:
        result := NewVirtualMachineScaleSetsDeallocateAccepted()
        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())
    }
}

// NewVirtualMachineScaleSetsDeallocateOK creates a VirtualMachineScaleSetsDeallocateOK with default headers values
func NewVirtualMachineScaleSetsDeallocateOK() *VirtualMachineScaleSetsDeallocateOK {
    return &VirtualMachineScaleSetsDeallocateOK{}
}

/*VirtualMachineScaleSetsDeallocateOK handles this case with default header values.

OK
*/
type VirtualMachineScaleSetsDeallocateOK struct {
    Payload *models.OperationStatusResponse
}

func (o *VirtualMachineScaleSetsDeallocateOK) Error() string {
    return fmt.Sprintf("[POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/deallocate][%d] virtualMachineScaleSetsDeallocateOK  %+v", 200, o.Payload)
}

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

    o.Payload = new(models.OperationStatusResponse)

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

    return nil
}

// NewVirtualMachineScaleSetsDeallocateAccepted creates a VirtualMachineScaleSetsDeallocateAccepted with default headers values
func NewVirtualMachineScaleSetsDeallocateAccepted() *VirtualMachineScaleSetsDeallocateAccepted {
    return &VirtualMachineScaleSetsDeallocateAccepted{}
}

/*VirtualMachineScaleSetsDeallocateAccepted handles this case with default header values.

Accepted
*/
type VirtualMachineScaleSetsDeallocateAccepted struct {
}

func (o *VirtualMachineScaleSetsDeallocateAccepted) Error() string {
    return fmt.Sprintf("[POST /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/deallocate][%d] virtualMachineScaleSetsDeallocateAccepted ", 202)
}

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

    return nil
}