
    VhN                     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:
    login_user:
        description:
            - RabbitMQ user for connection.
        type: str
        default: guest
    login_password:
        description:
            - RabbitMQ password for connection.
        type: str
        default: guest
    login_host:
        description:
            - RabbitMQ host for connection.
        type: str
        default: localhost
    login_port:
        description:
            - RabbitMQ management API port.
        type: str
        default: '15672'
    login_protocol:
        description:
            - RabbitMQ management API protocol.
        type: str
        choices: [ http , https ]
        default: http
    ca_cert:
        description:
            - CA certificate to verify SSL connection to management API.
        type: path
        aliases: [ cacert ]
    client_cert:
        description:
            - Client certificate to send on SSL connections to management API.
        type: path
        aliases: [ cert ]
    client_key:
        description:
            - Private key matching the client certificate.
        type: path
        aliases: [ key ]
    vhost:
        description:
            - RabbitMQ virtual host.
        type: str
        default: "/"
N)__name__
__module____qualname__DOCUMENTATION     u/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/community/rabbitmq/plugins/doc_fragments/rabbitmq.pyr   r   
   s	    0Mr   r   N)
__future__r   r   r   type__metaclass__objectr   r   r   r   <module>r      s    C B2 2r   