Method: Aliyun::Odps::Functions#get
- Defined in:
- lib/aliyun/odps/model/functions.rb
#get(name) ⇒ Function Also known as: function
Get Function
32 33 34 35 36 37 |
# File 'lib/aliyun/odps/model/functions.rb', line 32 def get(name) path = "/projects/#{project.name}/registration/functions/#{name}" result = client.get(path).parsed_response Function.new(Utils.dig_value(result, 'Function')) end |