lib/api/research/research_models/database.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 research_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"`
// The name of the physical database in the cluster
Databasename string `json:"databasename,omitempty"`
// Database connection string
Dsn string `json:"dsn,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 Taxnexus 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
}