-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
apimoutbounddependency.json
161 lines (161 loc) · 5.11 KB
/
apimoutbounddependency.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"swagger": "2.0",
"info": {
"title": "ApiManagementClient",
"description": "Use these REST APIs for getting the outbound network dependency of your Azure API Management deployment. When the API Management service is deployed inside a Virtual Network, it needs to have access to other Azure resources it depends on. This also gives details about the DNS Servers visible to Azure API Management deployment.",
"version": "2023-05-01-preview"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow.",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/outboundNetworkDependenciesEndpoints": {
"get": {
"tags": [
"OutboundNetworkDependenciesEndpoints"
],
"operationId": "OutboundNetworkDependenciesEndpoints_ListByService",
"description": "Gets the network endpoints of all outbound dependencies of a ApiManagement service.",
"x-ms-examples": {
"ApiManagementServiceGetOutboundNetworkDependenciesEndpoints": {
"$ref": "./examples/ApiManagementServiceGetOutboundNetworkDependenciesEndpoints.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/OutboundEnvironmentEndpointList"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
}
},
"definitions": {
"OutboundEnvironmentEndpointList": {
"description": "Collection of Outbound Environment Endpoints",
"required": [
"value"
],
"type": "object",
"properties": {
"value": {
"description": "Collection of resources.",
"type": "array",
"items": {
"$ref": "#/definitions/OutboundEnvironmentEndpoint"
},
"x-ms-identifiers": []
},
"nextLink": {
"description": "Link to next page of resources.",
"type": "string",
"readOnly": true
}
}
},
"OutboundEnvironmentEndpoint": {
"description": "Endpoints accessed for a common purpose that the Api Management Service requires outbound network access to.",
"type": "object",
"properties": {
"category": {
"description": "The type of service accessed by the Api Management Service, e.g., Azure Storage, Azure SQL Database, and Azure Active Directory.",
"type": "string"
},
"endpoints": {
"description": "The endpoints that the Api Management Service reaches the service at.",
"type": "array",
"items": {
"$ref": "#/definitions/EndpointDependency"
},
"x-ms-identifiers": [
"domainName"
]
}
}
},
"EndpointDependency": {
"description": "A domain name that a service is reached at.",
"type": "object",
"properties": {
"domainName": {
"description": "The domain name of the dependency.",
"type": "string"
},
"endpointDetails": {
"description": "The Ports used when connecting to DomainName.",
"type": "array",
"items": {
"$ref": "#/definitions/EndpointDetail"
},
"x-ms-identifiers": [
"region",
"port"
]
}
}
},
"EndpointDetail": {
"description": "Current TCP connectivity information from the Api Management Service to a single endpoint.",
"type": "object",
"properties": {
"port": {
"format": "int32",
"description": "The port an endpoint is connected to.",
"type": "integer"
},
"region": {
"description": "The region of the dependency.",
"type": "string"
}
}
}
},
"parameters": {}
}