module Conjur::DSL2::Ruby::Grants

Public Instance Methods

grant(&block) click to toggle source
# File lib/conjur/dsl2/ruby/loader.rb, line 80
def grant &block
  custom_statement(block) do
    Conjur::DSL2::Types::Grant.new
  end
end
revoke(&block) click to toggle source
# File lib/conjur/dsl2/ruby/loader.rb, line 86
def revoke &block
  custom_statement(block) do
    Conjur::DSL2::Types::Revoke.new
  end
end