ovirtsdk4.readers module
Classes
class ActionReader
Ancestors (in MRO)
- ActionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class AffinityGroupReader
Ancestors (in MRO)
- AffinityGroupReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class AffinityLabelReader
Ancestors (in MRO)
- AffinityLabelReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class AffinityRuleReader
Ancestors (in MRO)
- AffinityRuleReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class AgentConfigurationReader
Ancestors (in MRO)
- AgentConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class AgentReader
Ancestors (in MRO)
- AgentReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ApiReader
Ancestors (in MRO)
- ApiReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ApiSummaryItemReader
Ancestors (in MRO)
- ApiSummaryItemReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ApiSummaryReader
Ancestors (in MRO)
- ApiSummaryReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ApplicationReader
Ancestors (in MRO)
- ApplicationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class AuthorizedKeyReader
Ancestors (in MRO)
- AuthorizedKeyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BackupReader
Ancestors (in MRO)
- BackupReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BalanceReader
Ancestors (in MRO)
- BalanceReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BiosReader
Ancestors (in MRO)
- BiosReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BlockStatisticReader
Ancestors (in MRO)
- BlockStatisticReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BondingReader
Ancestors (in MRO)
- BondingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BookmarkReader
Ancestors (in MRO)
- BookmarkReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BootMenuReader
Ancestors (in MRO)
- BootMenuReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BootReader
Ancestors (in MRO)
- BootReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class BrickProfileDetailReader
Ancestors (in MRO)
- BrickProfileDetailReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CdromReader
Ancestors (in MRO)
- CdromReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CertificateReader
Ancestors (in MRO)
- CertificateReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CloudInitReader
Ancestors (in MRO)
- CloudInitReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ClusterFeatureReader
Ancestors (in MRO)
- ClusterFeatureReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ClusterLevelReader
Ancestors (in MRO)
- ClusterLevelReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ClusterReader
Ancestors (in MRO)
- ClusterReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ConfigurationReader
Ancestors (in MRO)
- ConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ConsoleReader
Ancestors (in MRO)
- ConsoleReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CoreReader
Ancestors (in MRO)
- CoreReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CpuProfileReader
Ancestors (in MRO)
- CpuProfileReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CpuReader
Ancestors (in MRO)
- CpuReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CpuTopologyReader
Ancestors (in MRO)
- CpuTopologyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CpuTuneReader
Ancestors (in MRO)
- CpuTuneReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CpuTypeReader
Ancestors (in MRO)
- CpuTypeReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class CustomPropertyReader
Ancestors (in MRO)
- CustomPropertyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DataCenterReader
Ancestors (in MRO)
- DataCenterReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DeviceReader
Ancestors (in MRO)
- DeviceReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DiskAttachmentReader
Ancestors (in MRO)
- DiskAttachmentReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DiskProfileReader
Ancestors (in MRO)
- DiskProfileReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DiskReader
Ancestors (in MRO)
- DiskReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DiskSnapshotReader
Ancestors (in MRO)
- DiskSnapshotReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DisplayReader
Ancestors (in MRO)
- DisplayReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DnsReader
Ancestors (in MRO)
- DnsReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DnsResolverConfigurationReader
Ancestors (in MRO)
- DnsResolverConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class DomainReader
Ancestors (in MRO)
- DomainReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class EntityProfileDetailReader
Ancestors (in MRO)
- EntityProfileDetailReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ErrorHandlingReader
Ancestors (in MRO)
- ErrorHandlingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class EventReader
Ancestors (in MRO)
- EventReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalComputeResourceReader
Ancestors (in MRO)
- ExternalComputeResourceReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalDiscoveredHostReader
Ancestors (in MRO)
- ExternalDiscoveredHostReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalHostGroupReader
Ancestors (in MRO)
- ExternalHostGroupReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalHostProviderReader
Ancestors (in MRO)
- ExternalHostProviderReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalHostReader
Ancestors (in MRO)
- ExternalHostReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalNetworkProviderConfigurationReader
Ancestors (in MRO)
- ExternalNetworkProviderConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalProviderReader
Ancestors (in MRO)
- ExternalProviderReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ExternalVmImportReader
Ancestors (in MRO)
- ExternalVmImportReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class FaultReader
Ancestors (in MRO)
- FaultReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class FencingPolicyReader
Ancestors (in MRO)
- FencingPolicyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class FileReader
Ancestors (in MRO)
- FileReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class FilterReader
Ancestors (in MRO)
- FilterReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class FloppyReader
Ancestors (in MRO)
- FloppyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class FopStatisticReader
Ancestors (in MRO)
- FopStatisticReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterBrickAdvancedDetailsReader
Ancestors (in MRO)
- GlusterBrickAdvancedDetailsReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterBrickMemoryInfoReader
Ancestors (in MRO)
- GlusterBrickMemoryInfoReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterBrickReader
Ancestors (in MRO)
- GlusterBrickReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterClientReader
Ancestors (in MRO)
- GlusterClientReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterHookReader
Ancestors (in MRO)
- GlusterHookReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterMemoryPoolReader
Ancestors (in MRO)
- GlusterMemoryPoolReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterServerHookReader
Ancestors (in MRO)
- GlusterServerHookReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterVolumeProfileDetailsReader
Ancestors (in MRO)
- GlusterVolumeProfileDetailsReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GlusterVolumeReader
Ancestors (in MRO)
- GlusterVolumeReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GracePeriodReader
Ancestors (in MRO)
- GracePeriodReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GraphicsConsoleReader
Ancestors (in MRO)
- GraphicsConsoleReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GroupReader
Ancestors (in MRO)
- GroupReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class GuestOperatingSystemReader
Ancestors (in MRO)
- GuestOperatingSystemReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HardwareInformationReader
Ancestors (in MRO)
- HardwareInformationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HighAvailabilityReader
Ancestors (in MRO)
- HighAvailabilityReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HookReader
Ancestors (in MRO)
- HookReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HostDevicePassthroughReader
Ancestors (in MRO)
- HostDevicePassthroughReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HostDeviceReader
Ancestors (in MRO)
- HostDeviceReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HostNicReader
Ancestors (in MRO)
- HostNicReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HostNicVirtualFunctionsConfigurationReader
Ancestors (in MRO)
- HostNicVirtualFunctionsConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HostReader
Ancestors (in MRO)
- HostReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HostStorageReader
Ancestors (in MRO)
- HostStorageReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class HostedEngineReader
Ancestors (in MRO)
- HostedEngineReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class IconReader
Ancestors (in MRO)
- IconReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class IdentifiedReader
Ancestors (in MRO)
- IdentifiedReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ImageReader
Ancestors (in MRO)
- ImageReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ImageTransferReader
Ancestors (in MRO)
- ImageTransferReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class InitializationReader
Ancestors (in MRO)
- InitializationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class InstanceTypeReader
Ancestors (in MRO)
- InstanceTypeReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class IoReader
Ancestors (in MRO)
- IoReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class IpAddressAssignmentReader
Ancestors (in MRO)
- IpAddressAssignmentReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class IpReader
Ancestors (in MRO)
- IpReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class IscsiBondReader
Ancestors (in MRO)
- IscsiBondReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class IscsiDetailsReader
Ancestors (in MRO)
- IscsiDetailsReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class JobReader
Ancestors (in MRO)
- JobReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class KatelloErratumReader
Ancestors (in MRO)
- KatelloErratumReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class KernelReader
Ancestors (in MRO)
- KernelReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class KsmReader
Ancestors (in MRO)
- KsmReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class LinkLayerDiscoveryProtocolElementReader
Ancestors (in MRO)
- LinkLayerDiscoveryProtocolElementReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class LogicalUnitReader
Ancestors (in MRO)
- LogicalUnitReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MacPoolReader
Ancestors (in MRO)
- MacPoolReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MacReader
Ancestors (in MRO)
- MacReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MemoryOverCommitReader
Ancestors (in MRO)
- MemoryOverCommitReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MemoryPolicyReader
Ancestors (in MRO)
- MemoryPolicyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MethodReader
Ancestors (in MRO)
- MethodReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MigrationBandwidthReader
Ancestors (in MRO)
- MigrationBandwidthReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MigrationOptionsReader
Ancestors (in MRO)
- MigrationOptionsReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class MigrationPolicyReader
Ancestors (in MRO)
- MigrationPolicyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NetworkAttachmentReader
Ancestors (in MRO)
- NetworkAttachmentReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NetworkConfigurationReader
Ancestors (in MRO)
- NetworkConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NetworkFilterParameterReader
Ancestors (in MRO)
- NetworkFilterParameterReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NetworkFilterReader
Ancestors (in MRO)
- NetworkFilterReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NetworkLabelReader
Ancestors (in MRO)
- NetworkLabelReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NetworkReader
Ancestors (in MRO)
- NetworkReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NfsProfileDetailReader
Ancestors (in MRO)
- NfsProfileDetailReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NicConfigurationReader
Ancestors (in MRO)
- NicConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NicReader
Ancestors (in MRO)
- NicReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NumaNodePinReader
Ancestors (in MRO)
- NumaNodePinReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class NumaNodeReader
Ancestors (in MRO)
- NumaNodeReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackImageProviderReader
Ancestors (in MRO)
- OpenStackImageProviderReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackImageReader
Ancestors (in MRO)
- OpenStackImageReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackNetworkProviderReader
Ancestors (in MRO)
- OpenStackNetworkProviderReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackNetworkReader
Ancestors (in MRO)
- OpenStackNetworkReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackProviderReader
Ancestors (in MRO)
- OpenStackProviderReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackSubnetReader
Ancestors (in MRO)
- OpenStackSubnetReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackVolumeProviderReader
Ancestors (in MRO)
- OpenStackVolumeProviderReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenStackVolumeTypeReader
Ancestors (in MRO)
- OpenStackVolumeTypeReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OpenstackVolumeAuthenticationKeyReader
Ancestors (in MRO)
- OpenstackVolumeAuthenticationKeyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OperatingSystemInfoReader
Ancestors (in MRO)
- OperatingSystemInfoReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OperatingSystemReader
Ancestors (in MRO)
- OperatingSystemReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class OptionReader
Ancestors (in MRO)
- OptionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PackageReader
Ancestors (in MRO)
- PackageReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PayloadReader
Ancestors (in MRO)
- PayloadReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PermissionReader
Ancestors (in MRO)
- PermissionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PermitReader
Ancestors (in MRO)
- PermitReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PmProxyReader
Ancestors (in MRO)
- PmProxyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PortMirroringReader
Ancestors (in MRO)
- PortMirroringReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PowerManagementReader
Ancestors (in MRO)
- PowerManagementReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ProductInfoReader
Ancestors (in MRO)
- ProductInfoReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ProductReader
Ancestors (in MRO)
- ProductReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ProfileDetailReader
Ancestors (in MRO)
- ProfileDetailReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class PropertyReader
Ancestors (in MRO)
- PropertyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ProxyTicketReader
Ancestors (in MRO)
- ProxyTicketReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class QosReader
Ancestors (in MRO)
- QosReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class QuotaClusterLimitReader
Ancestors (in MRO)
- QuotaClusterLimitReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class QuotaReader
Ancestors (in MRO)
- QuotaReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class QuotaStorageLimitReader
Ancestors (in MRO)
- QuotaStorageLimitReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RangeReader
Ancestors (in MRO)
- RangeReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RateReader
Ancestors (in MRO)
- RateReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationAffinityGroupMappingReader
Ancestors (in MRO)
- RegistrationAffinityGroupMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationAffinityLabelMappingReader
Ancestors (in MRO)
- RegistrationAffinityLabelMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationClusterMappingReader
Ancestors (in MRO)
- RegistrationClusterMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationConfigurationReader
Ancestors (in MRO)
- RegistrationConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationDomainMappingReader
Ancestors (in MRO)
- RegistrationDomainMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationLunMappingReader
Ancestors (in MRO)
- RegistrationLunMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationRoleMappingReader
Ancestors (in MRO)
- RegistrationRoleMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RegistrationVnicProfileMappingReader
Ancestors (in MRO)
- RegistrationVnicProfileMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ReportedConfigurationReader
Ancestors (in MRO)
- ReportedConfigurationReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ReportedDeviceReader
Ancestors (in MRO)
- ReportedDeviceReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RngDeviceReader
Ancestors (in MRO)
- RngDeviceReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class RoleReader
Ancestors (in MRO)
- RoleReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SchedulingPolicyReader
Ancestors (in MRO)
- SchedulingPolicyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SchedulingPolicyUnitReader
Ancestors (in MRO)
- SchedulingPolicyUnitReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SeLinuxReader
Ancestors (in MRO)
- SeLinuxReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SerialNumberReader
Ancestors (in MRO)
- SerialNumberReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SessionReader
Ancestors (in MRO)
- SessionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SkipIfConnectivityBrokenReader
Ancestors (in MRO)
- SkipIfConnectivityBrokenReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SkipIfSdActiveReader
Ancestors (in MRO)
- SkipIfSdActiveReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SnapshotReader
Ancestors (in MRO)
- SnapshotReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SpecialObjectsReader
Ancestors (in MRO)
- SpecialObjectsReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SpmReader
Ancestors (in MRO)
- SpmReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SshPublicKeyReader
Ancestors (in MRO)
- SshPublicKeyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SshReader
Ancestors (in MRO)
- SshReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SsoReader
Ancestors (in MRO)
- SsoReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class StatisticReader
Ancestors (in MRO)
- StatisticReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class StepReader
Ancestors (in MRO)
- StepReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class StorageConnectionExtensionReader
Ancestors (in MRO)
- StorageConnectionExtensionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class StorageConnectionReader
Ancestors (in MRO)
- StorageConnectionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class StorageDomainLeaseReader
Ancestors (in MRO)
- StorageDomainLeaseReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class StorageDomainReader
Ancestors (in MRO)
- StorageDomainReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SystemOptionReader
Ancestors (in MRO)
- SystemOptionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class SystemOptionValueReader
Ancestors (in MRO)
- SystemOptionValueReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class TagReader
Ancestors (in MRO)
- TagReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class TemplateReader
Ancestors (in MRO)
- TemplateReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class TemplateVersionReader
Ancestors (in MRO)
- TemplateVersionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class TicketReader
Ancestors (in MRO)
- TicketReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class TimeZoneReader
Ancestors (in MRO)
- TimeZoneReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class TransparentHugePagesReader
Ancestors (in MRO)
- TransparentHugePagesReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class UnmanagedNetworkReader
Ancestors (in MRO)
- UnmanagedNetworkReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class UsbReader
Ancestors (in MRO)
- UsbReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class UserReader
Ancestors (in MRO)
- UserReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class ValueReader
Ancestors (in MRO)
- ValueReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VcpuPinReader
Ancestors (in MRO)
- VcpuPinReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VendorReader
Ancestors (in MRO)
- VendorReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VersionReader
Ancestors (in MRO)
- VersionReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VirtioScsiReader
Ancestors (in MRO)
- VirtioScsiReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VirtualNumaNodeReader
Ancestors (in MRO)
- VirtualNumaNodeReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VlanReader
Ancestors (in MRO)
- VlanReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VmBaseReader
Ancestors (in MRO)
- VmBaseReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VmPlacementPolicyReader
Ancestors (in MRO)
- VmPlacementPolicyReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VmPoolReader
Ancestors (in MRO)
- VmPoolReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VmReader
Ancestors (in MRO)
- VmReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VmSummaryReader
Ancestors (in MRO)
- VmSummaryReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VnicPassThroughReader
Ancestors (in MRO)
- VnicPassThroughReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VnicProfileMappingReader
Ancestors (in MRO)
- VnicProfileMappingReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VnicProfileReader
Ancestors (in MRO)
- VnicProfileReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class VolumeGroupReader
Ancestors (in MRO)
- VolumeGroupReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class WatchdogReader
Ancestors (in MRO)
- WatchdogReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.
class WeightReader
Ancestors (in MRO)
- WeightReader
- ovirtsdk4.reader.Reader
- __builtin__.object
Static methods
def parse_boolean(
text)
Converts the given text to a boolean value.
def parse_date(
text)
Converts the given text to a date value.
def parse_decimal(
text)
Converts the given text to a decimal value.
def parse_enum(
enum_type, text)
Converts the given text to an enum.
def parse_integer(
text)
Converts the given text to an integer value.
def read_boolean(
reader)
Reads a boolean value, assuming that the cursor is positioned at the start element that contains the value.
def read_booleans(
reader)
Reads a list of boolean values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_date(
reader)
Reads a date value, assuming that the cursor is positioned at the start element that contains the value.
def read_dates(
reader)
Reads a list of date values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_decimal(
reader)
Reads a decimal value, assuming that the cursor is positioned at the start element that contains the value.
def read_decimals(
reader)
Reads a list of decimal values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_enum(
enum_type, reader)
Reads a enum value, assuming that the cursor is positioned at the start element that contains the value.
def read_enums(
enum_type, reader)
Reads a list of enum values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_integer(
reader)
Reads an integer value, assuming that the cursor is positioned at the start element that contains the value.
def read_integers(
reader)
Reads a list of integer values, assuming that the cursor is positioned at the start element of the element that contains the first value.
def read_many(
reader)
def read_one(
reader)
def read_string(
reader)
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
def read_strings(
reader)
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Methods
def __init__(
self)
def read(
cls, source)
Reads one object, determining the reader method to use based on the
tag name of the first element. For example, if the first tag name
is vm
then it will create a Vm
object, if it the tag is vms
it will create an array of Vm
objects, so on.
def register(
cls, tag, reader)
Registers a read method.