jkawamoto/roadie

View on GitHub
cloud/azure/compute/models/compute_long_running_operation_properties.go

Summary

Maintainability
A
50 mins
Test Coverage
package models

// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command

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

    "github.com/go-openapi/errors"
)

// ComputeLongRunningOperationProperties Compute-specific operation properties, including output
// swagger:model ComputeLongRunningOperationProperties
type ComputeLongRunningOperationProperties struct {

    // Operation output data (raw JSON)
    Output interface{} `json:"output,omitempty"`
}

// Validate validates this compute long running operation properties
func (m *ComputeLongRunningOperationProperties) Validate(formats strfmt.Registry) error {
    var res []error

    if len(res) > 0 {
        return errors.CompositeValidationError(res...)
    }
    return nil
}