pub struct ReadSecretIDResponse {
pub cidr_list: Vec<String>,
pub creation_time: String,
pub expiration_time: String,
pub last_updated_time: String,
pub metadata: Option<HashMap<String, String>>,
pub secret_id_accessor: String,
pub secret_id_num_uses: u64,
pub secret_id_ttl: u64,
pub token_bound_cidrs: Vec<String>,
}
Expand description
Response from executing ReadSecretIDRequest
Fields§
§cidr_list: Vec<String>
§creation_time: String
§expiration_time: String
§last_updated_time: String
§metadata: Option<HashMap<String, String>>
§secret_id_accessor: String
§secret_id_num_uses: u64
§secret_id_ttl: u64
§token_bound_cidrs: Vec<String>
Trait Implementations§
source§impl Debug for ReadSecretIDResponse
impl Debug for ReadSecretIDResponse
source§impl<'de> Deserialize<'de> for ReadSecretIDResponse
impl<'de> Deserialize<'de> for ReadSecretIDResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReadSecretIDResponse
impl RefUnwindSafe for ReadSecretIDResponse
impl Send for ReadSecretIDResponse
impl Sync for ReadSecretIDResponse
impl Unpin for ReadSecretIDResponse
impl UnwindSafe for ReadSecretIDResponse
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more