Class: Google::Apis::ComputeAlpha::PermissionConstraint
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::PermissionConstraint
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
Custom constraint that specifies a key and a list of allowed values for Istio attributes.
Instance Attribute Summary collapse
-
#key ⇒ String
Key of the constraint.
-
#values ⇒ Array<String>
A list of allowed values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PermissionConstraint
constructor
A new instance of PermissionConstraint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ PermissionConstraint
Returns a new instance of PermissionConstraint
21803 21804 21805 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 21803 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Key of the constraint.
Corresponds to the JSON property key
21796 21797 21798 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 21796 def key @key end |
#values ⇒ Array<String>
A list of allowed values.
Corresponds to the JSON property values
21801 21802 21803 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 21801 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21808 21809 21810 21811 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 21808 def update!(**args) @key = args[:key] if args.key?(:key) @values = args[:values] if args.key?(:values) end |