Class: Google::Apis::AccessapprovalV1beta1::AccessApprovalSettings
- Inherits:
-
Object
- Object
- Google::Apis::AccessapprovalV1beta1::AccessApprovalSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/accessapproval_v1beta1/classes.rb,
generated/google/apis/accessapproval_v1beta1/representations.rb,
generated/google/apis/accessapproval_v1beta1/representations.rb
Overview
Settings on a Project/Folder/Organization related to Access Approval.
Instance Attribute Summary collapse
-
#enrolled_services ⇒ Array<Google::Apis::AccessapprovalV1beta1::EnrolledService>
A list of Google Cloud Services for which the given resource has Access Approval enrolled.
-
#name ⇒ String
The resource name of the settings.
-
#notification_emails ⇒ Array<String>
A list of email addresses to which notifications relating to approval requests should be sent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccessApprovalSettings
constructor
A new instance of AccessApprovalSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccessApprovalSettings
Returns a new instance of AccessApprovalSettings
58 59 60 |
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 58 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enrolled_services ⇒ Array<Google::Apis::AccessapprovalV1beta1::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.
Corresponds to the JSON property enrolledServices
39 40 41 |
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 39 def enrolled_services @enrolled_services end |
#name ⇒ String
The resource name of the settings. Format is one of:
- "projects/
project_id
/accessApprovalSettings" - "folders/
folder_id
/accessApprovalSettings" - "organizations/
organization_id
/accessApprovalSettings"
-
Corresponds to the JSON property
name
49 50 51 |
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 49 def name @name end |
#notification_emails ⇒ Array<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.
Corresponds to the JSON property notificationEmails
56 57 58 |
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 56 def notification_emails @notification_emails end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
63 64 65 66 67 |
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 63 def update!(**args) @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 |