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

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:

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

impl RefUnwindSafe for AccessApprovalSettings

impl Send for AccessApprovalSettings

impl Sync for AccessApprovalSettings

impl Unpin for AccessApprovalSettings

impl UnwindSafe for AccessApprovalSettings

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][+]