The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Sys::Async::Virt::Interface - Client side proxy to remote LibVirt (network) interface

VERSION

v0.0.1

SYNOPSIS

DESCRIPTION

EVENTS

CONSTRUCTOR

new

METHODS

create

  await $iface->create( $flags = 0 );
  # -> (* no data *)

See documentation of virInterfaceCreate.

destroy

  await $iface->destroy( $flags = 0 );
  # -> (* no data *)

See documentation of virInterfaceDestroy.

get_xml_desc

  $xml = await $iface->get_xml_desc( $flags = 0 );

See documentation of virInterfaceGetXMLDesc.

is_active

  $active = await $iface->is_active;

See documentation of virInterfaceIsActive.

undefine

  await $iface->undefine;
  # -> (* no data *)

See documentation of virInterfaceUndefine.

CONSTANTS

XML_INACTIVE

SEE ALSO

LibVirt, Sys::Virt

LICENSE AND COPYRIGHT

  Copyright (C) 2024 Erik Huelsmann

All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.