Source code for idem_azure.exec.azure.network.security_rules

"""Exec module for managing network security_rules."""
from typing import Any
from typing import Dict

__func_alias__ = {"list_": "list"}


[docs]async def get( hub, ctx, resource_id: str, name: str = None, raw: bool = False ) -> Dict[str, Any]: """Get network security rule resource from resource_id. Args: resource_id(str): The resource_id of security rule name(str, Optional): The name of the resource raw(bool, Optional): Returns raw response if True. Defaults to False Returns: Dict[str, Any] Examples: Calling this exec module function from the cli with resource_id: .. code-block:: bash idem exec azure.network.security_rules.get resource_id="value" Using in a state: .. code-block:: yaml my_unmanaged_resource: exec.run: - path: azure.network.security_rules.get - kwargs: resource_id: "/subscriptions/{subscription_id}/resourceGroups/{resource_group_name}/providers/Microsoft.Network/networkSecurityGroups/{network_security_group_name}/securityRules/{security_rule_name}" """ result = dict(comment=[], result=True, ret=None) response_get = await hub.exec.request.json.get( ctx, url=f"{ctx.acct.endpoint_url}{resource_id}?api-version=2022-07-01", success_codes=[200], ) if not response_get["result"]: if response_get["status"] != 404: result["result"] = False result["comment"].extend( hub.tool.azure.result_utils.extract_error_comments(response_get) ) return result elif response_get["result"] and response_get["ret"]: if raw: result["ret"] = response_get["ret"] else: result[ "ret" ] = hub.tool.azure.network.security_rules.convert_raw_security_rules_to_present( resource=response_get["ret"], idem_resource_name=resource_id ) return result
[docs]async def list_(hub, ctx) -> Dict: """List of network security rules Returns: Dict[str, Any] Examples: Calling this exec module function from the cli with resource_id: .. code-block:: bash idem exec azure.network.security_rules.list Using in a state: .. code-block:: yaml my_unmanaged_resource: exec.run: - path: azure.network.security_rules.list """ result = dict(comment=[], result=True, ret=[]) subscription_id = ctx.acct.subscription_id async for nsg_page_result in hub.tool.azure.request.paginate( ctx, url=f"{ctx.acct.endpoint_url}/subscriptions/{subscription_id}/providers/Microsoft.Network/networkSecurityGroups?api-version=2021-03-01", success_codes=[200], ): nsg_resource_list = nsg_page_result.get("value") if nsg_resource_list: for nsg_resource in nsg_resource_list: if nsg_resource.get("properties") and nsg_resource.get( "properties" ).get("securityRules"): for resource in nsg_resource.get("properties").get("securityRules"): resource_id = resource["id"] result["ret"].append( hub.tool.azure.network.security_rules.convert_raw_security_rules_to_present( resource=resource, idem_resource_name=resource_id, ) ) return result