Struct fastly_api::models::logging_gcs_common::LoggingGcsCommon
source · pub struct LoggingGcsCommon {
pub user: Option<String>,
pub secret_key: Option<String>,
pub account_name: Option<String>,
}
Fields§
§user: Option<String>
Your Google Cloud Platform service account email address. The client_email
field in your service account authentication JSON. Not required if account_name
is specified.
secret_key: Option<String>
Your Google Cloud Platform account secret key. The private_key
field in your service account authentication JSON. Not required if account_name
is specified.
account_name: Option<String>
The name of the Google Cloud Platform service account associated with the target log collection service. Not required if user
and secret_key
are provided.
Implementations§
source§impl LoggingGcsCommon
impl LoggingGcsCommon
pub fn new() -> LoggingGcsCommon
Trait Implementations§
source§impl Clone for LoggingGcsCommon
impl Clone for LoggingGcsCommon
source§fn clone(&self) -> LoggingGcsCommon
fn clone(&self) -> LoggingGcsCommon
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LoggingGcsCommon
impl Debug for LoggingGcsCommon
source§impl Default for LoggingGcsCommon
impl Default for LoggingGcsCommon
source§fn default() -> LoggingGcsCommon
fn default() -> LoggingGcsCommon
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LoggingGcsCommon
impl<'de> Deserialize<'de> for LoggingGcsCommon
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