Class: Google::Apis::ComputeAlpha::PermissionConstraint

Inherits:
Object
  • Object
show all
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

Overview

Custom constraint that specifies a key and a list of allowed values for Istio attributes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PermissionConstraint

Returns a new instance of PermissionConstraint.



32765
32766
32767
# File 'lib/google/apis/compute_alpha/classes.rb', line 32765

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

Instance Attribute Details

#keyString

Key of the constraint. Corresponds to the JSON property key

Returns:

  • (String)


32758
32759
32760
# File 'lib/google/apis/compute_alpha/classes.rb', line 32758

def key
  @key
end

#valuesArray<String>

A list of allowed values. Corresponds to the JSON property values

Returns:

  • (Array<String>)


32763
32764
32765
# File 'lib/google/apis/compute_alpha/classes.rb', line 32763

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



32770
32771
32772
32773
# File 'lib/google/apis/compute_alpha/classes.rb', line 32770

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