Class: Google::Apis::ComputeAlpha::RbacPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::RbacPolicy
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the RbacPolicy.
-
#permissions ⇒ Array<Google::Apis::ComputeAlpha::Permission>
The list of permissions.
-
#principals ⇒ Array<Google::Apis::ComputeAlpha::Principal>
The list of principals.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RbacPolicy
constructor
A new instance of RbacPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RbacPolicy
Returns a new instance of RbacPolicy.
47014 47015 47016 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 47014 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the RbacPolicy.
Corresponds to the JSON property name
47002 47003 47004 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 47002 def name @name end |
#permissions ⇒ Array<Google::Apis::ComputeAlpha::Permission>
The list of permissions.
Corresponds to the JSON property permissions
47007 47008 47009 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 47007 def @permissions end |
#principals ⇒ Array<Google::Apis::ComputeAlpha::Principal>
The list of principals.
Corresponds to the JSON property principals
47012 47013 47014 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 47012 def principals @principals end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
47019 47020 47021 47022 47023 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 47019 def update!(**args) @name = args[:name] if args.key?(:name) @permissions = args[:permissions] if args.key?(:permissions) @principals = args[:principals] if args.key?(:principals) end |