Class: Google::Apis::AccessapprovalV1::EnrolledService

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/accessapproval_v1/classes.rb,
generated/google/apis/accessapproval_v1/representations.rb,
generated/google/apis/accessapproval_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnrolledService

Returns a new instance of EnrolledService.



342
343
344
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 342

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cloud_productString

The product for which Access Approval will be enrolled. Allowed values are listed below (case-sensitive): * all * App Engine * BigQuery * Cloud Bigtable * Cloud Key Management Service * Compute Engine * Cloud Dataflow * Cloud Identity and Access Management * Cloud Pub/Sub * Cloud Storage * Persistent Disk Note: These values are supported as input for legacy purposes, but will not be returned from the API. * all * appengine.googleapis.com * bigquery. googleapis.com * bigtable.googleapis.com * cloudkms.googleapis.com * compute. googleapis.com * dataflow.googleapis.com * iam.googleapis.com * pubsub. 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 https://cloud.google.com/ access-approval/docs/supported-services Corresponds to the JSON property cloudProduct

Returns:

  • (String)


335
336
337
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 335

def cloud_product
  @cloud_product
end

#enrollment_levelString

The enrollment level of the service. Corresponds to the JSON property enrollmentLevel

Returns:

  • (String)


340
341
342
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 340

def enrollment_level
  @enrollment_level
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



347
348
349
350
# File 'generated/google/apis/accessapproval_v1/classes.rb', line 347

def update!(**args)
  @cloud_product = args[:cloud_product] if args.key?(:cloud_product)
  @enrollment_level = args[:enrollment_level] if args.key?(:enrollment_level)
end