#[non_exhaustive]pub struct GetCmekSettingsRequest {
pub name: String,
/* private fields */
}Expand description
The parameters to GetCmekSettings.
See Enabling CMEK for Log Router for more information.
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 for which to retrieve CMEK settings.
"projects/[PROJECT_ID]/cmekSettings"
"organizations/[ORGANIZATION_ID]/cmekSettings"
"billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings"
"folders/[FOLDER_ID]/cmekSettings"For example:
"organizations/12345/cmekSettings"
Note: CMEK for the Log Router can be configured for Google Cloud projects, folders, organizations and billing accounts. Once configured for an organization, it applies to all projects and folders in the Google Cloud organization.
Implementations§
Trait Implementations§
Source§impl Clone for GetCmekSettingsRequest
impl Clone for GetCmekSettingsRequest
Source§fn clone(&self) -> GetCmekSettingsRequest
fn clone(&self) -> GetCmekSettingsRequest
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 GetCmekSettingsRequest
impl Debug for GetCmekSettingsRequest
Source§impl Default for GetCmekSettingsRequest
impl Default for GetCmekSettingsRequest
Source§fn default() -> GetCmekSettingsRequest
fn default() -> GetCmekSettingsRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetCmekSettingsRequest
impl Message for GetCmekSettingsRequest
Source§impl PartialEq for GetCmekSettingsRequest
impl PartialEq for GetCmekSettingsRequest
impl StructuralPartialEq for GetCmekSettingsRequest
Auto Trait Implementations§
impl Freeze for GetCmekSettingsRequest
impl RefUnwindSafe for GetCmekSettingsRequest
impl Send for GetCmekSettingsRequest
impl Sync for GetCmekSettingsRequest
impl Unpin for GetCmekSettingsRequest
impl UnwindSafe for GetCmekSettingsRequest
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