Skip to content

Commit

Permalink
[Hub Generated] Review request for Microsoft.ApiManagement to add ver…
Browse files Browse the repository at this point in the history
…sion stable/2019-01-01 (#5568)

* Adds base for updating Microsoft.ApiManagement from version preview/2018-06-01-preview to version 2019-01-01

* Updates readme

* Updates API version in new specs and examples

* 2019-01-01 version initial changes
  • Loading branch information
solankisamir authored and sergey-shandar committed Apr 9, 2019
1 parent c54ce0f commit 7b128ec
Show file tree
Hide file tree
Showing 327 changed files with 34,127 additions and 10 deletions.

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,106 @@
{
"swagger": "2.0",
"info": {
"title": "ApiManagementClient",
"description": "Use these REST APIs for performing retrieve a collection of Apis associated with a tag in Azure API Management deployment.",
"version": "2019-01-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}/apisByTags": {
"get": {
"tags": [
"ApisByTag"
],
"operationId": "Api_ListByTags",
"description": "Lists a collection of apis associated with tags.",
"x-ms-examples": {
"ApiManagementListApisByTags": {
"$ref": "./examples/ApiManagementListApisByTags.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./apimanagement.json#/parameters/ServiceNameParameter"
},
{
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "| Field | Supported operators | Supported functions |\n|-------------|------------------------|-----------------------------------|\n\r\n|name | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith|\n|displayName | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith|\n|apiRevision | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith|\n|path | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith|\n|description | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith|\n|serviceUrl | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith|\n|isCurrent | eq | |\n"
},
{
"$ref": "./apimanagement.json#/parameters/TopQueryParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SkipQueryParameter"
},
{
"name": "includeNotTaggedApis",
"in": "query",
"required": false,
"type": "boolean",
"description": "Include not tagged APIs."
},
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Lists a collection of TagResource entities.",
"schema": {
"$ref": "./definitions.json#/definitions/TagResourceCollection"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-odata": "./definitions.json#/definitions/TagResourceContract"
}
}
},
"definitions": {},
"parameters": {}
}

0 comments on commit 7b128ec

Please sign in to comment.