Struct google_sql1_beta4::api::AclEntry
source · pub struct AclEntry {
pub expiration_time: Option<DateTime<Utc>>,
pub kind: Option<String>,
pub name: Option<String>,
pub value: Option<String>,
}Expand description
An entry for an Access Control list.
This type is not used in any activity, and only used as part of another schema.
Fields§
§expiration_time: Option<DateTime<Utc>>The time when this access control entry expires in RFC 3339 format, for example
2012-11-15T16:19:00.094Z.
kind: Option<String>This is always sql#aclEntry.
name: Option<String>Optional. A label to identify this entry.
value: Option<String>The whitelisted value for the access control list.
Trait Implementations§
source§impl<'de> Deserialize<'de> for AclEntry
impl<'de> Deserialize<'de> for AclEntry
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