Skip to content

Commit

Permalink
Adding old version
Browse files Browse the repository at this point in the history
  • Loading branch information
microsoft-rin committed Feb 13, 2020
1 parent a2f8210 commit 6bf3a73
Show file tree
Hide file tree
Showing 11 changed files with 172 additions and 366 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{
"swagger": "2.0",
"info": {
"title": "Azure Media Services",
"version": "2018-07-01"
},
"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": {},
"definitions": {
"Resource": {
"description": "The core properties of ARM resources.",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "Fully qualified resource ID for the resource."
},
"name": {
"readOnly": true,
"type": "string",
"description": "The name of the resource."
},
"type": {
"readOnly": true,
"type": "string",
"description": "The type of the resource."
}
},
"x-ms-azure-resource": true
},
"TrackedResource": {
"description": "The resource model definition for a ARM tracked resource.",
"properties": {
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"x-ms-mutability": [
"read",
"create",
"update"
],
"description": "Resource tags."
},
"location": {
"type": "string",
"x-ms-mutability": [
"read",
"create"
],
"description": "The Azure Region of the resource."
}
},
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
},
"ProxyResource": {
"description": "The resource model definition for a ARM proxy resource.",
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
}
}
}
Loading

0 comments on commit 6bf3a73

Please sign in to comment.