CIMParameter

class lmiwbem.lmiwbem_core.CIMParameter

Parameter of a CIM method.

Parameters:
  • name (str) – String containing the parameter name
  • type (str) – String containing the parameter type
  • reference_class (str) – String containing the reference class for the property
  • is_array (bool) – Flag, which indicates, if the parameter is array
  • array_size (int) – Array size
  • qualifiers (NocaseDict) – Dictionary of CIMQualifier
array_size

Property storing array size of the parameter.

Return type:int
copy()
Returns:copy of the object itself
Return type:CIMParameter
is_array

Property storing flag, which indicates, if the parameter is array.

Returns:True, if the parameter is array; False otherwise
Return type:bool
name

Property storing name of the parameter.

Returns:string containing the parameter’s name
qualifiers

Property storing qualifiers of the parameter.

Return type:NocaseDict
reference_class

Property storing reference class of the parameter.

Return type:str
tomof()
Returns:MOF representation of the object itself
Return type:str
type

Property storing type of the parameter.

Return type:str