secrets

package
v0.1.22 Latest Latest
Warning

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

Go to latest
Published: Oct 13, 2020 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Secret

type Secret struct {
	ID          string            `json:"ID"`
	Name        string            `json:"Name"`
	Labels      map[string]string `json:"Labels"`
	Description string            `json:"Description"`
	// contains filtered or unexported fields
}

Secret hold sensitive data

func NewSecret

func NewSecret(name, username, password, description string) Secret

NewSecret builds a secret

func (Secret) GetCredString

func (s Secret) GetCredString() (string, error)

GetCredString marshall a Secret's sensitive data into JSON string

func (Secret) ToJSON

func (s Secret) ToJSON() (string, error)

ToJSON marshall a Secret into JSON string

type Service

type Service interface {
	CreateSecret(ctx context.Context, secret Secret) (string, error)
	InspectSecret(ctx context.Context, id string) (Secret, error)
	ListSecrets(ctx context.Context) ([]Secret, error)
	DeleteSecret(ctx context.Context, id string, recover bool) error
}

Service interacts with the underlying secrets backend

Jump to

Keyboard shortcuts

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