class DTK::Client::Operation::Service::List

Public Class Methods

execute(args = Args.new) click to toggle source
# File lib/client/operation/service/list.rb, line 21
def self.execute(args = Args.new)
  wrap_operation(args) do |args|
    query_string_hash = QueryStringHash.new(
      :detail_level => 'nodes',
      :include_namespaces => true
    )
    rest_get("#{BaseRoute}/list", query_string_hash)
  end.set_render_as_table!(nil, '* denotes that service instance is default context')
end