pub struct PolicyDelegationSettings {
pub iam_permission: Option<String>,
pub iam_service_name: Option<String>,
pub policy_name: Option<PolicyName>,
pub resource: Option<Resource>,
}Expand description
PolicyDelegationConfig allows google-internal teams to use IAP for apps hosted in a tenant project. Using these settings, the app can delegate permission check to happen against the linked customer project. This is only ever supposed to be used by google internal teams, hence the restriction on the proto.
This type is not used in any activity, and only used as part of another schema.
Fields§
§iam_permission: Option<String>Permission to check in IAM.
iam_service_name: Option<String>The DNS name of the service (e.g. “resourcemanager.googleapis.com”). This should be the domain name part of the full resource names (see https://aip.dev/122#full-resource-names), which is usually the same as IamServiceSpec.service of the service where the resource type is defined.
policy_name: Option<PolicyName>Policy name to be checked
resource: Option<Resource>IAM resource to check permission on
Trait Implementations§
Source§impl Clone for PolicyDelegationSettings
impl Clone for PolicyDelegationSettings
Source§fn clone(&self) -> PolicyDelegationSettings
fn clone(&self) -> PolicyDelegationSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more