zhmc_partition_list – List partitions
Synopsis
List partitions on a specific CPC (Z system) or on all managed CPCs.
CPCs in classic mode are ignored (i.e. do not lead to a failure).
Partitions for which the user has no object access permission are ignored (i.e. do not lead to a failure).
On HMCs with version 2.14.0 or higher and when the
additional_propertiesmodule parameter is not used, the “List Permitted Partitions” operation is used by this module. Otherwise, the managed CPCs are listed and then the partitions on each desired CPC or CPCs are listed. This improves the execution time of the module on newer HMCs but does not affect the module result data.
Requirements
The HMC userid must have object-access permissions to these objects: Target partitions, CPCs of target partitions (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. This is mutually exclusive with providing
session_id.required: Falsetype: str- password
 The password for authenticating with the HMC. This is mutually exclusive with providing
session_id.required: Falsetype: str- session_id
 HMC session ID to be used. This is mutually exclusive with providing
useridandpasswordand can be created as described in :ref:`zhmc_session_module`.required: Falsetype: 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_certsparameter. If False, ignore what is specified in theca_certsparameter and do not verify the HMC certificate.required: Falsetype: booldefault: True
- cpc_name
 Name of the CPC for which the partitions are to be listed.
Default: All managed CPCs.
required: Falsetype: str- additional_properties
 List of additional properties to be returned for each partition, in addition to the default properties (see result description).
Mutually exclusive with
full_properties.The property names are specified with underscores instead of hyphens.
On HMCs with an HMC version below 2.14.0, all properties of each partition will be returned if this parameter is specified, but you should not rely on that.
required: Falsetype: listelements: str- full_properties
 If True, all properties of each partition will be returned. Default: False.
Mutually exclusive with
additional_properties.Note: Setting this to True causes a loop of ‘Get Partition Properties’ operations to be executed. It is preferrable from a performance perspective to use the
additional_propertiesparameter instead.required: Falsetype: bool- 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 partitions on all managed CPCs
  zhmc_partition_list:
    hmc_host: "{{ my_hmc_host }}"
    hmc_auth: "{{ my_hmc_auth }}"
  register: partition_list
- name: List the permitted partitions on a CPC
  zhmc_partition_list:
    hmc_host: "{{ my_hmc_host }}"
    hmc_auth: "{{ my_hmc_auth }}"
    cpc_name: CPCA
  register: partition_list
See Also
See also
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- partitions
 The list of permitted partitions, with a subset of their properties.
returned: successtype: listelements: dictsample:[ { "cpc_name": "CPC1", "has_unacceptable_status": false, "name": "partition1", "se_version": "2.15.0", "status": "active" } ]
- name
 partition name
type: str- cpc_name
 Name of the parent CPC of the partition
type: str- se_version
 SE version of the parent CPC of the partition
type: str- status
 The current status of the partition. For details, see the description of the ‘status’ property in the data model of the ‘Logical Partition’ resource (see :term:`HMC API`).
type: str- has_unacceptable_status
 Indicates whether the current status of the partition is unacceptable, based on its ‘acceptable-status’ property.
type: bool- {additional_property}
 Additional properties requested via
full_propertiesoradditional_properties. The property names will have underscores instead of hyphens.