CIMProperty¶
- class lmiwbem.lmiwbem_core.CIMProperty¶
Property of a CIM object.
Parameters: - name (str) – String containing the property’s name
- value – Property’s value
- type (str) – String containing the property’s type
- class_origin (str) – String containing property’s class origin
- array_size (int) – Array size
- propagated (bool) – True, if the property is propagated; False otherwise:param NocaseDict qualifiers: Dictionary containing propert’s qualifiers
- is_array (bool) – True, if the property’s value is array; False otherwise:param str reference_class: String containing property’s reference class
- array_size¶
Property storing array size of the property.
Return type: int
- class_origin¶
Property storing class origin of the property.
Return type: str
- copy()¶
Returns: copy of the object itself Return type: CIMProperty
- is_array¶
- Property storing flag, which indicates, if the property’s value is
- array.
Return type: bool
- name¶
Property storing name of the property.
Return type: str
- propagated¶
Property storing propagation flag of the property.
Return type: bool
- qualifiers¶
Property storing qualifiers of the property.
Return type: NocaseDict
- reference_class¶
Property storing reference class of the property.
Return type: str
- type¶
Property storing type of the property.
Return type: str
- value¶
Property storing value of the property.
Returns: property’s value