class Conjur::DSL2::Types::Role

Public Instance Methods

immutable_attribute_names() click to toggle source
# File lib/conjur/dsl2/types/records.rb, line 124
def immutable_attribute_names
  []
end
role_id() click to toggle source
# File lib/conjur/dsl2/types/records.rb, line 121
def role_id; id; end
role_kind() click to toggle source
# File lib/conjur/dsl2/types/records.rb, line 122
def role_kind; kind; end
roleid(default_account = nil) click to toggle source
# File lib/conjur/dsl2/types/records.rb, line 116
def roleid default_account = nil
  raise "account is required" unless account || default_account
  [ account || default_account, kind, id ].join(":")
end