|
@@ -3,12 +3,13 @@ package models
|
|
// ExtClient - struct for external clients
|
|
// ExtClient - struct for external clients
|
|
type ExtClient struct {
|
|
type ExtClient struct {
|
|
ClientID string `json:"clientid" bson:"clientid"`
|
|
ClientID string `json:"clientid" bson:"clientid"`
|
|
- Description string `json:"description" bson:"description"`
|
|
|
|
PrivateKey string `json:"privatekey" bson:"privatekey"`
|
|
PrivateKey string `json:"privatekey" bson:"privatekey"`
|
|
PublicKey string `json:"publickey" bson:"publickey"`
|
|
PublicKey string `json:"publickey" bson:"publickey"`
|
|
Network string `json:"network" bson:"network"`
|
|
Network string `json:"network" bson:"network"`
|
|
|
|
+ DNS string `json:"dns" bson:"dns"`
|
|
Address string `json:"address" bson:"address"`
|
|
Address string `json:"address" bson:"address"`
|
|
Address6 string `json:"address6" bson:"address6"`
|
|
Address6 string `json:"address6" bson:"address6"`
|
|
|
|
+ ExtraAllowedIPs []string `json:"extraallowedips" bson:"extraallowedips"`
|
|
IngressGatewayID string `json:"ingressgatewayid" bson:"ingressgatewayid"`
|
|
IngressGatewayID string `json:"ingressgatewayid" bson:"ingressgatewayid"`
|
|
IngressGatewayEndpoint string `json:"ingressgatewayendpoint" bson:"ingressgatewayendpoint"`
|
|
IngressGatewayEndpoint string `json:"ingressgatewayendpoint" bson:"ingressgatewayendpoint"`
|
|
LastModified int64 `json:"lastmodified" bson:"lastmodified"`
|
|
LastModified int64 `json:"lastmodified" bson:"lastmodified"`
|
|
@@ -16,3 +17,12 @@ type ExtClient struct {
|
|
OwnerID string `json:"ownerid" bson:"ownerid"`
|
|
OwnerID string `json:"ownerid" bson:"ownerid"`
|
|
ACLs map[string]struct{} `json:"acls,omitempty" bson:"acls,omitempty"`
|
|
ACLs map[string]struct{} `json:"acls,omitempty" bson:"acls,omitempty"`
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+// CustomExtClient - struct for CustomExtClient params
|
|
|
|
+type CustomExtClient struct {
|
|
|
|
+ ClientID string `json:"clientid"`
|
|
|
|
+ PublicKey string `json:"publickey,omitempty"`
|
|
|
|
+ DNS string `json:"dns,omitempty"`
|
|
|
|
+ ExtraAllowedIPs []string `json:"extraallowedips,omitempty"`
|
|
|
|
+ Enabled bool `json:"enabled"`
|
|
|
|
+}
|