18 lines
605 B
Go
18 lines
605 B
Go
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation and Dapr Contributors.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package secretstores
|
|
|
|
// GetSecretRequest describes a get secret request from a secret store.
|
|
type GetSecretRequest struct {
|
|
Name string `json:"name"`
|
|
Metadata map[string]string `json:"metadata"`
|
|
}
|
|
|
|
// BulkGetSecretRequest describes a bulk get secret request from a secret store
|
|
type BulkGetSecretRequest struct {
|
|
Metadata map[string]string `json:"metadata"`
|
|
}
|