Struct gapi_grpc::google::logging::v2::UpdateCmekSettingsRequest[][src]

pub struct UpdateCmekSettingsRequest {
    pub name: String,
    pub cmek_settings: Option<CmekSettings>,
    pub update_mask: Option<FieldMask>,
}

The parameters to [UpdateCmekSettings][google.logging.v2.ConfigServiceV2.UpdateCmekSettings].

See Enabling CMEK for Logs Router for more information.

Fields

name: String

Required. The resource name for the CMEK settings to update.

"projects/[PROJECT_ID]/cmekSettings"
"organizations/[ORGANIZATION_ID]/cmekSettings"
"billingAccounts/[BILLING_ACCOUNT_ID]/cmekSettings"
"folders/[FOLDER_ID]/cmekSettings"

Example: "organizations/12345/cmekSettings".

Note: CMEK for the Logs Router can currently only be configured for GCP organizations. Once configured, it applies to all projects and folders in the GCP organization.

cmek_settings: Option<CmekSettings>

Required. The CMEK settings to update.

See Enabling CMEK for Logs Router for more information.

update_mask: Option<FieldMask>

Optional. Field mask identifying which fields from cmek_settings should be updated. A field will be overwritten if and only if it is in the update mask. Output only fields cannot be updated.

See [FieldMask][google.protobuf.FieldMask] for more information.

Example: "updateMask=kmsKeyName"

Trait Implementations

impl Clone for UpdateCmekSettingsRequest[src]

impl Debug for UpdateCmekSettingsRequest[src]

impl Default for UpdateCmekSettingsRequest[src]

impl Message for UpdateCmekSettingsRequest[src]

impl PartialEq<UpdateCmekSettingsRequest> for UpdateCmekSettingsRequest[src]

impl StructuralPartialEq for UpdateCmekSettingsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for UpdateCmekSettingsRequest

impl Send for UpdateCmekSettingsRequest

impl Sync for UpdateCmekSettingsRequest

impl Unpin for UpdateCmekSettingsRequest

impl UnwindSafe for UpdateCmekSettingsRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]