pub struct CidrAllowlistUpdateRequest {
pub subscription_id: Option<i32>,
pub cidr_ips: Option<Vec<String>>,
pub security_group_ids: Option<Vec<String>>,
pub command_type: Option<String>,
pub extra: Value,
}
Expand description
Update Pro subscription
Fields§
§subscription_id: Option<i32>
§cidr_ips: Option<Vec<String>>
List of CIDR values. Example: [‘10.1.1.0/32’]
security_group_ids: Option<Vec<String>>
List of AWS Security group IDs.
command_type: Option<String>
§extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for CidrAllowlistUpdateRequest
impl Clone for CidrAllowlistUpdateRequest
Source§fn clone(&self) -> CidrAllowlistUpdateRequest
fn clone(&self) -> CidrAllowlistUpdateRequest
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 CidrAllowlistUpdateRequest
impl Debug for CidrAllowlistUpdateRequest
Source§impl<'de> Deserialize<'de> for CidrAllowlistUpdateRequest
impl<'de> Deserialize<'de> for CidrAllowlistUpdateRequest
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
Auto Trait Implementations§
impl Freeze for CidrAllowlistUpdateRequest
impl RefUnwindSafe for CidrAllowlistUpdateRequest
impl Send for CidrAllowlistUpdateRequest
impl Sync for CidrAllowlistUpdateRequest
impl Unpin for CidrAllowlistUpdateRequest
impl UnwindSafe for CidrAllowlistUpdateRequest
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