mirror of https://github.com/vernonkeenan/lib
121 lines
2.6 KiB
Go
121 lines
2.6 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 devops_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"
|
|
)
|
|
|
|
// Service service
|
|
//
|
|
// swagger:model Service
|
|
type Service struct {
|
|
|
|
// Active?
|
|
Active bool `json:"Active,omitempty"`
|
|
|
|
// Cluster
|
|
ClusterID string `json:"ClusterID,omitempty"`
|
|
|
|
// Cluster IP
|
|
ClusterIP string `json:"ClusterIP,omitempty"`
|
|
|
|
// Cluster URL
|
|
ClusterURL string `json:"ClusterURL,omitempty"`
|
|
|
|
// Created By
|
|
CreatedByID string `json:"CreatedByID,omitempty"`
|
|
|
|
// Created Date
|
|
CreatedDate string `json:"CreatedDate,omitempty"`
|
|
|
|
// Environment
|
|
Environment string `json:"Environment,omitempty"`
|
|
|
|
// External URL
|
|
ExternalURL string `json:"ExternalURL,omitempty"`
|
|
|
|
// GELF Address
|
|
GELFAddress string `json:"GELFAddress,omitempty"`
|
|
|
|
// Taxnexus Record Id
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
// Last Modified By
|
|
LastModifiedByID string `json:"LastModifiedByID,omitempty"`
|
|
|
|
// Last Modified Date
|
|
LastModifiedDate string `json:"LastModifiedDate,omitempty"`
|
|
|
|
// Network Alias
|
|
NetworkAlias string `json:"NetworkAlias,omitempty"`
|
|
|
|
// OpenAPI Version
|
|
OpenAPIVersion string `json:"OpenAPIVersion,omitempty"`
|
|
|
|
// Owner
|
|
OwnerID string `json:"OwnerID,omitempty"`
|
|
|
|
// Port - External
|
|
PortExternal string `json:"PortExternal,omitempty"`
|
|
|
|
// Port - Test
|
|
PortTest string `json:"PortTest,omitempty"`
|
|
|
|
// Proxy Type
|
|
ProxyType string `json:"ProxyType,omitempty"`
|
|
|
|
// Replicas
|
|
Replicas int64 `json:"Replicas,omitempty"`
|
|
|
|
// Repo URL
|
|
RepoURL string `json:"RepoURL,omitempty"`
|
|
|
|
// Service Name
|
|
ServiceName string `json:"ServiceName,omitempty"`
|
|
|
|
// The ID of the tenant who owns this Database
|
|
TenantID string `json:"TenantID,omitempty"`
|
|
|
|
// Version
|
|
Version string `json:"Version,omitempty"`
|
|
}
|
|
|
|
// Validate validates this service
|
|
func (m *Service) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this service based on context it is used
|
|
func (m *Service) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Service) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Service) UnmarshalBinary(b []byte) error {
|
|
var res Service
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|