wasmcloud_secrets_types

Struct SecretConfig

source
pub struct SecretConfig {
    pub name: String,
    pub backend: String,
    pub key: String,
    pub field: Option<String>,
    pub version: Option<String>,
    pub policy: Policy,
    pub secret_type: String,
}
Expand description

The representation of a secret reference in the config store.

Fields§

§name: String

The name of the secret when referred to by a component or provider.

§backend: String

The backend to use for retrieving the secret.

§key: String

The key to use for retrieving the secret from the backend.

§field: Option<String>

The field to retrieve from the secret. If not supplied, the entire secret will be returned.

§version: Option<String>

The version of the secret to retrieve. If not supplied, the latest version will be used.

§policy: Policy

The policy that defines configuration options for the backend. This is a serialized JSON object that will be passed to the backend as a string for policy evaluation.

§secret_type: String

The type of secret. This is used to inform wadm or anything else that is consuming the secret about how to deserialize the payload.

Implementations§

source§

impl SecretConfig

source

pub fn new( name: String, backend: String, key: String, field: Option<String>, version: Option<String>, policy_properties: HashMap<String, Value>, ) -> Self

source

pub fn try_into_request( self, entity_jwt: &str, host_jwt: &str, application_name: Option<&String>, ) -> Result<SecretRequest, Error>

Given an entity JWT, host JWT, and optional application name, convert this SecretConfig into a SecretRequest that can be used to fetch the secret from a secrets backend.

This is not a true TryInto implementation as we need additional information to create the SecretRequest. This returns an error if the policy field cannot be serialized to a JSON string.

Trait Implementations§

source§

impl Clone for SecretConfig

source§

fn clone(&self) -> SecretConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SecretConfig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for SecretConfig

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for SecretConfig

source§

fn eq(&self, other: &SecretConfig) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for SecretConfig

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryInto<HashMap<String, String>> for SecretConfig

Helper function to convert a SecretConfig into a HashMap. This is only intended to be used by wash or anything else that needs to interact directly with the config KV bucket to manipulate secrets.

source§

fn try_into(self) -> Result<HashMap<String, String>, Self::Error>

Convert this SecretConfig into a HashMap of the form:

{
  "name": "secret-name",
  "type": "secret.wasmcloud.dev/v1alpha1",
  "backend": "baobun",
  "key": "/path/to/secret",
  "version": "vX.Y.Z",
  "policy": "{\"type\":\"properties.secret.wasmcloud.dev/v1alpha1\",\"properties\":{\"key\":\"value\"}}"
}
source§

type Error = Error

The type returned in the event of a conversion error.
source§

impl Eq for SecretConfig

source§

impl StructuralPartialEq for SecretConfig

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,