v1

package
v1.6.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 16, 2023 License: MIT Imports: 1 Imported by: 0

Documentation

Index

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 SecretDeleteRequest added in v0.15.7

type SecretDeleteRequest struct {
	WorkloadId string `json:"key"`
	Err        string `json:"err,omitempty"`
}

type SecretDeleteResponse added in v0.15.7

type SecretDeleteResponse struct {
	Err string `json:"err,omitempty"`
}

type SecretFetchRequest

type SecretFetchRequest struct {
	Err string `json:"err,omitempty"`
}

type SecretFetchResponse

type SecretFetchResponse struct {
	Data    string `json:"data"`
	Created string `json:"created"`
	Updated string `json:"updated"`
	Err     string `json:"err,omitempty"`
}

type SecretListRequest

type SecretListRequest struct {
	Err string `json:"err,omitempty"`
}

type SecretListResponse

type SecretListResponse struct {
	Secrets []data.Secret `json:"secrets"`
	Err     string        `json:"err,omitempty"`
}

type SecretUpsertRequest

type SecretUpsertRequest struct {
	WorkloadId    string            `json:"key"`
	BackingStore  data.BackingStore `json:"backingStore"`
	UseKubernetes bool              `json:"useKubernetes"`
	Namespace     string            `json:"namespace"`
	Value         string            `json:"value"`
	Template      string            `json:"template"`
	Format        data.SecretFormat `json:"format"`
	Encrypt       bool              `json:"encrypt"`
	AppendValue   bool              `json:"appendValue"`
	Err           string            `json:"err,omitempty"`
}

type SecretUpsertResponse

type SecretUpsertResponse struct {
	Err string `json:"err,omitempty"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL