Struct gapi_grpc::google::devtools::cloudbuild::v1::InlineSecret[][src]

pub struct InlineSecret {
    pub kms_key_name: String,
    pub env_map: HashMap<String, Vec<u8>>,
}

Pairs a set of secret environment variables mapped to encrypted values with the Cloud KMS key to use to decrypt the value.

Fields

kms_key_name: String

Resource name of Cloud KMS crypto key to decrypt the encrypted value. In format: projects//locations//keyRings//cryptoKeys/

env_map: HashMap<String, Vec<u8>>

Map of environment variable name to its encrypted value.

Secret environment variables must be unique across all of a build’s secrets, and must be used by at least one build step. Values can be at most 64 KB in size. There can be at most 100 secret values across all of a build’s secrets.

Trait Implementations

impl Clone for InlineSecret[src]

impl Debug for InlineSecret[src]

impl Default for InlineSecret[src]

impl Message for InlineSecret[src]

impl PartialEq<InlineSecret> for InlineSecret[src]

impl StructuralPartialEq for InlineSecret[src]

Auto Trait Implementations

impl RefUnwindSafe for InlineSecret

impl Send for InlineSecret

impl Sync for InlineSecret

impl Unpin for InlineSecret

impl UnwindSafe for InlineSecret

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]