mirror of https://github.com/vernonkeenan/lib
91 lines
2.2 KiB
Go
91 lines
2.2 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"
|
|
)
|
|
|
|
// Database A Database provisioned and owned by a Tenant
|
|
//
|
|
// swagger:model database
|
|
type Database struct {
|
|
|
|
// Is this database active?
|
|
Active *bool `json:"Active,omitempty"`
|
|
|
|
// The ID of the Cluster in which this database is deployed
|
|
ClusterID *string `json:"ClusterID,omitempty"`
|
|
|
|
// Created By
|
|
CreatedByID *string `json:"CreatedByID,omitempty"`
|
|
|
|
// Created Date
|
|
CreatedDate *string `json:"CreatedDate,omitempty"`
|
|
|
|
// Database connection string
|
|
DSN *string `json:"DSN,omitempty"`
|
|
|
|
// The name of the physical database in the cluster
|
|
DatabaseName *string `json:"DatabaseName,omitempty"`
|
|
|
|
// Record Id
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
// Last Modified By
|
|
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
|
|
|
|
// Last Modifed Date
|
|
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
|
|
|
|
// List of microservices implemented by this Database
|
|
Microservices *string `json:"Microservices,omitempty"`
|
|
|
|
// The current status of this Tenant
|
|
Status *string `json:"Status,omitempty"`
|
|
|
|
// The ID of the tenant who owns this Database
|
|
TenantID *string `json:"TenantID,omitempty"`
|
|
|
|
// The type of Database (mysql, etc)
|
|
Type *string `json:"Type,omitempty"`
|
|
}
|
|
|
|
// Validate validates this database
|
|
func (m *Database) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this database based on context it is used
|
|
func (m *Database) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Database) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Database) UnmarshalBinary(b []byte) error {
|
|
var res Database
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|