jkawamoto/roadie

View on GitHub
cloud/azure/resource/client/tags/tags_list_responses.go

Summary

Maintainability
B
5 hrs
Test Coverage
package tags

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

// TagsListReader is a Reader for the TagsList structure.
type TagsListReader struct {
    formats strfmt.Registry
}

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

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

// NewTagsListOK creates a TagsListOK with default headers values
func NewTagsListOK() *TagsListOK {
    return &TagsListOK{}
}

/*TagsListOK handles this case with default header values.

OK - Returns an array of tag names and values.
*/
type TagsListOK struct {
    Payload *models.TagsListResult
}

func (o *TagsListOK) Error() string {
    return fmt.Sprintf("[GET /subscriptions/{subscriptionId}/tagNames][%d] tagsListOK  %+v", 200, o.Payload)
}

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

    o.Payload = new(models.TagsListResult)

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

    return nil
}