Libosinfo.InstallScriptList¶
- Subclasses:
- None 
Methods¶
- Inherited:
- Structs:
| class | 
 | 
| 
 | |
| 
 | |
| 
 | |
| 
 | 
Virtual Methods¶
- Inherited:
Properties¶
- Inherited:
Signals¶
- Inherited:
Fields¶
- Inherited:
| Name | Type | Access | Description | 
|---|---|---|---|
| parent_instance | r | 
Class Details¶
- class Libosinfo.InstallScriptList(**kwargs)¶
- Bases:
- Abstract:
- No 
- Structure:
 - classmethod new()¶
- Returns:
- an empty install_script list 
- Return type:
 - Construct a new install_script list that is initially empty. - New in version 0.2.0. 
 - new_copy()¶
- Returns:
- a copy of the install_script list 
- Return type:
 - Construct a new install_script list that is filled with install_scripts from self - New in version 0.2.0. - Deprecated since version 0.2.2: Use - Libosinfo.List.new_copy() instead.
 - new_filtered(filter)¶
- Parameters:
- filter ( - Libosinfo.Filter) – the filter to apply
- Returns:
- a filtered copy of the install_script list 
- Return type:
 - Construct a new install_script list that is filled with install_scripts from self that match filter - New in version 0.2.0. - Deprecated since version 0.2.2: Use - Libosinfo.List.new_filtered() instead.
 - new_intersection(sourceTwo)¶
- Parameters:
- sourceTwo ( - Libosinfo.InstallScriptList) – the second install_script list to copy
- Returns:
- an intersection of the two install_script lists 
- Return type:
 - Construct a new install_script list that is filled with only the install_scripts that are present in both self and sourceTwo. - New in version 0.2.0. - Deprecated since version 0.2.2: Use - Libosinfo.List.new_intersection() instead.
 - new_union(sourceTwo)¶
- Parameters:
- sourceTwo ( - Libosinfo.InstallScriptList) – the second install_script list to copy
- Returns:
- a union of the two install_script lists 
- Return type:
 - Construct a new install_script list that is filled with all the install_scripts that are present in either self and sourceTwo. - New in version 0.2.0. - Deprecated since version 0.2.2: Use - Libosinfo.List.new_union() instead.