Method: OvirtSDK4::AgentConfiguration#initialize
- Defined in:
- lib/ovirtsdk4/types.rb
#initialize(opts = {}) ⇒ AgentConfiguration
Creates a new instance of the OvirtSDK4::AgentConfiguration class.
912 913 914 915 916 917 918 919 920 |
# File 'lib/ovirtsdk4/types.rb', line 912 def initialize(opts = {}) super(opts) self.address = opts[:address] self.broker_type = opts[:broker_type] self.network_mappings = opts[:network_mappings] self.password = opts[:password] self.port = opts[:port] self.username = opts[:username] end |