pub struct LoggingAzureblobAdditional {
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). Note that Microsoft Azure Storage has block size limits.
Implementations§
Source§impl LoggingAzureblobAdditional
impl LoggingAzureblobAdditional
pub fn new() -> LoggingAzureblobAdditional
Trait Implementations§
Source§impl Clone for LoggingAzureblobAdditional
impl Clone for LoggingAzureblobAdditional
Source§fn clone(&self) -> LoggingAzureblobAdditional
fn clone(&self) -> LoggingAzureblobAdditional
Returns a duplicate 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 LoggingAzureblobAdditional
impl Debug for LoggingAzureblobAdditional
Source§impl Default for LoggingAzureblobAdditional
impl Default for LoggingAzureblobAdditional
Source§fn default() -> LoggingAzureblobAdditional
fn default() -> LoggingAzureblobAdditional
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoggingAzureblobAdditional
impl<'de> Deserialize<'de> for LoggingAzureblobAdditional
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
impl StructuralPartialEq for LoggingAzureblobAdditional
Auto Trait Implementations§
impl Freeze for LoggingAzureblobAdditional
impl RefUnwindSafe for LoggingAzureblobAdditional
impl Send for LoggingAzureblobAdditional
impl Sync for LoggingAzureblobAdditional
impl Unpin for LoggingAzureblobAdditional
impl UnwindSafe for LoggingAzureblobAdditional
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