Skip to content

Commit

Permalink
Copy the 2017-03-01 files
Browse files Browse the repository at this point in the history
  • Loading branch information
solankisamir committed Feb 15, 2018
1 parent 29c68f3 commit a0a94e4
Show file tree
Hide file tree
Showing 259 changed files with 27,627 additions and 15 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
{
"swagger": "2.0",
"info": {
"title": "ApiManagementClient",
"description": "Use these REST APIs for getting the network connectivity status 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": "2017-03-01"
},
"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}/networkstatus": {
"get": {
"tags": [
"NetworkStatus"
],
"operationId": "NetworkStatus_ListByService",
"description": "Gets the Connectivity Status to the external resources on which the Api Management service depends from inside the Cloud Service. This also returns the DNS Servers as visible to the CloudService.",
"x-ms-examples": {
"ApiManagementServiceGetNetworkStatus": {
"$ref": "./examples/ApiManagementServiceGetNetworkStatus.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Gets the Network status details.",
"schema": {
"$ref": "#/definitions/NetworkStatusContract"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/locations/{locationName}/networkstatus": {
"get": {
"tags": [
"NetworkStatus"
],
"operationId": "NetworkStatus_ListByLocation",
"description": "Gets the Connectivity Status to the external resources on which the Api Management service depends from inside the Cloud Service. This also returns the DNS Servers as visible to the CloudService.",
"x-ms-examples": {
"ApiManagementServiceGetNetworkStatusByLocation": {
"$ref": "./examples/ApiManagementServiceGetNetworkStatusByLocation.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"$ref": "#/parameters/LocationNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Gets the Network status details.",
"schema": {
"$ref": "#/definitions/NetworkStatusContract"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
}
},
"definitions": {
"ConnectivityStatusContract": {
"properties": {
"name": {
"type": "string",
"description": "The hostname of the resource which the service depends on. This can be the database, storage or any other azure resource on which the service depends upon.",
"minLength": 1
},
"status": {
"type": "string",
"enum": [
"initializing",
"success",
"failure"
],
"x-ms-enum": {
"name": "ConnectivityStatusType",
"modelAsString": true
},
"description": "Resource Connectivity Status Type identifier."
},
"error": {
"type": "string",
"description": "Error details of the connectivity to the resource."
},
"lastUpdated": {
"type": "string",
"format": "date-time",
"description": "The date when the resource connectivity status was last updated. This status should be updated every 15 minutes. If this status has not been updated, then it means that the service has lost network connectivity to the resource, from inside the Virtual Network.The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n"
},
"lastStatusChange": {
"type": "string",
"format": "date-time",
"description": "The date when the resource connectivity status last Changed from success to failure or vice-versa. The date conforms to the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.\n"
}
},
"required": [
"name",
"status",
"lastUpdated",
"lastStatusChange"
],
"description": "Details about connectivity to a resource."
},
"NetworkStatusContract": {
"properties": {
"dnsServers": {
"type": "array",
"items": {
"type": "string"
},
"description": "Gets the list of DNS servers IPV4 addresses."
},
"connectivityStatus": {
"type": "array",
"items": {
"$ref": "#/definitions/ConnectivityStatusContract"
},
"description": "Gets the list of Connectivity Status to the Resources on which the service depends upon."
}
},
"required": [
"dnsServers",
"connectivityStatus"
],
"description": "Network Status details."
}
},
"parameters": {
"LocationNameParameter": {
"name": "locationName",
"in": "path",
"required": true,
"type": "string",
"description": "Location in which the API Management service is deployed. This is one of the Azure Regions like West US, East US, South Central US.",
"minLength": 1,
"x-ms-parameter-location": "method"
}
}
}
Loading

0 comments on commit a0a94e4

Please sign in to comment.