Documentation
¶
Index ¶
Constants ¶
View Source
const (
ProxyTypeDataplane = "dataplane"
ProxyTypeIngress = "ingress"
)
Variables ¶
View Source
var GlobalSecretNotFound = fmt.Errorf("Global Secret Not Found")
View Source
var SecretNotFound = fmt.Errorf("Secret Not Found")
Functions ¶
Types ¶
type GlobalSecret ¶
type GlobalSecret struct {
Type string `json:"type"`
Name string `json:"name"`
Data string `json:"data"`
}
type GlobalSecretsClient ¶
type GlobalSecretsClient struct {
// contains filtered or unexported fields
}
func NewGlobalSecretsClient ¶
func NewGlobalSecretsClient(c util_http.Client) *GlobalSecretsClient
type RevocationListSecret ¶
type RevocationListSecret struct {
Tokens []RevocationToken `json:"tokens"`
}
type RevocationToken ¶
type RevocationToken struct {
JTI string `json:"jti"`
Mesh string `json:"mesh"`
Expiry int64 `json:"expiry"`
Type string `json:"type"`
}
type Secret ¶
type Secret struct {
Type string `json:"type"`
Name string `json:"name"`
Mesh string `json:"mesh"`
Data string `json:"data"`
}
type SecretsClient ¶
type SecretsClient struct {
// contains filtered or unexported fields
}
func NewSecretsClient ¶
func NewSecretsClient(c util_http.Client) *SecretsClient
Source Files
¶
Click to show internal directories.
Click to hide internal directories.