Class: PowerBI::ParameterArray
Class Method Summary collapse
Instance Method Summary collapse
- #get_data ⇒ Object
-
#initialize(tenant, dataset) ⇒ ParameterArray
constructor
A new instance of ParameterArray.
Methods inherited from Array
Constructor Details
#initialize(tenant, dataset) ⇒ ParameterArray
Returns a new instance of ParameterArray.
23 24 25 26 |
# File 'lib/power-bi/parameter.rb', line 23 def initialize(tenant, dataset) super(tenant, dataset) @dataset = dataset end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class PowerBI::Array
Class Method Details
Instance Method Details
#get_data ⇒ Object
32 33 34 |
# File 'lib/power-bi/parameter.rb', line 32 def get_data @tenant.get("/groups/#{@dataset.workspace.id}/datasets/#{@dataset.id}/parameters")[:value] end |