mirror of https://github.com/vernonkeenan/lib
103 lines
2.1 KiB
Go
103 lines
2.1 KiB
Go
|
// Code generated by go-swagger; DO NOT EDIT.
|
||
|
|
||
|
// (c) 2012-2020 by Taxnexus, Inc.
|
||
|
// All rights reserved worldwide.
|
||
|
// Proprietary product; unlicensed use is not allowed
|
||
|
|
||
|
package members_models
|
||
|
|
||
|
// This file was generated by the swagger tool.
|
||
|
// Editing this file might prove futile when you re-run the swagger generate command
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/go-openapi/strfmt"
|
||
|
"github.com/go-openapi/swag"
|
||
|
)
|
||
|
|
||
|
// Cluster cluster
|
||
|
//
|
||
|
// swagger:model Cluster
|
||
|
type Cluster struct {
|
||
|
|
||
|
// Created By
|
||
|
CreatedByID string `json:"CreatedByID,omitempty"`
|
||
|
|
||
|
// Created Date
|
||
|
CreatedDate string `json:"CreatedDate,omitempty"`
|
||
|
|
||
|
// Description
|
||
|
Description string `json:"Description,omitempty"`
|
||
|
|
||
|
// Environment
|
||
|
Environment string `json:"Environment,omitempty"`
|
||
|
|
||
|
// Gateway
|
||
|
Gateway string `json:"Gateway,omitempty"`
|
||
|
|
||
|
// Record Id
|
||
|
ID string `json:"ID,omitempty"`
|
||
|
|
||
|
// IP Address
|
||
|
IPAddress string `json:"IPAddress,omitempty"`
|
||
|
|
||
|
// Last Modified By
|
||
|
LastModifiedByID string `json:"LastModifiedByID,omitempty"`
|
||
|
|
||
|
// Last Modified Date
|
||
|
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
|
||
|
|
||
|
// Cluster Name
|
||
|
Name string `json:"Name,omitempty"`
|
||
|
|
||
|
// Owner
|
||
|
OwnerID string `json:"OwnerID,omitempty"`
|
||
|
|
||
|
// External Reference
|
||
|
Ref string `json:"Ref,omitempty"`
|
||
|
|
||
|
// Status
|
||
|
Status string `json:"Status,omitempty"`
|
||
|
|
||
|
// Subnet
|
||
|
Subnet string `json:"Subnet,omitempty"`
|
||
|
|
||
|
// The ID of the tenant who owns this Database
|
||
|
TenantID string `json:"TenantID,omitempty"`
|
||
|
|
||
|
// Type
|
||
|
Type string `json:"Type,omitempty"`
|
||
|
|
||
|
// Zone
|
||
|
Zone string `json:"Zone,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this cluster
|
||
|
func (m *Cluster) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// ContextValidate validates this cluster based on context it is used
|
||
|
func (m *Cluster) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *Cluster) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *Cluster) UnmarshalBinary(b []byte) error {
|
||
|
var res Cluster
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|