[][src]Struct google_accessapproval1::EnrolledService

pub struct EnrolledService {
    pub cloud_product: Option<String>,
    pub enrollment_level: Option<String>,
}

Represents the enrollment of a cloud resource into a specific service.

This type is not used in any activity, and only used as part of another schema.

Fields

cloud_product: Option<String>

The product for which Access Approval will be enrolled. Allowed values are listed below (case-sensitive):

  1. all
  2. appengine.googleapis.com
  3. bigquery.googleapis.com
  4. bigtable.googleapis.com
  5. cloudkms.googleapis.com
  6. compute.googleapis.com
  7. dataflow.googleapis.com
  8. iam.googleapis.com
  9. pubsub.googleapis.com
  10. storage.googleapis.com
    enrollment_level: Option<String>

    The enrollment level of the service.

    Trait Implementations

    impl Clone for EnrolledService[src]

    impl Debug for EnrolledService[src]

    impl Default for EnrolledService[src]

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

    impl Part for EnrolledService[src]

    impl Serialize for EnrolledService[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