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 sfgate_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"`
|
|
|
|
// Taxnexus Record Id
|
|
ID string `json:"id,omitempty"`
|
|
|
|
// IP Address
|
|
IPAddress string `json:"ip_address,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"`
|
|
|
|
// tenantid
|
|
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
|
|
}
|