class Google::Apis::AccessapprovalV1::AccessApprovalSettings
Settings on a Project/Folder/Organization related to Access Approval.
Attributes
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). Corresponds to the JSON property `enrolledAncestor` @return [Boolean]
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). Corresponds to the JSON property `enrolledAncestor` @return [Boolean]
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. Corresponds to the JSON property `enrolledServices` @return [Array<Google::Apis::AccessapprovalV1::EnrolledService>]
The resource name of the settings. Format is one of: * “projects/`project`/ accessApprovalSettings” * “folders/`folder`/accessApprovalSettings” * “ organizations/`organization`/accessApprovalSettings” Corresponds to the JSON property `name` @return [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. Corresponds to the JSON property `notificationEmails` @return [Array<String>]
Public Class Methods
# File lib/google/apis/accessapproval_v1/classes.rb, line 67 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/accessapproval_v1/classes.rb, line 72 def update!(**args) @enrolled_ancestor = args[:enrolled_ancestor] if args.key?(:enrolled_ancestor) @enrolled_services = args[:enrolled_services] if args.key?(:enrolled_services) @name = args[:name] if args.key?(:name) @notification_emails = args[:notification_emails] if args.key?(:notification_emails) end