40 lines
1.9 KiB
Go
40 lines
1.9 KiB
Go
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
|
//
|
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
|
// and as commercial software.
|
|
//
|
|
// For commercial licensing, contact us at:
|
|
// - Website: infinilabs.com
|
|
// - Email: hello@infini.ltd
|
|
//
|
|
// Open Source licensed under AGPL V3:
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package model
|
|
|
|
//type ClusterConfig struct {
|
|
// //ID string `json:"id" elastic_meta:"_id"`
|
|
// Name string `json:"name" elastic_mapping:"name:{type:text}"`
|
|
// Endpoint string `json:"endpoint" elastic_mapping:"endpoint:{type:text}"`
|
|
// BasicAuth struct {
|
|
// UserName string `json:"username,omitempty" elastic_mapping:"username:{type:keyword}"`
|
|
// Password string `json:"password,omitempty" elastic_mapping:"password:{type:keyword}" `
|
|
// } `json:"basic_auth,omitempty" elastic_mapping:"basic_auth:{type:object}"`
|
|
// Order int `json:"order,omitempty" elastic_mapping:"order:{type:integer}"`
|
|
// Description string `json:"description,omitempty" elastic_mapping:"description:{type:text}"`
|
|
// Enabled bool `json:"enabled" elastic_mapping:"enabled:{type:boolean}"`
|
|
// Created time.Time `json:"created,omitempty" elastic_mapping:"created:{type:date}"`
|
|
// Updated time.Time `json:"updated,omitempty" elastic_mapping:"updated:{type:date}"`
|
|
//}
|