Class: SystemCustominfosSet

Inherits:
OperationSet show all
Defined in:
lib/satops/operator.rb

Instance Attribute Summary

Attributes inherited from OperationSet

#list

Instance Method Summary collapse

Methods inherited from OperationSet

#-, #delete_all, #extra, #fetch, #initialize

Constructor Details

This class inherits a constructor from OperationSet

Instance Method Details

#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

#include?(arg) ⇒ Boolean

Returns:

  • (Boolean)


1080
1081
1082
# File 'lib/satops/operator.rb', line 1080

def include?(arg)
  include_label?(arg)
end