class Google::Apis::AccessapprovalV1::EnrolledService

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

Attributes

cloud_product[RW]

The product for which Access Approval will be enrolled. Allowed values are listed below (case-sensitive): * all * GA * App Engine * BigQuery * Cloud Bigtable * Cloud Key Management Service * Compute Engine * Cloud Dataflow * Cloud DLP * Cloud EKM * Cloud HSM * Cloud Identity and Access Management * Cloud Logging * Cloud Pub/Sub * Cloud Spanner * Cloud SQL * Cloud Storage * Google Kubernetes Engine * Persistent Disk * Speaker ID Note: These values are supported as input for legacy purposes, but will not be returned from the API.

  • all * ga-only * appengine.googleapis.com * bigquery.googleapis.com *

bigtable.googleapis.com * container.googleapis.com * cloudkms.googleapis.com * cloudsql.googleapis.com * compute.googleapis.com * dataflow.googleapis.com * dlp.googleapis.com * iam.googleapis.com * logging.googleapis.com * pubsub. googleapis.com * spanner.googleapis.com * speakerid.googleapis.com * storage. googleapis.com Calls to UpdateAccessApprovalSettings using 'all' or any of the XXX.googleapis.com will be translated to the associated product name ('all', ' App Engine', etc.). Note: 'all' will enroll the resource in all products supported at both 'GA' and 'Preview' levels. More information about levels of support is available at cloud.google.com/access-approval/docs/ supported-services Corresponds to the JSON property `cloudProduct` @return [String]

enrollment_level[RW]

The enrollment level of the service. Corresponds to the JSON property `enrollmentLevel` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/accessapproval_v1/classes.rb, line 346
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/accessapproval_v1/classes.rb, line 351
def update!(**args)
  @cloud_product = args[:cloud_product] if args.key?(:cloud_product)
  @enrollment_level = args[:enrollment_level] if args.key?(:enrollment_level)
end