#[non_exhaustive]pub struct GetVpcFlowLogsConfigRequest {
pub name: String,
/* private fields */
}Expand description
Request for the GetVpcFlowLogsConfig method.
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.name: StringRequired. The resource name of the VpcFlowLogsConfig, in one of the following formats:
-
For project-level resources:
projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_logs_config_id} -
For organization-level resources:
organizations/{organization_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_logs_config_id}
Implementations§
Trait Implementations§
Source§impl Clone for GetVpcFlowLogsConfigRequest
impl Clone for GetVpcFlowLogsConfigRequest
Source§fn clone(&self) -> GetVpcFlowLogsConfigRequest
fn clone(&self) -> GetVpcFlowLogsConfigRequest
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 Debug for GetVpcFlowLogsConfigRequest
impl Debug for GetVpcFlowLogsConfigRequest
Source§impl Default for GetVpcFlowLogsConfigRequest
impl Default for GetVpcFlowLogsConfigRequest
Source§fn default() -> GetVpcFlowLogsConfigRequest
fn default() -> GetVpcFlowLogsConfigRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetVpcFlowLogsConfigRequest
impl PartialEq for GetVpcFlowLogsConfigRequest
Source§fn eq(&self, other: &GetVpcFlowLogsConfigRequest) -> bool
fn eq(&self, other: &GetVpcFlowLogsConfigRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetVpcFlowLogsConfigRequest
Auto Trait Implementations§
impl Freeze for GetVpcFlowLogsConfigRequest
impl RefUnwindSafe for GetVpcFlowLogsConfigRequest
impl Send for GetVpcFlowLogsConfigRequest
impl Sync for GetVpcFlowLogsConfigRequest
impl Unpin for GetVpcFlowLogsConfigRequest
impl UnsafeUnpin for GetVpcFlowLogsConfigRequest
impl UnwindSafe for GetVpcFlowLogsConfigRequest
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