community.general.hashids_decode 过滤器 – 从类似 YouTube 的哈希值解码数字序列

注意

此过滤器插件是 community.general 集合 (版本 10.1.0) 的一部分。

如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.general

要在 playbook 中使用它,请指定: community.general.hashids_decode

community.general 3.0.0 中的新增功能

概要

  • 从类似 YouTube 的哈希值解码数字序列。

输入

这描述了过滤器的输入,即 | community.general.hashids_decode 之前的 value。

参数

注释

输入

字符串 / 必需

类似 YouTube 的哈希值。

关键字参数

这描述了过滤器的关键字参数。这些是在以下示例中的值 key1=value1key2=value2 等:input | community.general.hashids_decode(key1=value1, key2=value2, ...)

参数

注释

alphabet

列表 / 元素=字符串

包含 16 个或更多唯一字符的字符串,用于生成哈希值。

min_length

整数

生成的哈希值的最小长度。

salt

字符串

用于哈希时的盐值字符串。

默认值: "excel"

示例

- name: Convert hash to list of integers
  ansible.builtin.debug:
    msg: "{{ 'o2fXhV' | community.general.hashids_decode }}"
    # Produces: [1, 2, 3]

返回值

描述

返回值

列表 / 元素=整数

整数列表。

返回:成功

作者

  • Andrew Pantuso (@Ajpantuso)

提示

每个条目类型的配置项具有从低到高的优先级顺序。例如,列表中较低的变量将覆盖列表中较高的变量。