pub trait SecretExt: ResourceBuilder + Sized {
    fn new(name: impl ToString) -> Self;
    fn immutable(self, yes: bool) -> Self;
    fn type(self, type: impl ToString) -> Self;
    fn data(
        self,
        data: impl IntoIterator<Item = (impl ToString, ByteString)>
    ) -> Self; fn string_data(
        self,
        data: impl IntoIterator<Item = (impl ToString, impl ToString)>
    ) -> Self; fn image_pull_secret(name: impl ToString, data: impl ToString) -> Self { ... } }

Required Methods

Provided Methods

Implementors