devopsarr.lidarr.lidarr_remote_path_mapping_info (1.0.0) — module

Get information about Lidarr remote path mapping.

| "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 remote path mapping.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
---
# Gather information about all remote path mappings.
- name: Gather information about all remote path mappings
  devopsarr.lidarr.lidarr_remote_path_mapping_info:
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Gather information about a single remote path mapping.
- name: Gather information about a single remote path mapping
  devopsarr.lidarr.lidarr_remote_path_mapping_info:
    id: 1

Inputs

    
id:
    description: Remote path mapping id.
    type: int

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

remote_path_mappings:
  contains:
    host:
      description: Download Client host.
      returned: always
      sample: transmission-host
      type: str
    id:
      description: remote path mapping ID.
      returned: always
      sample: '1'
      type: int
    local_path:
      description: Local remote path.
      returned: always
      sample: /music-download/
      type: str
    remote_path:
      description: Download Client remote path.
      returned: always
      sample: /download/complete/
      type: str
  description: A list of remote path mappings.
  elements: dict
  returned: always
  type: list