class TreasureData::AccessControl
Attributes
action[R]
@!attribute [r] subject @!attribute [r] action @!attribute [r] scope @!attribute [r] grant_option
grant_option[R]
@!attribute [r] subject @!attribute [r] action @!attribute [r] scope @!attribute [r] grant_option
scope[R]
@!attribute [r] subject @!attribute [r] action @!attribute [r] scope @!attribute [r] grant_option
subject[R]
@!attribute [r] subject @!attribute [r] action @!attribute [r] scope @!attribute [r] grant_option
Public Class Methods
new(client, subject, action, scope, grant_option)
click to toggle source
@param [TreasureData::Client] client @param [String] subject @param [String] action @param [String] scope @param [Array] grant_option
Calls superclass method
TreasureData::Model::new
# File lib/td/client/model.rb, line 813 def initialize(client, subject, action, scope, grant_option) super(client) @subject = subject @action = action @scope = scope @grant_option = grant_option end