pub struct PatchedBulkIpSecProposalRequest {
pub id: i32,
pub name: Option<String>,
pub description: Option<String>,
pub encryption_algorithm: Option<EncryptionAlgorithm>,
pub authentication_algorithm: Option<AuthenticationAlgorithm>,
pub sa_lifetime_seconds: Option<Option<i32>>,
pub sa_lifetime_data: Option<Option<i32>>,
pub owner: Option<Option<Box<AsnRangeRequestOwner>>>,
pub comments: Option<String>,
pub tags: Option<Vec<NestedTagRequest>>,
pub custom_fields: Option<HashMap<String, Value>>,
}Expand description
PatchedBulkIpSecProposalRequest : Base serializer class for models inheriting from PrimaryModel.
Fields§
§id: i32§name: Option<String>§description: Option<String>§encryption_algorithm: Option<EncryptionAlgorithm>aes-128-cbc- 128-bit AES (CBC) *aes-128-gcm- 128-bit AES (GCM) *aes-192-cbc- 192-bit AES (CBC) *aes-192-gcm- 192-bit AES (GCM) *aes-256-cbc- 256-bit AES (CBC) *aes-256-gcm- 256-bit AES (GCM) *3des-cbc- 3DES *des-cbc- DES
authentication_algorithm: Option<AuthenticationAlgorithm>hmac-sha1- SHA-1 HMAC *hmac-sha256- SHA-256 HMAC *hmac-sha384- SHA-384 HMAC *hmac-sha512- SHA-512 HMAC *hmac-md5- MD5 HMAC
sa_lifetime_seconds: Option<Option<i32>>Security association lifetime (seconds)
sa_lifetime_data: Option<Option<i32>>Security association lifetime (in kilobytes)
owner: Option<Option<Box<AsnRangeRequestOwner>>>§comments: Option<String>§custom_fields: Option<HashMap<String, Value>>Implementations§
Source§impl PatchedBulkIpSecProposalRequest
impl PatchedBulkIpSecProposalRequest
Sourcepub fn new(id: i32) -> PatchedBulkIpSecProposalRequest
pub fn new(id: i32) -> PatchedBulkIpSecProposalRequest
Base serializer class for models inheriting from PrimaryModel.
Trait Implementations§
Source§impl Clone for PatchedBulkIpSecProposalRequest
impl Clone for PatchedBulkIpSecProposalRequest
Source§fn clone(&self) -> PatchedBulkIpSecProposalRequest
fn clone(&self) -> PatchedBulkIpSecProposalRequest
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 PatchedBulkIpSecProposalRequest
impl Default for PatchedBulkIpSecProposalRequest
Source§fn default() -> PatchedBulkIpSecProposalRequest
fn default() -> PatchedBulkIpSecProposalRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBulkIpSecProposalRequest
impl<'de> Deserialize<'de> for PatchedBulkIpSecProposalRequest
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 PatchedBulkIpSecProposalRequest
Auto Trait Implementations§
impl Freeze for PatchedBulkIpSecProposalRequest
impl RefUnwindSafe for PatchedBulkIpSecProposalRequest
impl Send for PatchedBulkIpSecProposalRequest
impl Sync for PatchedBulkIpSecProposalRequest
impl Unpin for PatchedBulkIpSecProposalRequest
impl UnsafeUnpin for PatchedBulkIpSecProposalRequest
impl UnwindSafe for PatchedBulkIpSecProposalRequest
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