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 -n

Name of the function app.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

--subnet

The name or resource ID of the subnet.

--vnet

The name or resource ID of the Vnet.

Optional Parameters

--skip-delegation-check

Skip check if you do not have permission or the VNet is in another subscription.

accepted values: false, true
default value: False
--slot -s

The name of the slot. Default to the productions slot if not specified.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

accepted values: json, jsonc, none, table, tsv, yaml, yamlc
default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

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 -n

Name of the function app.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Optional Parameters

--slot -s

The name of the slot. Default to the productions slot if not specified.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

accepted values: json, jsonc, none, table, tsv, yaml, yamlc
default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

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 -n

Name of the function app.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

Optional Parameters

--slot -s

The name of the slot. Default to the productions slot if not specified.

Global Parameters
--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--only-show-errors

Only show errors, suppressing warnings.

--output -o

Output format.

accepted values: json, jsonc, none, table, tsv, yaml, yamlc
default value: json
--query

JMESPath query string. See http://jmespath.org/ for more information and examples.

--subscription

Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID.

--verbose

Increase logging verbosity. Use --debug for full debug logs.