interfaces_effective_network_security_groups
Creates, updates, deletes, gets or lists a interfaces_effective_network_security_groups
resource.
Overview
Name | interfaces_effective_network_security_groups |
Type | Resource |
Id | azure.network.interfaces_effective_network_security_groups |
Fields
Name | Datatype | Description |
---|---|---|
association | object | The effective network security group association. |
effectiveSecurityRules | array | A collection of effective security rules. |
networkSecurityGroup | object | Reference to another subresource. |
tagMap | string | Mapping of tags to list of IP Addresses included within the tag. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | networkInterfaceName, resourceGroupName, subscriptionId | Gets all network security groups applied to a network interface. |
SELECT
examples
Gets all network security groups applied to a network interface.
SELECT
association,
effectiveSecurityRules,
networkSecurityGroup,
tagMap
FROM azure.network.interfaces_effective_network_security_groups
WHERE networkInterfaceName = '{{ networkInterfaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';