devopsarr.sonarr.sonarr_auto_tag_info (1.1.1) — module

Get information about Sonarr auto tag.

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

Authors: Fuochi (@Fuochi)

Install collection

Install with ansible-galaxy collection install devopsarr.sonarr:==1.1.1


Add to requirements.yml

  collections:
    - name: devopsarr.sonarr
      version: 1.1.1

Description

Get information about Sonarr auto tag.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
---
# Gather information about all auto tags
- name: Gather information about all auto tags
  devopsarr.sonarr.sonarr_auto_tag_info:
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Gather information about a single auto tag
- name: Gather information about a single auto tag
  devopsarr.sonarr.sonarr_auto_tag_info:
    name: Example

Inputs

    
name:
    description: Name.
    type: str

sonarr_url:
    description: Full Sonarr URL with protocol and port (e.g. `https://test.sonarr.tv:8989`)
    required: true
    type: str

sonarr_api_key:
    description: API key for Sonarr authentication.
    required: true
    type: str

Outputs

auto_tags:
  contains:
    id:
      description: auto tagID.
      returned: always
      sample: 1
      type: int
    name:
      description: Name.
      returned: always
      sample: Example
      type: str
    remove_tags_automatically:
      description: Include auto tag when renaming flag.
      returned: always
      sample: false
      type: bool
    specifications:
      description: specification list.
      returned: always
      type: list
    tags:
      description: Tag list.
      elements: int
      returned: always
      sample:
      - 1
      - 2
      type: list
  description: A list of auto tag.
  elements: dict
  returned: always
  type: list