Skip to content

Commit

Permalink
Adds base for updating Microsoft.App from version stable/2022-03-01 t…
Browse files Browse the repository at this point in the history
…o version 2022-06-01
  • Loading branch information
Jinzhao Tian committed Aug 5, 2022
1 parent 3668731 commit df1ccbb
Show file tree
Hide file tree
Showing 55 changed files with 7,273 additions and 0 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.

Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
{
"swagger": "2.0",
"info": {
"version": "2022-03-01",
"title": "ContainerApps API Client"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/providers/Microsoft.App/operations": {
"get": {
"tags": [
"Operations"
],
"description": "Lists all of the available RP operations.",
"operationId": "Operations_List",
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK. The request has succeeded.",
"schema": {
"$ref": "#/definitions/AvailableOperations"
}
},
"default": {
"description": "Resource Provider error response describing why the operation failed.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"List all operations": {
"$ref": "./examples/Operations_List.json"
}
}
}
}
},
"definitions": {
"AvailableOperations": {
"description": "Available operations of the service",
"type": "object",
"properties": {
"value": {
"description": "Collection of available operation details",
"uniqueItems": false,
"type": "array",
"items": {
"$ref": "#/definitions/OperationDetail"
},
"x-ms-identifiers": [
"name"
]
},
"nextLink": {
"description": "URL client should use to fetch the next page (per server side paging).\r\nIt's null for now, added for future use.",
"type": "string"
}
}
},
"OperationDetail": {
"description": "Operation detail payload",
"type": "object",
"properties": {
"name": {
"description": "Name of the operation",
"type": "string"
},
"isDataAction": {
"description": "Indicates whether the operation is a data action",
"type": "boolean"
},
"display": {
"$ref": "#/definitions/OperationDisplay",
"description": "Display of the operation"
},
"origin": {
"description": "Origin of the operation",
"type": "string"
}
}
},
"OperationDisplay": {
"description": "Operation display payload",
"type": "object",
"properties": {
"provider": {
"description": "Resource provider of the operation",
"type": "string"
},
"resource": {
"description": "Resource of the operation",
"type": "string"
},
"operation": {
"description": "Localized friendly name for the operation",
"type": "string"
},
"description": {
"description": "Localized friendly description for the operation",
"type": "string"
}
}
}
},
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"description": "Azure Active Directory OAuth2 Flow",
"flow": "implicit",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
]
}
Loading

0 comments on commit df1ccbb

Please sign in to comment.