lib/api/members/members_models/database.go

91 lines
2.2 KiB
Go
Raw Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-04-07 18:00:15 +00:00
package members_models
2021-07-31 03:05:02 +00:00
// 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
//
2023-05-13 16:46:48 +00:00
// swagger:model database
2021-07-31 03:05:02 +00:00
type Database struct {
// Is this database active?
2023-04-15 14:27:18 +00:00
Active *bool `json:"Active,omitempty"`
2021-07-31 03:05:02 +00:00
// The ID of the Cluster in which this database is deployed
2023-04-15 14:27:18 +00:00
ClusterID *string `json:"ClusterID,omitempty"`
2021-07-31 03:05:02 +00:00
// Created By
2023-04-15 14:27:18 +00:00
CreatedByID *string `json:"CreatedByID,omitempty"`
2021-07-31 03:05:02 +00:00
// Created Date
2023-04-15 14:27:18 +00:00
CreatedDate *string `json:"CreatedDate,omitempty"`
2021-07-31 03:05:02 +00:00
// Database connection string
2023-04-15 14:27:18 +00:00
DSN *string `json:"DSN,omitempty"`
2021-07-31 03:05:02 +00:00
// The name of the physical database in the cluster
2023-04-15 14:27:18 +00:00
DatabaseName *string `json:"DatabaseName,omitempty"`
2021-07-31 03:05:02 +00:00
// Record Id
ID string `json:"ID,omitempty"`
// Last Modified By
2023-04-15 14:27:18 +00:00
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
2021-07-31 03:05:02 +00:00
// Last Modifed Date
2023-04-15 14:27:18 +00:00
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
2021-07-31 03:05:02 +00:00
2023-05-13 16:46:48 +00:00
// List of microservices implemented by this Database
Microservices *string `json:"Microservices,omitempty"`
2021-07-31 03:05:02 +00:00
// The current status of this Tenant
2023-04-15 14:27:18 +00:00
Status *string `json:"Status,omitempty"`
2021-07-31 03:05:02 +00:00
// The ID of the tenant who owns this Database
2023-04-15 14:27:18 +00:00
TenantID *string `json:"TenantID,omitempty"`
2021-07-31 03:05:02 +00:00
// The type of Database (mysql, etc)
2023-04-15 14:27:18 +00:00
Type *string `json:"Type,omitempty"`
2021-07-31 03:05:02 +00:00
}
// 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
}