
    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)ModuleDocFragmentaH  
options:
  hostname:
    description:
      - The hostname or IP address on which InfluxDB server is listening.
    type: str
    default: localhost
  username:
    description:
      - Username that will be used to authenticate against InfluxDB server.
    type: str
    default: root
    aliases: [login_username]
  password:
    description:
      - Password that will be used to authenticate against InfluxDB server.
    type: str
    default: root
    aliases: [login_password]
  port:
    description:
      - The port on which InfluxDB server is listening.
    type: int
    default: 8086
  path:
    description:
      - The path on which InfluxDB server is accessible.
      - Only available when using python-influxdb >= 5.1.0.
    type: str
    default: ''
    version_added: '0.2.0'
  validate_certs:
    description:
      - If set to V(false), the SSL certificates will not be validated.
      - This should only set to V(false) used on personally controlled sites using self-signed certificates.
    type: bool
    default: true
  ssl:
    description:
      - Use https instead of http to connect to InfluxDB server.
    type: bool
    default: false
  timeout:
    description:
      - Number of seconds Requests will wait for client to establish a connection.
    type: int
  retries:
    description:
      - Number of retries client will try before aborting.
      - V(0) indicates try until success.
      - Only available when using C(python-influxdb) >= 4.1.0.
    type: int
    default: 3
  use_udp:
    description:
      - Use UDP to connect to InfluxDB server.
    type: bool
    default: false
  udp_port:
    description:
      - UDP port to connect to InfluxDB server.
    type: int
    default: 4444
  proxies:
    description:
      - HTTP(S) proxy to use for Requests to connect to InfluxDB server.
    type: dict
    default: {}
N)__name__
__module____qualname__DOCUMENTATION     t/home/dcms/DCMS/lib/python3.12/site-packages/ansible_collections/community/general/plugins/doc_fragments/influxdb.pyr   r      s
    DMr   r   N)
__future__r   r   r   type__metaclass__objectr   r   r   r   <module>r      s!    C BF Fr   