pub struct TunnelDestGroup {
pub cidrs: Option<Vec<String>>,
pub fqdns: Option<Vec<String>>,
pub name: Option<String>,
}Expand description
A TunnelDestGroup.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- iap_tunnel locations dest groups create projects (request|response)
- iap_tunnel locations dest groups get projects (response)
- iap_tunnel locations dest groups patch projects (request|response)
Fields§
§cidrs: Option<Vec<String>>Optional. Unordered list. List of CIDRs that this group applies to.
fqdns: Option<Vec<String>>Optional. Unordered list. List of FQDNs that this group applies to.
name: Option<String>Identifier. Identifier for the TunnelDestGroup. Must be unique within the project and contain only lower case letters (a-z) and dashes (-).
Trait Implementations§
Source§impl Clone for TunnelDestGroup
impl Clone for TunnelDestGroup
Source§fn clone(&self) -> TunnelDestGroup
fn clone(&self) -> TunnelDestGroup
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 TunnelDestGroup
impl Debug for TunnelDestGroup
Source§impl Default for TunnelDestGroup
impl Default for TunnelDestGroup
Source§fn default() -> TunnelDestGroup
fn default() -> TunnelDestGroup
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TunnelDestGroup
impl<'de> Deserialize<'de> for TunnelDestGroup
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 Serialize for TunnelDestGroup
impl Serialize for TunnelDestGroup
impl RequestValue for TunnelDestGroup
impl ResponseResult for TunnelDestGroup
Auto Trait Implementations§
impl Freeze for TunnelDestGroup
impl RefUnwindSafe for TunnelDestGroup
impl Send for TunnelDestGroup
impl Sync for TunnelDestGroup
impl Unpin for TunnelDestGroup
impl UnwindSafe for TunnelDestGroup
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