Integration Runtimes - List Outbound Network Dependencies Endpoints

Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/integrationRuntimes/{integrationRuntimeName}/outboundNetworkDependenciesEndpoints?api-version=2018-06-01

URI Parameters

Name In Required Type Description
factoryName
path True

string

The factory name.

Regex pattern: ^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$

integrationRuntimeName
path True

string

The integration runtime name.

Regex pattern: ^[A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$

resourceGroupName
path True

string

The resource group name.

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

subscriptionId
path True

string

The subscription identifier.

api-version
query True

string

The API version.

Responses

Name Type Description
200 OK

IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponse

OK.

Other Status Codes

CloudError

An error response received from the Azure Data Factory service.

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

IntegrationRuntimes_OutboundNetworkDependenciesEndpoints

Sample Request

GET https://management.azure.com/subscriptions/7ad7c73b-38b8-4df3-84ee-52ff91092f61/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/integrationRuntimes/exampleIntegrationRuntime/outboundNetworkDependenciesEndpoints?api-version=2018-06-01

Sample Response

Date: Tue, 06 Jul 2021 04:28:10 GMT
X-Content-Type-Options: nosniff
x-ms-request-id: fd8e4223-7e9c-4f32-893f-06c14a8081be
x-ms-correlation-request-id: 1dabf122-e061-4703-ae9e-9edeeef40ee6
{
  "value": [
    {
      "category": "Azure Data Factory (Management)",
      "endpoints": [
        {
          "domainName": "wu.frontend.int.clouddatahub-int.net",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    },
    {
      "category": "Azure Storage (Management)",
      "endpoints": [
        {
          "domainName": "*.blob.core.windows.net",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        },
        {
          "domainName": "*.table.core.windows.net",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    },
    {
      "category": "Event Hub (Logging)",
      "endpoints": [
        {
          "domainName": "*.servicebus.windows.net",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    },
    {
      "category": "Microsoft Logging service (Internal Use)",
      "endpoints": [
        {
          "domainName": "gcs.prod.monitoring.core.windows.net",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        },
        {
          "domainName": "prod.warmpath.msftcloudes.com",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        },
        {
          "domainName": "azurewatsonanalysis-prod.core.windows.net",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    }
  ]
}

Definitions

Name Description
CloudError

The object that defines the structure of an Azure Data Factory error response.

IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint

Azure-SSIS integration runtime outbound network dependency endpoints for one category.

IntegrationRuntimeOutboundNetworkDependenciesEndpoint

The endpoint for Azure-SSIS integration runtime outbound network dependency.

IntegrationRuntimeOutboundNetworkDependenciesEndpointDetails

The details of Azure-SSIS integration runtime outbound network dependency endpoint.

IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponse

Azure-SSIS integration runtime outbound network dependency endpoints.

CloudError

The object that defines the structure of an Azure Data Factory error response.

Name Type Description
error.code

string

Error code.

error.details

CloudError[]

Array with additional error details.

error.message

string

Error message.

error.target

string

Property name/path in request associated with error.

IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint

Azure-SSIS integration runtime outbound network dependency endpoints for one category.

Name Type Description
category

string

The category of outbound network dependency.

endpoints

IntegrationRuntimeOutboundNetworkDependenciesEndpoint[]

The endpoints for outbound network dependency.

IntegrationRuntimeOutboundNetworkDependenciesEndpoint

The endpoint for Azure-SSIS integration runtime outbound network dependency.

Name Type Description
domainName

string

The domain name of endpoint.

endpointDetails

IntegrationRuntimeOutboundNetworkDependenciesEndpointDetails[]

The details of endpoint.

IntegrationRuntimeOutboundNetworkDependenciesEndpointDetails

The details of Azure-SSIS integration runtime outbound network dependency endpoint.

Name Type Description
port

integer

The port of endpoint.

IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponse

Azure-SSIS integration runtime outbound network dependency endpoints.

Name Type Description
value

IntegrationRuntimeOutboundNetworkDependenciesCategoryEndpoint[]

The list of outbound network dependency endpoints.