[][src]Struct google_accessapproval1_beta1::AccessApprovalSettings

pub struct AccessApprovalSettings {
    pub enrolled_ancestor: Option<bool>,
    pub notification_emails: Option<Vec<String>>,
    pub name: Option<String>,
    pub enrolled_services: Option<Vec<EnrolledService>>,
}

Settings on a Project/Folder/Organization related to Access Approval.

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).

Fields

enrolled_ancestor: Option<bool>

Output only. This field is read only (not settable via UpdateAccessAccessApprovalSettings method). If the field is true, that indicates that at least one service is enrolled for Access Approval in one or more ancestors of the Project or Folder (this field will always be unset for the organization since organizations do not have ancestors).

notification_emails: Option<Vec<String>>

A list of email addresses to which notifications relating to approval requests should be sent. Notifications relating to a resource will be sent to all emails in the settings of ancestor resources of that resource. A maximum of 50 email addresses are allowed.

name: Option<String>

The resource name of the settings. Format is one of:

  1. "projects/{project_id}/accessApprovalSettings"
  2. "folders/{folder_id}/accessApprovalSettings"
  3. "organizations/{organization_id}/accessApprovalSettings"
    enrolled_services: Option<Vec<EnrolledService>>

    A list of Google Cloud Services for which the given resource has Access Approval enrolled. Access requests for the resource given by name against any of these services contained here will be required to have explicit approval. If name refers to an organization, enrollment can be done for individual services. If name refers to a folder or project, enrollment can only be done on an all or nothing basis.

    If a cloud_product is repeated in this list, the first entry will be honored and all following entries will be discarded. A maximum of 10 enrolled services will be enforced, to be expanded as the set of supported services is expanded.

    Trait Implementations

    impl Clone for AccessApprovalSettings[src]

    impl Debug for AccessApprovalSettings[src]

    impl Default for AccessApprovalSettings[src]

    impl<'de> Deserialize<'de> for AccessApprovalSettings[src]

    impl RequestValue for AccessApprovalSettings[src]

    impl ResponseResult for AccessApprovalSettings[src]

    impl Serialize for AccessApprovalSettings[src]

    Auto Trait Implementations

    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> DeserializeOwned for T where
        T: for<'de> Deserialize<'de>, 
    [src]

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

    impl<T, U> Into<U> for T where
        U: From<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<T> Typeable for T where
        T: Any