Method: SystemCustominfosSet#fetch_all

Defined in:
lib/satops/operator.rb

#fetch_allObject



1072
1073
1074
1075
1076
1077
1078
# File 'lib/satops/operator.rb', line 1072

def fetch_all
  system_infos=[]
  @sat.systemCustominfo.listAllKeys.each do |custom_info|
    system_infos << SystemCustominfo.new(custom_info)
  end
  system_infos
end