1234567891011121314151617181920212223242526272829303132 |
- package swarm
- import "os"
- // Secret represents a secret.
- type Secret struct {
- ID string
- Meta
- Spec SecretSpec
- }
- // SecretSpec represents a secret specification from a secret in swarm
- type SecretSpec struct {
- Annotations
- Data []byte `json:",omitempty"`
- Driver *Driver `json:",omitempty"` // name of the secrets driver used to fetch the secret's value from an external secret store
- }
- // SecretReferenceFileTarget is a file target in a secret reference
- type SecretReferenceFileTarget struct {
- Name string
- UID string
- GID string
- Mode os.FileMode
- }
- // SecretReference is a reference to a secret in swarm
- type SecretReference struct {
- File *SecretReferenceFileTarget
- SecretID string
- SecretName string
- }
|