Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 05dfac4

Browse files
author
Varun Kumar
committed
Merge branch 'current' of https://github.com/Azure/azure-rest-api-specs into current
2 parents 0fa1990 + b57b269 commit 05dfac4

File tree

4,905 files changed

+118297
-12374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,905 files changed

+118297
-12374
lines changed

.travis.yml

Lines changed: 53 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,32 @@
11
language: node_js
22
node_js:
3-
- "8"
3+
- '8'
44
services:
55
- docker
66
env:
77
matrix:
8-
- MODE=syntax
9-
- MODE=python
8+
- MODE=syntax
9+
- MODE=python
1010
# - MODE=node
11-
- MODE=ruby
12-
- MODE=semantic PR_ONLY=true
13-
# - MODE=linter PR_ONLY=false Disabling to save travis-ci resource for now
14-
- MODE=semantic PR_ONLY=false
15-
- MODE=model PR_ONLY=false
16-
- MODE=linter PR_ONLY=true
17-
- MODE=model PR_ONLY=true
18-
- MODE=BreakingChange PR_ONLY=true
19-
- MODE=azurebot PR_ONLY=true
20-
global:
21-
secure: n7Ptb5x7Zdq/7na2L68JlrRPbl/xWtiFQncO7fsrSVuVGI4Mhjj1LD2k07qWAdFPM1PaZYvCRWc3YwbXr1NTOOn485r6qcLUjpN9TICP0ErGcEA9SzctipfbFP1IV4aCh23WSaopMueBki52KfskaGcZ2ox9pvI2LCysCp7q4WwF/0vArLYf48FeZuscWHVaLsU4z8ZMFPT9yHg+RQoqPeBnaR/ZGtG96NZolT+VAlP445geb0qn8wWAuSl4bR1JQV2eA3MwdWu/iVkepBeKTN7d81l3yjWzTvFtP/JRJClWBNQbOMjAed3/2Tr2lGgyRUM6Uwp4KvfRmbX3Xrlggen1AO/YAb2mJDs+HARPnhZXIOtDjgft/ethVeLTTBUsbNFGUN2lcrJMw9dkFi+ai3XefatENJbULqWx8Xb+wMD1b0TrI6sZZpdC8vYHnM/DoqiEh5+h3okkSmQcjPF4K9js294G790PKf4u2CQdur41qh4Ze4IzbvulVsGMON+O93vA6ZRK1sTHC5VUTs2iMhCnf6LtMN59kBq1T2MJ8ndXRpGlFEn2wDTjJSpSr0k0sjoG5i+bIFhbqVF8xegBb/PH4H9/i1ifIypNNp0FGdz4o2cFsYrcUKFsx1C/kFJ6rC809r0odDt32hGSOkOCziTwFHusbR5Nwf0RjOWSgvc=
11+
- MODE=ruby
12+
- MODE=semantic PR_ONLY=true
13+
- MODE=semantic PR_ONLY=false
14+
- MODE=model PR_ONLY=false
15+
- MODE=linter PR_ONLY=true
16+
- MODE=model PR_ONLY=true
17+
- MODE=BreakingChange PR_ONLY=true
18+
- MODE=azurebot PR_ONLY=true
19+
- MODE=liveValidation PR_ONLY=true
2220
matrix:
2321
fast_finish: true
2422
allow_failures:
25-
- env: MODE=linter PR_ONLY=false
2623
- env: MODE=semantic PR_ONLY=false
2724
- env: MODE=model PR_ONLY=false
2825
- env: MODE=linter PR_ONLY=true
2926
- env: MODE=model PR_ONLY=true
3027
- env: MODE=BreakingChange PR_ONLY=true
3128
- env: MODE=azurebot PR_ONLY=true
29+
- env: MODE=liveValidation PR_ONLY=true
3230
before_install:
3331
- docker pull lmazuel/swagger-to-sdk
3432
- python -c "import os; print('\n'.join(v for v in os.environ.keys() if v.startswith('TRAVIS')))" > /tmp/env_file
@@ -43,12 +41,43 @@ install:
4341
- npm install
4442
script:
4543
- DOCKER_CMD="docker run --rm --env-file /tmp/env_file -e GH_TOKEN -v $PWD:/git-restapi/ lmazuel/swagger-to-sdk"
46-
- if [[ $MODE == 'python' ]]; then $DOCKER_CMD AutorestCI/azure-sdk-for-python --pr-repo-id Azure/azure-sdk-for-python -o master -v; fi
47-
- if [[ $MODE == 'node' ]]; then $DOCKER_CMD AutorestCI/azure-sdk-for-node --pr-repo-id Azure/azure-sdk-for-node -o master -v; fi
48-
- if [[ $MODE == 'ruby' ]]; then $DOCKER_CMD AutorestCI/azure-sdk-for-ruby --pr-repo-id Azure/azure-sdk-for-ruby -o master -v; fi
49-
- if [[ $MODE == 'syntax' ]]; then npm test -- test/syntax.js; fi
50-
- if [[ $MODE == 'linter' ]]; then npm test -- test/linter.js; fi
51-
- if [[ $MODE == 'semantic' ]]; then npm test -- test/semantic.js; fi
52-
- if [[ $MODE == 'model' ]]; then npm test -- test/model.js; fi
53-
- if [[ $MODE == 'BreakingChange' ]]; then node -- scripts/breaking-change.js; fi
54-
- if [[ $MODE == 'azurebot' ]]; then node scripts/momentOfTruth.js; fi
44+
- >-
45+
if [[ $MODE == 'python' ]]; then
46+
$DOCKER_CMD AutorestCI/azure-sdk-for-python --pr-repo-id Azure/azure-sdk-for-python -o master -v
47+
fi
48+
- >-
49+
if [[ $MODE == 'node' ]]; then
50+
$DOCKER_CMD AutorestCI/azure-sdk-for-node --pr-repo-id Azure/azure-sdk-for-node -o master -v
51+
fi
52+
- >-
53+
if [[ $MODE == 'ruby' ]]; then
54+
$DOCKER_CMD AutorestCI/azure-sdk-for-ruby --pr-repo-id Azure/azure-sdk-for-ruby -o master -v
55+
fi
56+
- >-
57+
if [[ $MODE == 'syntax' ]]; then
58+
npm test -- test/syntax.js
59+
fi
60+
- >-
61+
if [[ $MODE == 'linter' ]]; then
62+
npm test -- test/linter.js
63+
fi
64+
- >-
65+
if [[ $MODE == 'semantic' ]]; then
66+
npm test -- test/semantic.js
67+
fi
68+
- >-
69+
if [[ $MODE == 'model' ]]; then
70+
npm test -- test/model.js
71+
fi
72+
- >-
73+
if [[ $MODE == 'BreakingChange' ]]; then
74+
node -- scripts/breaking-change.js
75+
fi
76+
- >-
77+
if [[ $MODE == 'azurebot' ]]; then
78+
node scripts/momentOfTruth.js
79+
fi
80+
- >-
81+
if [[ $MODE == 'liveValidation' ]]; then
82+
node -- scripts/liveValidation.js;
83+
fi

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@
66

