pub struct LoggingAzureblobAllOf {
pub path: Option<String>,
pub account_name: Option<String>,
pub container: Option<String>,
pub sas_token: Option<String>,
pub public_key: Option<String>,
pub file_max_bytes: Option<i32>,
}
Fields§
§path: Option<String>
The path to upload logs to.
account_name: Option<String>
The unique Azure Blob Storage namespace in which your data objects are stored. Required.
container: Option<String>
The name of the Azure Blob Storage container in which to store logs. Required.
sas_token: Option<String>
The Azure shared access signature providing write access to the blob service objects. Be sure to update your token before it expires or the logging functionality will not work. Required.
public_key: Option<String>
A PGP public key that Fastly will use to encrypt your log files before writing them to disk.
file_max_bytes: Option<i32>
The maximum number of bytes for each uploaded file. A value of 0 can be used to indicate there is no limit on the size of uploaded files, otherwise the minimum value is 1048576 bytes (1 MiB.)
Implementations§
source§impl LoggingAzureblobAllOf
impl LoggingAzureblobAllOf
pub fn new() -> LoggingAzureblobAllOf
Trait Implementations§
source§impl Clone for LoggingAzureblobAllOf
impl Clone for LoggingAzureblobAllOf
source§fn clone(&self) -> LoggingAzureblobAllOf
fn clone(&self) -> LoggingAzureblobAllOf
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 LoggingAzureblobAllOf
impl Debug for LoggingAzureblobAllOf
source§impl Default for LoggingAzureblobAllOf
impl Default for LoggingAzureblobAllOf
source§fn default() -> LoggingAzureblobAllOf
fn default() -> LoggingAzureblobAllOf
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LoggingAzureblobAllOf
impl<'de> Deserialize<'de> for LoggingAzureblobAllOf
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