Method: Fission::VM#conf_file_data

Defined in:
lib/fission/vm.rb

#conf_file_dataObject

Public: Provides the configuration data stored in the VM’s configuration file (‘.vmx’).

Examples

@vm.conf_file_data

Returns a Response with the result. If successful, the Response’s data attribute with be a Hash of the configuration data. All of the keys/values in the configuration data will be a String. If there is an error, an unsuccessful Response will be returned.



429
430
431
# File 'lib/fission/vm.rb', line 429

def conf_file_data
  VMConfiguration.new(self).config_data
end