77
This repository is the canonical source for REST API specifications for Microsoft Azure.
88

9+
## News
10+
11+
While you're away for the holiday season, we're going to be making a few improvements to the Azure REST API Specs repository:
12+
13+
- We will stop merging PRs until the new year starting on **6:00 p.m. December 20th, 2017**.
14+
- Starting on **December 21st, 2017**, we will be restoring `master` as the default branch for this repository.
15+
- All open PRs will automatically be updated to target `master` instead of `current`.
16+
- We will stop accepting contributions to the `current` branch.
17+
- On **December 21st, 2017**, we will merge a refactoring of this repository where we introduce `preview` and `stable` directories to differentiate Swaggers and services that are ready for General Availability and those that are not yet.
18+
- Beginning **December 21st, 2017**, the `master` branch in the private repository will become a read-only copy of the `master` branch in the public repository.
19+
20+
For more information about this project, please see our wiki:
21+
[December 2017 Refactoring](https://github.com/Azure/azure-rest-api-specs/wiki/December-2017-Refactoring)
22+
923
## Basics
1024
If you're a spec author looking for information about all of of the repositories and steps in the pipeline, go to the [adx-documentation-pr](https://github.com/Azure/adx-documentation-pr) repository. Make sure to [join the Github Azure organization](http://aka.ms/azuregithub) to get access to that repo.
1125

arm-compute/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Quick Start Templates
2+
3+
**IMPORTANT**: The contents of this directory are duplicates of the files in `../specification/compute/quickstart-templates`. However, **they MUST not be deleted**.
4+
5+
To do so would break Azure CLI 2.0 users looking to create infrastructure from the quickstart templates.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Quick Start Templates
2+
3+
**IMPORTANT**: The contents of this directory are duplicates of the files in `../../specification/compute/quickstart-templates`. However, **they MUST not be deleted**.
4+
5+
To do so would break Azure CLI 2.0 users looking to create infrastructure from the quickstart templates.
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
3+
"contentVersion":"1.0.0.0",
4+
"parameters":{},
5+
"variables":{},
6+
"resources":[],
7+
8+
"outputs":{
9+
"aliases":{
10+
"type":"object",
11+
"value":{
12+
13+
"Linux":{
14+
"CentOS":{
15+
"publisher":"OpenLogic",
16+
"offer":"CentOS",
17+
"sku":"7.3",
18+
"version":"latest"
19+
},
20+
"CoreOS":{
21+
"publisher":"CoreOS",
22+
"offer":"CoreOS",
23+
"sku":"Stable",
24+
"version":"latest"
25+
},
26+
"Debian":{
27+
"publisher":"credativ",
28+
"offer":"Debian",
29+
"sku":"8",
30+
"version":"latest"
31+
},
32+
"openSUSE-Leap": {
33+
"publisher":"SUSE",
34+
"offer":"openSUSE-Leap",
35+
"sku":"42.2",
36+
"version": "latest"
37+
},
38+
"RHEL":{
39+
"publisher":"RedHat",
40+
"offer":"RHEL",
41+
"sku":"7.3",
42+
"version":"latest"
43+
},
44+
"SLES":{
45+
"publisher":"SUSE",
46+
"offer":"SLES",
47+
"sku":"12-SP2",
48+
"version":"latest"
49+
},
50+
"UbuntuLTS":{
51+
"publisher":"Canonical",
52+
"offer":"UbuntuServer",
53+
"sku":"16.04-LTS",
54+
"version":"latest"
55+
}
56+
},
57+
58+
"Windows":{
59+
"Win2016Datacenter":{
60+
"publisher":"MicrosoftWindowsServer",
61+
"offer":"WindowsServer",
62+
"sku":"2016-Datacenter",
63+
"version":"latest"
64+
},
65+
"Win2012R2Datacenter":{
66+
"publisher":"MicrosoftWindowsServer",
67+
"offer":"WindowsServer",
68+
"sku":"2012-R2-Datacenter",
69+
"version":"latest"
70+
},
71+
"Win2012Datacenter":{
72+
"publisher":"MicrosoftWindowsServer",
73+
"offer":"WindowsServer",
74+
"sku":"2012-Datacenter",
75+
"version":"latest"
76+
},
77+
"Win2008R2SP1":{
78+
"publisher":"MicrosoftWindowsServer",
79+
"offer":"WindowsServer",
80+
"sku":"2008-R2-SP1",
81+
"version":"latest"
82+
}
83+
}
84+
}
85+
}
86+
}
87+
}

0 commit comments

Comments
 (0)