We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microsoft.Network/networkInterfaces
Resource type
apiVersion 2023-11-01, 2023-04-01
Client (PowerShell, Azure CLI, or API) PowerShell
Expected response
{ "apiVersion": "2023-04-01", "id": "/subscriptions/0000bb0-000b-0bb0-0000-bb00b0b0b00/resourceGroups/MY_RESOURCE_GROUPNAME/providers/Microsoft.Network/networkInterfaces/RESOURCENAME1", "location": "global", "name": "RESOURCENAME1", "properties": { "auxiliaryMode": "None", "auxiliarySku": "None", "disableTcpStateTracking": false, "enableAcceleratedNetworking": false, "enableIPForwarding": false, "ipConfigurations": [ { "name": "ipconfig1", "properties": { "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": { "id": "/subscriptions/0000bb0-000b-0bb0-0000-bb00b0b0b00/resourceGroups/MY_RESOURCE_GROUPNAME/providers/Microsoft.Network/virtualNetworks/MY_RESOURCE_GROUPNAME/subnets/Management" } } } ], "networkSecurityGroup": { "id": "/subscriptions/0000bb0-000b-0bb0-0000-bb00b0b0b00/resourceGroups/MY_RESOURCE_GROUPNAME/providers/Microsoft.Network/networkSecurityGroups/MY_NSG" }, "nicType": "Standard" }, "type": "Microsoft.Network/networkInterfaces" }
Current (noisy) response
{ "apiVersion": "2023-04-01", "id": "/subscriptions/0000bb0-000b-0bb0-0000-bb00b0b0b00/resourceGroups/MY_RESOURCE_GROUPNAME/providers/Microsoft.Network/networkInterfaces/RESOURCENAME1", "kind": "Regular", "location": "global", "name": "RESOURCENAME1", "properties": { "allowPort25Out": true, "auxiliaryMode": "None", "auxiliarySku": "None", "disableTcpStateTracking": false, "enableAcceleratedNetworking": false, "enableIPForwarding": false, "ipConfigurations": [ { "name": "ipconfig1", "properties": { "privateIPAddress": "10.0.0.77", "privateIPAddressVersion": "IPv4", "privateIPAllocationMethod": "Dynamic", "subnet": { "id": "/subscriptions/0000bb0-000b-0bb0-0000-bb00b0b0b00/resourceGroups/MY_RESOURCE_GROUPNAME/providers/Microsoft.Network/virtualNetworks/MY_RESOURCE_GROUPNAME/subnets/Management" } } } ], "networkSecurityGroup": { "id": "/subscriptions/0000bb0-000b-0bb0-0000-bb00b0b0b00/resourceGroups/MY_RESOURCE_GROUPNAME/providers/Microsoft.Network/networkSecurityGroups/MY_NSG" }, "nicType": "Standard" }, "type": "Microsoft.Network/networkInterfaces" }
Additional context
WhatIf should not output parameters like kind, allowPort25Out as not specified in Azure documentation. Noisy parameters:
kind
allowPort25Out
properties.allowPort25Out
In case of privateIPAllocationMethod equal 'Dynamic' following parameter shouldn't be added as Change
privateIPAllocationMethod
properties.ipConfigurations[0].privateIPAddress
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the noise
Resource type
apiVersion
2023-11-01, 2023-04-01
Client (PowerShell, Azure CLI, or API)
PowerShell
Expected response
Current (noisy) response
Additional context
WhatIf should not output parameters like
kind
,allowPort25Out
as not specified in Azure documentation.Noisy parameters:
kind
properties.allowPort25Out
In case of
privateIPAllocationMethod
equal 'Dynamic' following parameter shouldn't be added as Changeproperties.ipConfigurations[0].privateIPAddress
The text was updated successfully, but these errors were encountered: