az functionapp vnet-integration
Methods that list, add, and remove virtual networks integrations from a functionapp.
Commands
Name | Description | Type | Status |
---|---|---|---|
az functionapp vnet-integration add |
Add a regional virtual network integration to a functionapp. |
Core | GA |
az functionapp vnet-integration list |
List the virtual network integrations on a functionapp. |
Core | GA |
az functionapp vnet-integration remove |
Remove a regional virtual network integration from functionapp. |
Core | GA |
az functionapp vnet-integration add
Add a regional virtual network integration to a functionapp.
If there are multiple vnets of the same name across different resource groups, use vnet resource id to specify which vnet to use. If vnet name is used, by default, the vnet in the same resource group as the functionapp will be used.
az functionapp vnet-integration add --name
--resource-group
--subnet
--vnet
[--skip-delegation-check {false, true}]
[--slot]
Examples
Add a regional virtual network integration to a functionapp
az functionapp vnet-integration add -g MyResourceGroup -n MyFunctionapp --vnet MyVnetName --subnet MySubnetName -s [slot]
Add a regional virtual network integration to a functionapp using vnet resource id
az functionapp vnet-integration add -g MyResourceGroup -n MyFunctionapp --vnet '/subscriptions/[sub id]/resourceGroups/[MyResourceGroup]/providers/Microsoft.Network/virtualNetworks/[MyVnetName]' --subnet MySubnetName -s [slot]
Add a regional virtual network integration to a functionapp using subnet resource id
az functionapp vnet-integration add -g MyResourceGroup -n MyFunctionapp --vnet MyVnetName --subnet '/subscriptions/[sub id]/resourceGroups/[MyResourceGroup]/providers/Microsoft.Network/virtualNetworks/[MyVnetName]/subnets/MySubnetName' -s [slot]
Required Parameters
Name of the function app.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
The name or resource ID of the subnet.
The name or resource ID of the Vnet.
Optional Parameters
Skip check if you do not have permission or the VNet is in another subscription.
The name of the slot. Default to the productions slot if not specified.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az functionapp vnet-integration list
List the virtual network integrations on a functionapp.
az functionapp vnet-integration list --name
--resource-group
[--slot]
Examples
list the virtual networks integrations on a functionapp
az functionapp vnet-integration list -g MyResourceGroup -n MyFunctionapp -s [slot]
Required Parameters
Name of the function app.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
The name of the slot. Default to the productions slot if not specified.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az functionapp vnet-integration remove
Remove a regional virtual network integration from functionapp.
az functionapp vnet-integration remove --name
--resource-group
[--slot]
Examples
remove a regional virtual network integration from functionapp
az functionapp vnet-integration remove -g MyResourceGroup -n MyFunctionapp -s [slot]
Required Parameters
Name of the function app.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
The name of the slot. Default to the productions slot if not specified.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.