Skip to content

Commit

Permalink
Merge pull request Azure#44 from amarzavery/staging
Browse files Browse the repository at this point in the history
Merging public to private as of 2/9/2017 10:20 AM PST
  • Loading branch information
amarzavery authored Feb 9, 2017
2 parents b9ae707 + fbb921b commit 64fedb3
Show file tree
Hide file tree
Showing 10 changed files with 15,715 additions and 24 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ env:
# - MODE=node
# - MODE=ruby
- MODE=linter PR_ONLY=false
- MODE=linter PR_ONLY=true
- MODE=semantic PR_ONLY=false
- MODE=semantic PR_ONLY=true
- MODE=model PR_ONLY=false
- MODE=linter PR_ONLY=true
- MODE=semantic PR_ONLY=true
- MODE=model PR_ONLY=true
global:
secure: IwPVExGJQfL6QpTd6Utv3R/qBz7yApgMspzMLSkrq9cMP6t+NHk1vYg0n2evcWaq2rqNZE9xBMfRZi7Yy/RCUT++qALE89xlNvZ/A94PaDUiK3tYYNj1XxsgRauCHshXz6smmLwQMpTKsEl6lyjXeXpwQMDNRehhTu0Hg2tE7ZikfQVb+jjRNcP41RfzzGQyxEhd3fxF2G1G21WXH0cXtZssOd1MYcXhmXk8dR3DyEEMbPzDV1Bk3auXOvbqS79bnZ/Pi4p/7P/aTOm8O2ACKM0XAvww95vAQ0LcPzKnNe3sNjFVAssBiZbIk0Zs30wULBphlTxVoufHKSZuTf+QEBTKpH99v/+SBDDPu9+0q2esq7TKgf8bvzkeXjh54fECdJUqEo9E2gW08+RQxWCqryMJouOPcY2OMs4lZwSMOXQY68a/CYVRWFaFg5s6jntC8sLHtDxV0qem3xyjc+852v8rUfkyvMhOBoZJjWmnqYVqdamHOOfrzjc7AzPUEzSeiN6OPPVli+SzwLHdip0GxdK46pAISCOcbdyYn11VvTIn1QosE66eWhF6SViVH6lNWgSfVTpcQ2zq/qSKh0/zpwn82Ys+wKDOf3EwQAanndgk26npi7Ik4nIuexZ/TE56rQ7qjZqmHoxFz7QMeTZDiVmLFxtR19cTT3GLxDz8nBQ=
matrix:
fast_finish: true
allow_failures:
- env: MODE=linter PR_ONLY=false
- env: MODE=linter PR_ONLY=true
- env: MODE=semantic PR_ONLY=false
- env: MODE=semantic PR_ONLY=true
- env: MODE=model PR_ONLY=false
- env: MODE=linter PR_ONLY=true
- env: MODE=semantic PR_ONLY=true
- env: MODE=model PR_ONLY=true
before_install:
# - docker pull lmazuel/swagger-to-sdk
Expand Down
39 changes: 39 additions & 0 deletions arm-batch/2017-01-01/examples/BatchAccountCreate_Default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"parameters": {
"accountName": "sampleacct",
"resourceGroupName": "default-azurebatch-japaneast",
"api-version": "2017-07-01",
"subscriptionId": "subid",
"parameters": {
"location": "japaneast",
"properties": {
"autoStorage": {
"storageAccountId": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage"
}
}
}
},
"responses": {
"202": {},
"200": {
"body": {
"name": "sampleacct",
"location": "japaneast",
"properties": {
"accountEndpoint": "sampleacct.japaneast.batch.azure.com",
"provisioningState": "Succeeded",
"poolAllocationMode": "BatchService",
"coreQuota": 20,
"poolQuota": 20,
"activeJobAndJobScheduleQuota": 20,
"autoStorage": {
"storageAccountId": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
"lastKeySync": "2016-03-10T23:48:38.9878479Z"
}
},
"id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/sampleacct",
"type": "Microsoft.Batch/batchAccounts"
}
}
}
}
12 changes: 12 additions & 0 deletions arm-batch/2017-01-01/examples/BatchAccountDelete.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"parameters": {
"accountName": "sampleacct",
"resourceGroupName": "default-azurebatch-japaneast",
"api-version": "2017-07-01",
"subscriptionId": "subid"
},
"responses": {
"200": {},
"202": {}
}
}
30 changes: 30 additions & 0 deletions arm-batch/2017-01-01/examples/BatchAccountGet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"parameters": {
"accountName": "sampleacct",
"resourceGroupName": "default-azurebatch-japaneast",
"api-version": "2017-07-01",
"subscriptionId": "subid"
},
"responses": {
"200": {
"body": {
"name": "sampleacct",
"location": "japaneast",
"properties": {
"accountEndpoint": "sampleacct.japaneast.batch.azure.com",
"provisioningState": "Succeeded",
"poolAllocationMode": "BatchService",
"coreQuota": 20,
"poolQuota": 20,
"activeJobAndJobScheduleQuota": 20,
"autoStorage": {
"storageAccountId": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Storage/storageAccounts/samplestorage",
"lastKeySync": "2016-03-10T23:48:38.9878479Z"
}
},
"id": "/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/sampleacct",
"type": "Microsoft.Batch/batchAccounts"
}
}
}
}
Loading

0 comments on commit 64fedb3

Please sign in to comment.