Class: Google::Apis::AccessapprovalV1beta1::AccessApprovalSettings

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

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_servicesArray<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

#nameString

The resource name of the settings. Format is one of:

  1. "projects/project_id/accessApprovalSettings"
  2. "folders/folder_id/accessApprovalSettings"
  3. "organizations/organization_id/accessApprovalSettings"
    1. Corresponds to the JSON property name

Returns:

  • (String)


49
50
51
# File 'generated/google/apis/accessapproval_v1beta1/classes.rb', line 49

def name
  @name
end

#notification_emailsArray<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

Returns:

  • (Array<String>)


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