forked from Azure/azure-resource-manager-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SDK Automation
committed
Aug 24, 2020
1 parent
05a8e50
commit 9e58046
Showing
51 changed files
with
3,334 additions
and
6,959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
{ | ||
"id": "https://schema.management.azure.com/schemas/2014-02-26/microsoft.visualstudio.json", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "microsoft.visualstudio", | ||
"description": "Visual Studio Online Account and Project Resource", | ||
"resourceDefinitions": { | ||
"account": { | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"enum": [ | ||
"microsoft.visualstudio/account" | ||
] | ||
}, | ||
"apiVersion": { | ||
"enum": [ | ||
"2014-02-26" | ||
] | ||
}, | ||
"properties": { | ||
"type": "object", | ||
"properties": { | ||
"OperationType": { | ||
"type": "string", | ||
"minLength": 1, | ||
"description": "microsoft.visualstudio/account: Type of operation being performed on the account, which can be either Create or Link." | ||
}, | ||
"AccountName": { | ||
"type": "string", | ||
"minLength": 1, | ||
"description": "microsoft.visualstudio/account: Name of the Visual Studio Online account" | ||
} | ||
} | ||
}, | ||
"resources": { | ||
"type": "array", | ||
"items": { | ||
"allOf": [ | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/resourceBase" | ||
}, | ||
{ | ||
"$ref": "#/resourceDefinitions/project" | ||
} | ||
] | ||
}, | ||
"description": "microsoft.visualstudio/account: Visual Studio Online Account." | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"apiVersion", | ||
"properties", | ||
"location" | ||
], | ||
"description": "microsoft.visualstudio account" | ||
}, | ||
"project": { | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"enum": [ | ||
"microsoft.visualstudio/account/project", | ||
"project" | ||
] | ||
}, | ||
"apiVersion": { | ||
"enum": [ | ||
"2014-02-26" | ||
] | ||
}, | ||
"properties": { | ||
"type": "object", | ||
"properties": { | ||
"ProcessTemplateId": { | ||
"type": "string", | ||
"minLength": 1, | ||
"description": "microsoft.visualstudio/account/project: Process template guid for the project" | ||
}, | ||
"VersionControlOption": { | ||
"type": "string", | ||
"minLength": 1, | ||
"description": "microsoft.visualstudio/account/project: Version control type for the project, currently TfsVc and Git" | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"apiVersion", | ||
"properties" | ||
], | ||
"description": "microsoft.visualstudio account/project: Visual Studio Online TFS Project" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.