Class: Google::Apis::ConnectorsV1::RoleGrant
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::RoleGrant
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
This configuration defines all the Cloud IAM roles that needs to be granted to a particular Google Cloud resource for the selected principal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a 'grant' button to do the same on behalf of the user.
Instance Attribute Summary collapse
-
#helper_text_template ⇒ String
Optional.
-
#principal ⇒ String
Optional.
-
#resource ⇒ Google::Apis::ConnectorsV1::Resource
Resource definition Corresponds to the JSON property
resource
. -
#roles ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RoleGrant
constructor
A new instance of RoleGrant.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RoleGrant
Returns a new instance of RoleGrant.
5359 5360 5361 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5359 def initialize(**args) update!(**args) end |
Instance Attribute Details
#helper_text_template ⇒ String
Optional. Template that UI can use to provide helper text to customers.
Corresponds to the JSON property helperTextTemplate
5342 5343 5344 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5342 def helper_text_template @helper_text_template end |
#principal ⇒ String
Optional. Prinicipal/Identity for whom the role need to assigned.
Corresponds to the JSON property principal
5347 5348 5349 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5347 def principal @principal end |
#resource ⇒ Google::Apis::ConnectorsV1::Resource
Resource definition
Corresponds to the JSON property resource
5352 5353 5354 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5352 def resource @resource end |
#roles ⇒ Array<String>
Optional. List of roles that need to be granted.
Corresponds to the JSON property roles
5357 5358 5359 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5357 def roles @roles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5364 5365 5366 5367 5368 5369 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5364 def update!(**args) @helper_text_template = args[:helper_text_template] if args.key?(:helper_text_template) @principal = args[:principal] if args.key?(:principal) @resource = args[:resource] if args.key?(:resource) @roles = args[:roles] if args.key?(:roles) end |