pub struct PostgreSqlServerStorageProfile {
pub backup_retention_days: Option<i32>,
pub geo_redundant_backup: Option<String>,
pub storage_autogrow: Option<PostgreSqlServerStorageProfileStorageAutogrow>,
pub storage_mb: Option<i32>,
}Fields§
§backup_retention_days: Option<i32>BackupRetentionDays - Backup retention days for the server.
geo_redundant_backup: Option<String>GeoRedundantBackup - Enable Geo-redundant or not for server backup. Possible values include: ‘Enabled’, ‘Disabled’
storage_autogrow: Option<PostgreSqlServerStorageProfileStorageAutogrow>StorageAutogrow - Enable Storage Auto Grow. Possible values include: ‘Enabled’, ‘Disabled’
storage_mb: Option<i32>StorageMB - Max storage allowed for a server.
Trait Implementations§
Source§impl Clone for PostgreSqlServerStorageProfile
impl Clone for PostgreSqlServerStorageProfile
Source§fn clone(&self) -> PostgreSqlServerStorageProfile
fn clone(&self) -> PostgreSqlServerStorageProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PostgreSqlServerStorageProfile
impl Default for PostgreSqlServerStorageProfile
Source§fn default() -> PostgreSqlServerStorageProfile
fn default() -> PostgreSqlServerStorageProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostgreSqlServerStorageProfile
impl<'de> Deserialize<'de> for PostgreSqlServerStorageProfile
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
Source§impl PartialEq for PostgreSqlServerStorageProfile
impl PartialEq for PostgreSqlServerStorageProfile
Source§fn eq(&self, other: &PostgreSqlServerStorageProfile) -> bool
fn eq(&self, other: &PostgreSqlServerStorageProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PostgreSqlServerStorageProfile
Auto Trait Implementations§
impl Freeze for PostgreSqlServerStorageProfile
impl RefUnwindSafe for PostgreSqlServerStorageProfile
impl Send for PostgreSqlServerStorageProfile
impl Sync for PostgreSqlServerStorageProfile
impl Unpin for PostgreSqlServerStorageProfile
impl UnsafeUnpin for PostgreSqlServerStorageProfile
impl UnwindSafe for PostgreSqlServerStorageProfile
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