Documentation
¶
Index ¶
- type GenericRequest
- type GenericResponse
- type KeyInputRequest
- type KeystoneStatusRequest
- type KeystoneStatusResponse
- type SecretDeleteRequest
- type SecretDeleteResponse
- type SecretEncryptedListResponse
- type SecretFetchRequest
- type SecretFetchResponse
- type SecretListRequest
- type SecretListResponse
- type SecretStringTimeListResponse
- type SecretUpsertRequest
- type SecretUpsertResponse
- type SentinelInitCompleteRequest
- type SentinelInitCompleteResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GenericRequest ¶
type GenericRequest struct {
Err string `json:"err,omitempty"`
}
type GenericResponse ¶
type GenericResponse struct {
Err string `json:"err,omitempty"`
}
type KeyInputRequest ¶
type KeystoneStatusRequest ¶ added in v0.24.5
type KeystoneStatusRequest struct {
Err string `json:"err,omitempty"`
}
type KeystoneStatusResponse ¶ added in v0.24.5
type KeystoneStatusResponse struct { Status data.KeystoneInitStatus `json:"status"` Err string `json:"err,omitempty"` }
type SecretDeleteRequest ¶
type SecretDeleteResponse ¶
type SecretDeleteResponse struct {
Err string `json:"err,omitempty"`
}
type SecretEncryptedListResponse ¶ added in v0.22.0
type SecretEncryptedListResponse struct { Secrets []data.SecretEncrypted `json:"secrets"` Algorithm crypto.Algorithm `json:"algorithm"` Err string `json:"err,omitempty"` }
type SecretFetchRequest ¶
type SecretFetchRequest struct {
Err string `json:"err,omitempty"`
}
type SecretFetchResponse ¶
type SecretListRequest ¶
type SecretListRequest struct {
Err string `json:"err,omitempty"`
}
type SecretListResponse ¶
type SecretStringTimeListResponse ¶ added in v0.22.0
type SecretStringTimeListResponse struct { Secrets []data.SecretStringTime `json:"secrets"` Algorithm crypto.Algorithm `json:"algorithm"` Err string `json:"err,omitempty"` }
type SecretUpsertRequest ¶
type SecretUpsertRequest struct { WorkloadIds []string `json:"workloads"` BackingStore data.BackingStore `json:"backingStore"` Namespaces []string `json:"namespaces"` Value string `json:"value"` Template string `json:"template"` Format data.SecretFormat `json:"format"` Encrypt bool `json:"encrypt"` AppendValue bool `json:"appendValue"` NotBefore string `json:"notBefore"` Expires string `json:"expires"` Err string `json:"err,omitempty"` }
type SecretUpsertResponse ¶
type SecretUpsertResponse struct {
Err string `json:"err,omitempty"`
}
type SentinelInitCompleteRequest ¶ added in v0.22.4
type SentinelInitCompleteRequest struct {
Err string `json:"err,omitempty"`
}
type SentinelInitCompleteResponse ¶ added in v0.22.4
type SentinelInitCompleteResponse struct {
Err string `json:"err,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.