#[non_exhaustive]pub struct CreateIdentityAwareProxyClientRequest {
pub parent: String,
pub identity_aware_proxy_client: Option<IdentityAwareProxyClient>,
/* private fields */
}Expand description
The request sent to CreateIdentityAwareProxyClient.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.parent: StringRequired. Path to create the client in. In the following format: projects/{project_number/id}/brands/{brand}. The project must belong to a G Suite account.
identity_aware_proxy_client: Option<IdentityAwareProxyClient>Required. Identity Aware Proxy Client to be created.
Implementations§
Source§impl CreateIdentityAwareProxyClientRequest
impl CreateIdentityAwareProxyClientRequest
pub fn new() -> Self
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sets the value of parent.
Sourcepub fn set_identity_aware_proxy_client<T>(self, v: T) -> Selfwhere
T: Into<IdentityAwareProxyClient>,
pub fn set_identity_aware_proxy_client<T>(self, v: T) -> Selfwhere
T: Into<IdentityAwareProxyClient>,
Sets the value of identity_aware_proxy_client.
Sourcepub fn set_or_clear_identity_aware_proxy_client<T>(self, v: Option<T>) -> Selfwhere
T: Into<IdentityAwareProxyClient>,
pub fn set_or_clear_identity_aware_proxy_client<T>(self, v: Option<T>) -> Selfwhere
T: Into<IdentityAwareProxyClient>,
Sets or clears the value of identity_aware_proxy_client.
Trait Implementations§
Source§impl Clone for CreateIdentityAwareProxyClientRequest
impl Clone for CreateIdentityAwareProxyClientRequest
Source§fn clone(&self) -> CreateIdentityAwareProxyClientRequest
fn clone(&self) -> CreateIdentityAwareProxyClientRequest
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 Default for CreateIdentityAwareProxyClientRequest
impl Default for CreateIdentityAwareProxyClientRequest
Source§fn default() -> CreateIdentityAwareProxyClientRequest
fn default() -> CreateIdentityAwareProxyClientRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateIdentityAwareProxyClientRequest
impl PartialEq for CreateIdentityAwareProxyClientRequest
Source§fn eq(&self, other: &CreateIdentityAwareProxyClientRequest) -> bool
fn eq(&self, other: &CreateIdentityAwareProxyClientRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateIdentityAwareProxyClientRequest
Auto Trait Implementations§
impl Freeze for CreateIdentityAwareProxyClientRequest
impl RefUnwindSafe for CreateIdentityAwareProxyClientRequest
impl Send for CreateIdentityAwareProxyClientRequest
impl Sync for CreateIdentityAwareProxyClientRequest
impl Unpin for CreateIdentityAwareProxyClientRequest
impl UnwindSafe for CreateIdentityAwareProxyClientRequest
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