zhmc_lpar_list – List LPARs
Synopsis
List LPARs on a specific CPC (Z system) or on all managed CPCs.
CPCs in DPM mode are ignored (i.e. do not lead to a failure).
LPARs for which the user has no object access permission are ignored (i.e. do not lead to a failure).
The module works for any HMC version. On HMCs with version 2.14.0 or higher, the “List Permitted Logical Partitions” opration is used. On older HMCs, the managed CPCs are listed and the LPARs on each CPC.
Requirements
The HMC userid must have object-access permissions to these objects: Target LPArs, CPCs of target LPARs (only for z13 and older).
Parameters
- hmc_host
The hostname or IP address of the HMC.
required: Truetype: str- hmc_auth
The authentication credentials for the HMC.
required: Truetype: dict- userid
The userid (username) for authenticating with the HMC.
required: Truetype: str- password
The password for authenticating with the HMC.
required: Truetype: str- ca_certs
Path name of certificate file or certificate directory to be used for verifying the HMC certificate. If null (default), the path name in the ‘REQUESTS_CA_BUNDLE’ environment variable or the path name in the ‘CURL_CA_BUNDLE’ environment variable is used, or if neither of these variables is set, the certificates in the Mozilla CA Certificate List provided by the ‘certifi’ Python package are used for verifying the HMC certificate.
required: Falsetype: str- verify
If True (default), verify the HMC certificate as specified in the
ca_certs
parameter. If False, ignore what is specified in theca_certs
parameter and do not verify the HMC certificate.required: Falsetype: booldefault: True
- cpc_name
Name of the CPC for which the LPARs are to be listed.
Default: All managed CPCs.
required: Falsetype: str- log_file
File path of a log file to which the logic flow of this module as well as interactions with the HMC are logged. If null, logging will be propagated to the Python root logger.
required: Falsetype: str
Examples
---
# Note: The following examples assume that some variables named 'my_*' are set.
- name: List the permitted LPARs on all managed CPCs
zhmc_lpar_list:
hmc_host: "{{ my_hmc_host }}"
hmc_auth: "{{ my_hmc_auth }}"
register: lpar_list
- name: List the permitted LPARs on a CPC
zhmc_lpar_list:
hmc_host: "{{ my_hmc_host }}"
hmc_auth: "{{ my_hmc_auth }}"
cpc_name: CPCA
register: lpar_list
Return Values
- changed
Indicates if any change has been made by the module. This will always be false.
returned: alwaystype: bool- msg
An error message that describes the failure.
returned: failuretype: str- lpars
The list of permitted LPARs, with a subset of their properties.
returned: successtype: listelements: dictsample:[ { "activation_mode": "linux", "cpc_name": "CPC1", "has_unacceptable_status": false, "name": "LPAR1", "se_version": "2.15.0", "status": "active" } ]
- name
LPAR name
type: str- cpc_name
Name of the parent CPC of the LPAR
type: str- se_version
SE version of the parent CPC of the LPAR
type: str- status
The current status of the LPAR. For details, see the description of the ‘status’ property in the data model of the ‘Logical Partition’ resource (see HMC API).
type: str- has_unacceptable_status
Indicates whether the current status of the LPAR is unacceptable, based on its ‘acceptable-status’ property.
type: bool- activation_mode
The activation mode of the LPAR. For details, see the description of the ‘activation-mode’ property in the data model of the ‘Logical Partition’ resource (see HMC API).
type: str