Method: Akeyless::ReverseRBAC#list_invalid_properties
- Defined in:
- lib/akeyless/models/reverse_rbac.rb
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/akeyless/models/reverse_rbac.rb', line 111 def list_invalid_properties warn '[DEPRECATED] the `list_invalid_properties` method is obsolete' invalid_properties = Array.new if @path.nil? invalid_properties.push('invalid value for "path", path cannot be nil.') end if @type.nil? invalid_properties.push('invalid value for "type", type cannot be nil.') end invalid_properties end |