devopsarr.lidarr.lidarr_indexer_info (1.0.0) — module

Get information about Lidarr indexer.

| "added in version" 1.0.0 of devopsarr.lidarr"

Authors: Fuochi (@Fuochi)

Install collection

Install with ansible-galaxy collection install devopsarr.lidarr:==1.0.0


Add to requirements.yml

  collections:
    - name: devopsarr.lidarr
      version: 1.0.0

Description

Get information about Lidarr indexer.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
---
# Gather information about all indexers.
- name: Gather information about all indexers
  devopsarr.lidarr.lidarr_indexer_info:
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Gather information about a single indexer.
- name: Gather information about a single indexer
  devopsarr.lidarr.lidarr_indexer_info:
    name: test

Inputs

    
name:
    description: Name.
    type: str

lidarr_url:
    description: Full Lidarr URL with protocol and port (e.g. `https://test.lidarr.tv:8686`)
    required: true
    type: str

lidarr_api_key:
    description: API key for Lidarr authentication.
    required: true
    type: str

Outputs

indexers:
  contains:
    config_contract:
      description: Config contract.
      returned: always
      sample: BroadcastheNetSettings
      type: str
    download_client_id:
      description: Download client ID.
      returned: always
      sample: 0
      type: int
    enable_automatic_search:
      description: Enable automatic search flag.
      returned: always
      sample: true
      type: bool
    enable_interactive_search:
      description: Enable interactive search flag.
      returned: always
      sample: false
      type: bool
    enable_rss:
      description: Enable RSS flag.
      returned: always
      sample: true
      type: bool
    fields:
      description: field list.
      returned: always
      type: list
    id:
      description: indexer ID.
      returned: always
      sample: 1
      type: int
    implementation:
      description: Implementation.
      returned: always
      sample: BroadcastheNet
      type: str
    name:
      description: Name.
      returned: always
      sample: Example
      type: str
    priority:
      description: Priority.
      returned: always
      sample: 1
      type: int
    protocol:
      description: Protocol.
      returned: always
      sample: torrent
      type: str
    tags:
      description: Tag list.
      elements: int
      returned: always
      sample:
      - 1
      - 2
      type: list
  description: A list of indexers.
  elements: dict
  returned: always
  type: list