
    Vh                     2    d dl mZmZmZ eZ G d de      Zy)    )absolute_importdivisionprint_functionc                       e Zd ZdZy)ModuleDocFragmenta>  
options:
  manageiq_connection:
    description:
      - ManageIQ connection configuration information.
    required: false
    type: dict
    suboptions:
      url:
        description:
          - ManageIQ environment URL. E(MIQ_URL) environment variable if set. Otherwise, it is required to pass it.
        type: str
        required: false
      username:
        description:
          - ManageIQ username. E(MIQ_USERNAME) environment variable if set. Otherwise, required if no token is passed in.
        type: str
      password:
        description:
          - ManageIQ password. E(MIQ_PASSWORD) environment variable if set. Otherwise, required if no token is passed in.
        type: str
      token:
        description:
          - ManageIQ token. E(MIQ_TOKEN) environment variable if set. Otherwise, required if no username or password is passed
            in.
        type: str
      validate_certs:
        description:
          - Whether SSL certificates should be verified for HTTPS requests.
        type: bool
        default: true
        aliases: [verify_ssl]
      ca_cert:
        description:
          - The path to a CA bundle file or directory with certificates.
        type: str
        aliases: [ca_bundle_path]

requirements:
  - 'manageiq-client U(https://github.com/ManageIQ/manageiq-api-client-python/)'
N)__name__
__module____qualname__DOCUMENTATION     t/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/community/general/plugins/doc_fragments/manageiq.pyr   r      s	    (Mr   r   N)
__future__r   r   r   type__metaclass__objectr   r   r   r   <module>r      s    C B+ +r   