Struct google_secretmanager1::api::SecretVersion[][src]

pub struct SecretVersion {
    pub create_time: Option<String>,
    pub destroy_time: Option<String>,
    pub name: Option<String>,
    pub replication_status: Option<ReplicationStatus>,
    pub state: Option<String>,
}

A secret version resource in the Secret Manager API.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

create_time: Option<String>

Output only. The time at which the SecretVersion was created.

destroy_time: Option<String>

Output only. The time this SecretVersion was destroyed. Only present if state is DESTROYED.

name: Option<String>

Output only. The resource name of the SecretVersion in the format projects/*/secrets/*/versions/*. SecretVersion IDs in a Secret start at 1 and are incremented for each subsequent version of the secret.

replication_status: Option<ReplicationStatus>

The replication status of the SecretVersion.

state: Option<String>

Output only. The current state of the SecretVersion.

Trait Implementations

impl Clone for SecretVersion[src]

impl Debug for SecretVersion[src]

impl Default for SecretVersion[src]

impl<'de> Deserialize<'de> for SecretVersion[src]

impl ResponseResult for SecretVersion[src]

impl Serialize for SecretVersion[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.