gpt4 book ai didi

ansible - 使用 Jinja 过滤器从嵌套对象中获取唯一键

转载 作者:行者123 更新时间:2023-12-02 01:42:58 25 4
gpt4 key购买 nike

我在 ansible 中使用 Jinja 过滤器以正确的格式提取我需要的值来处理它。

这是 JSON 格式的数据(我缩短了输出,通常每个项目有更多变量,并不是所有项目都有 IPv4 变量等等):

"interfaces": {
"GigabitEthernet0": {
"arp_timeout": "00:20:00",
"arp_type": "arpa",
"auto_negotiate": true,
"bandwidth": 1000000
},
"GigabitEthernet0/0/0": {
"arp_timeout": "00:20:00",
"arp_type": "arpa",
"auto_negotiate": true,
"bandwidth": 10000
},
"GigabitEthernet0/0/0.3": {
"arp_timeout": "04:00:00",
"arp_type": "arpa",
"bandwidth": 10000,
"delay": 10,
"description": "Private1 MPLS",
"enabled": true,
"encapsulations": {
"encapsulation": "dot1q",
"first_dot1q": "3"
},
"ipv4": {
"10.10.84.2/30": {
"ip": "10.10.84.2",
"prefix_length": "30"
}

然后我使用那个简单的 Jinja 文件管理器来提取我需要的信息,例如接口(interface)名称和 IPv4:

[
{% for interface in interfaces if interfaces[interface]['ipv4'] is defined %}
{
"name": "{{ interface }}",
{% if interfaces[interface]['ipv4'] is defined %}
"prefix": "{{ interfaces[interface]['ipv4'] }}",
{% endif %}
"hostname": "{{ hostname }}"
}{{ ", " if not loop.last else "" }}
{% endfor %}
]

我现在的问题是解析数据看起来像这样:

{
"name": "GigabitEthernet0/0/0.3",
"prefix": "{'10.10.84.2/30': {'ip': '10.10.84.2', 'prefix_length': '30'}}",
"hostname": "Horst1"
},

但我只想像这样嵌套字典中的键:

{
"name": "GigabitEthernet0/0/0.3",
"prefix": "10.10.84.2/30",
"hostname": "Horst1"
},

Jinja 中没有一个简单的方法来从嵌套对象中获取键吗?

最佳答案

这是一个可能更简单的模板,使用 for key, value in dict.items()构造:

[
{% for name, interface in interfaces.items() if interface.ipv4 is defined %}
{
"name": "{{ name }}",
"prefix": "{{ (interface.ipv4.keys() | list).0 }}",
"hostname": "{{ hostname }}"
}{{ ", " if not loop.last }}
{% endfor %}
]

keys()方法是来自 Python 的方法,它返回一个表示该字典的键列表的 View 。将其转换回列表并获取其中的第一个元素,您应该可以开始了。

另一种选择是使用 dict2items ,再次获取生成列表的第一个元素并获取其键:

    "prefix": "{{ (interface.ipv4 | dict2items).0.key }}",

关于ansible - 使用 Jinja 过滤器从嵌套对象中获取唯一键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71343779/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com