jkawamoto/roadie

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

Summary

Maintainability
C
1 day
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/swag"

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

// VirtualMachineExtension Describes a Virtual Machine Extension.
// swagger:model VirtualMachineExtension
type VirtualMachineExtension struct {
    Resource

    // properties
    Properties *VirtualMachineExtensionProperties `json:"properties,omitempty"`
}

// UnmarshalJSON unmarshals this object from a JSON structure
func (m *VirtualMachineExtension) UnmarshalJSON(raw []byte) error {
    var data struct {
        Properties *VirtualMachineExtensionProperties `json:"properties,omitempty"`
    }
    if err := swag.ReadJSON(raw, &data); err != nil {
        return err
    }

    m.Properties = data.Properties

    var aO0 Resource
    if err := swag.ReadJSON(raw, &aO0); err != nil {
        return err
    }
    m.Resource = aO0

    return nil
}

// MarshalJSON marshals this object to a JSON structure
func (m VirtualMachineExtension) MarshalJSON() ([]byte, error) {
    var _parts [][]byte
    var data struct {
        Properties *VirtualMachineExtensionProperties `json:"properties,omitempty"`
    }

    data.Properties = m.Properties

    jsonData, err := swag.WriteJSON(data)
    if err != nil {
        return nil, err
    }
    _parts = append(_parts, jsonData)

    aO0, err := swag.WriteJSON(m.Resource)
    if err != nil {
        return nil, err
    }
    _parts = append(_parts, aO0)

    return swag.ConcatJSON(_parts...), nil
}

// Validate validates this virtual machine extension
func (m *VirtualMachineExtension) Validate(formats strfmt.Registry) error {
    var res []error

    if err := m.Resource.Validate(formats); err != nil {
        res = append(res, err)
    }

    if err := m.validateProperties(formats); err != nil {
        // prop
        res = append(res, err)
    }

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

func (m *VirtualMachineExtension) validateProperties(formats strfmt.Registry) error {

    if swag.IsZero(m.Properties) { // not required
        return nil
    }

    if m.Properties != nil {

        if err := m.Properties.Validate(formats); err != nil {
            return err
        }
    }

    return nil
}