2021-05-20 01:59:10 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
type ExtClient struct {
|
|
|
|
ClientID string `json:"clientid" bson:"clientid"`
|
|
|
|
Description string `json:"description" bson:"description"`
|
|
|
|
PrivateKey string `json:"privatekey" bson:"privatekey"`
|
|
|
|
PublicKey string `json:"publickey" bson:"publickey"`
|
|
|
|
Network string `json:"network" bson:"network"`
|
|
|
|
Address string `json:"address" bson:"address"`
|
|
|
|
LastModified int64 `json:"lastmodified" bson:"lastmodified"`
|
|
|
|
IngressGatewayID string `json:"ingressgatewayid" bson:"ingressgatewayid"`
|
2021-05-26 06:05:14 +08:00
|
|
|
IngressGatewayEndpoint string `json:"ingressgatewayendpoint" bson:"ingressgatewayendpoint"`
|
2021-05-20 01:59:10 +08:00
|
|
|
}
|