forked from Azure/azure-sdk-for-java
-
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
Dan Schulte
committed
May 4, 2016
1 parent
49cc5e0
commit 4c5f556
Showing
11 changed files
with
1,541 additions
and
153 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
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
61 changes: 61 additions & 0 deletions
61
...erators/AzureResourceSchema/AzureResourceSchema.Tests/Expected/Batch/Microsoft.Batch.json
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,61 @@ | ||
{ | ||
"id": "http://schema.management.azure.com/schemas/2015-12-01/Microsoft.Batch.json#", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Microsoft.Batch", | ||
"description": "Microsoft Batch Resource Types", | ||
"resourceDefinitions": { | ||
"batchAccounts": { | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"enum": [ | ||
"Microsoft.Batch/batchAccounts" | ||
] | ||
}, | ||
"apiVersion": { | ||
"enum": [ | ||
"2015-12-01" | ||
] | ||
}, | ||
"location": { | ||
"type": "string", | ||
"description": "The region in which the account is created." | ||
}, | ||
"tags": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": "string" | ||
}, | ||
"description": "The user specified tags associated with the account." | ||
}, | ||
"properties": { | ||
"autoStorage": { | ||
"$ref": "#/definitions/AutoStorageBaseProperties", | ||
"description": "The properties related to auto storage." | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"apiVersion", | ||
"properties" | ||
], | ||
"description": "Microsoft.Batch/batchAccounts" | ||
} | ||
}, | ||
"definitions": { | ||
"AutoStorageBaseProperties": { | ||
"type": "object", | ||
"properties": { | ||
"storageAccountId": { | ||
"type": "string", | ||
"description": "The resource id of the storage account to be used for auto storage." | ||
} | ||
}, | ||
"required": [ | ||
"storageAccountId" | ||
], | ||
"description": "The properties related to auto storage." | ||
} | ||
} | ||
} |
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.