如何获取Azure中的总网络接口配额

时间:2018-01-02 06:09:10

标签: azure network-interface azure-cli

我们是否有'az'命令来获取azure云中特定格局的总网络接口和使用过的网络接口。

我尝试使用“az network nic list”,但它不会显示总计数和已使用计数。

此致

Rohith

2 个答案:

答案 0 :(得分:0)

没有这样的命令。

但您可以使用脚本来获取总计和使用次数。如果使用bash shell,则可以使用以下示例。

index.php

答案 1 :(得分:0)

我得到了答案:

<SectionList
    sections={[
        {title: 'Overdue', data:query.tasks.filter(task => task.end_time < new Date())},
        {title: 'Upcoming', data:query.tasks.filter(task => task.end_time > new Date())}
    ]}
    renderItem={({item}) => <Text>{item}</Text>}
    renderSectionHeader={
        ({section}) => <Text>{section.title}</Text>
    }
/>