App Service Environments - Get Inbound Network Dependencies Endpoints

Description for Get the network endpoints of all inbound dependencies of an App Service Environment.

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/hostingEnvironments/{name}/inboundNetworkDependenciesEndpoints?api-version=2023-12-01

URI Parameters

Name In Required Type Description
name
path True

string

Name of the App Service Environment.

resourceGroupName
path True

string

Name of the resource group to which the resource belongs.

Regex pattern: ^[-\w\._\(\)]+[^\.]$

subscriptionId
path True

string

Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

api-version
query True

string

API Version

Responses

Name Type Description
200 OK

InboundEnvironmentEndpointCollection

OK

Other Status Codes

DefaultErrorResponse

App Service error response.

Security

azure_auth

Azure Active Directory OAuth2 Flow

Type: oauth2
Flow: implicit
Authorization URL: https://login.microsoftonline.com/common/oauth2/authorize

Scopes

Name Description
user_impersonation impersonate your user account

Examples

Get the network endpoints of all inbound dependencies of an App Service Environment.

Sample Request

GET https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/Sample-WestUSResourceGroup/providers/Microsoft.Web/hostingEnvironments/SampleAse/inboundNetworkDependenciesEndpoints?api-version=2023-12-01

Sample Response

{
  "value": [
    {
      "description": "App Service management",
      "endpoints": [
        "70.37.57.58/32",
        "157.55.208.185/32",
        "23.102.188.65/32",
        "191.236.154.88/32",
        "52.174.22.21/32",
        "13.94.149.179/32",
        "13.94.143.126/32",
        "13.94.141.115/32",
        "52.178.195.197/32",
        "52.178.190.65/32",
        "52.178.184.149/32",
        "52.178.177.147/32",
        "13.75.127.117/32",
        "40.83.125.161/32",
        "40.83.121.56/32",
        "40.83.120.64/32",
        "52.187.56.50/32",
        "52.187.63.37/32",
        "52.187.59.251/32",
        "52.187.63.19/32",
        "52.165.158.140/32",
        "52.165.152.214/32",
        "52.165.154.193/32",
        "52.165.153.122/32",
        "104.44.129.255/32",
        "104.44.134.255/32",
        "104.44.129.243/32",
        "104.44.129.141/32",
        "65.52.193.203/32",
        "70.37.89.222/32",
        "13.64.115.203/32",
        "52.225.177.153/32",
        "65.52.172.237/32"
      ],
      "ports": [
        "454",
        "455"
      ]
    },
    {
      "description": "App Service Environment VIP",
      "endpoints": [
        "52.247.209.18/32"
      ],
      "ports": [
        "454",
        "455",
        "16001"
      ]
    },
    {
      "description": "App Service Environment subnet",
      "endpoints": [
        "192.168.250.0/24"
      ],
      "ports": [
        "All"
      ]
    }
  ],
  "nextLink": null
}

Definitions

Name Description
DefaultErrorResponse

App Service error response.

Details
Error

Error model.

InboundEnvironmentEndpoint

The IP Addresses and Ports that require inbound network access to and within the subnet of the App Service Environment.

InboundEnvironmentEndpointCollection

Collection of Inbound Environment Endpoints

DefaultErrorResponse

App Service error response.

Name Type Description
error

Error

Error model.

Details

Name Type Description
code

string

Standardized string to programmatically identify the error.

message

string

Detailed error description and debugging information.

target

string

Detailed error description and debugging information.

Error

Error model.

Name Type Description
code

string

Standardized string to programmatically identify the error.

details

Details[]

Detailed errors.

innererror

string

More information to debug error.

message

string

Detailed error description and debugging information.

target

string

Detailed error description and debugging information.

InboundEnvironmentEndpoint

The IP Addresses and Ports that require inbound network access to and within the subnet of the App Service Environment.

Name Type Description
description

string

Short text describing the purpose of the network traffic.

endpoints

string[]

The IP addresses that network traffic will originate from in cidr notation.

ports

string[]

The ports that network traffic will arrive to the App Service Environment at.

InboundEnvironmentEndpointCollection

Collection of Inbound Environment Endpoints

Name Type Description
nextLink

string

Link to next page of resources.

value

InboundEnvironmentEndpoint[]

Collection of resources.