[][src]Struct gcp_client::google::cloud::accessapproval::v1::AccessApprovalSettings

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

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

Fields

name: 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"
    notification_emails: 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.

    enrolled_services: 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.

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

    Trait Implementations

    impl Clone for AccessApprovalSettings[src]

    impl Debug for AccessApprovalSettings[src]

    impl Default for AccessApprovalSettings[src]

    impl Message for AccessApprovalSettings[src]

    impl PartialEq<AccessApprovalSettings> for AccessApprovalSettings[src]

    impl StructuralPartialEq 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> From<T> 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>, 

    impl<T> WithSubscriber for T[src]