Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FI from master branch to network-february-release. #5262

Merged
merged 28 commits into from
Feb 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
aa409a4
DataFactory Swagger Change for SapOpenHub and Rest (#5195)
wenbof Feb 19, 2019
aab4327
Add cognitive service AnomalyFinder (#5126)
moreOver0 Feb 19, 2019
a3e4864
Improving secretVersion description (#5220)
DCtheGeek Feb 19, 2019
a8024db
[Cogsvcs] LUIS - add text to simple entity description (#5216)
diberry Feb 19, 2019
db5576a
Add hwRevision field to HanaInstance definition (#5196)
AprilZhaoWY Feb 19, 2019
c635691
[DataFactory] Swagger changes for ADF newly released features: (#5218)
wuchunchunt19 Feb 20, 2019
a51a0cf
Node v 10. (#5236)
sergey-shandar Feb 20, 2019
847850a
Remove API reference of Gender::genderless. (#5188)
lebronJ Feb 20, 2019
3099de0
Add an Operations API for Commitment Plan RP (#5222)
weedqian Feb 20, 2019
541a1c8
Fix NewtonSoftJson Issue (#5240)
sarangan12 Feb 20, 2019
145e03e
Support create pipeline run with recovery mode
LijuanZ Feb 20, 2019
a5792e1
Update description of isLatest
LijuanZ Feb 20, 2019
ad2e0e2
Update descriptions
LijuanZ Feb 20, 2019
161196e
update autorest version to fix CI
jhendrixMSFT Feb 21, 2019
5dc9ec3
Add suppresses for Machine Learning Commitment Plan RP (#5221)
weedqian Feb 21, 2019
29f93fd
typo: datafactory/resource-manager/Microsoft.DataFactory/stable/2018-…
nschonni Feb 21, 2019
90f6af0
scripts (#5213)
sergey-shandar Feb 21, 2019
ad7f124
Fix for lintdiff tool memory issue. (#5246)
sergey-shandar Feb 21, 2019
9a4471b
2019 Azure Stack hybrid Profile. (#5212)
sijuman Feb 22, 2019
c24c50c
[Azure Search] Add Suggest and Index APIs to data plane Swagger spec …
brjohnstmsft Feb 22, 2019
d4efa60
Adding new properties to Databricks LS and custom activity (#5214)
hvermis Feb 22, 2019
a1ee96b
typo: instantitate -> instantiate (#5251)
nschonni Feb 22, 2019
5df40b9
Users/laramume/addv2.1 swagger (#5187)
laramume Feb 22, 2019
1b8a97c
Update swagger file and examples with time zone parameter (#5224)
NMijat1024 Feb 22, 2019
a9e7c4f
Minor (but improtant) changes in Azure DevOps pipeline. (#5253)
sergey-shandar Feb 22, 2019
a628a43
[Ready to MERGE] Swagger for Tenant Properties API (#5038)
santoshsinha100 Feb 22, 2019
dbfe24f
Add JavaScript/TypeScript generation details to resource-manager/neta…
Feb 25, 2019
672c412
Azure Security Center - break-to-composite v1 (#5197)
eliagrady Feb 25, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- '8'
- '10'
services:
- docker
env:
Expand All @@ -18,7 +18,7 @@ env:
- MODE=model PR_ONLY=true CHECK_NAME="Model Validator"
# - MODE=model PR_ONLY=false
- MODE=BreakingChange PR_ONLY=true CHECK_NAME="Breaking Changes"
- MODE=lintdiff PR_ONLY=true CHECK_NAME="Linter Diff"
- MODE=lintdiff PR_ONLY=true CHECK_NAME="Linter Diff" NODE_OPTIONS=--max-old-space-size=8192
matrix:
fast_finish: true
allow_failures:
Expand Down
107 changes: 100 additions & 7 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,102 @@
pool:
vmImage: 'Ubuntu 16.04'
name: "Azure OpenAPI"

steps:
trigger: none

- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
variables:
TRAVIS: 'true'
TRAVIS_BRANCH: $(System.PullRequest.TargetBranch)
TRAVIS_PULL_REQUEST: $(System.PullRequest.PullRequestNumber)
TRAVIS_REPO_SLUG: $(Build.Repository.Name)
TRAVIS_PULL_REQUEST_SLUG: $(Build.Repository.Name)
TRAVIS_PULL_REQUEST_SHA: $(Build.SourceVersion)
PR_ONLY: 'true'

jobs:

- job: "Syntax"
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: |
echo TRAVIS: $(TRAVIS)
echo TRAVIS_BRANCH: $(TRAVIS_BRANCH)
echo TRAVIS_REPO_SLUG: $(TRAVIS_REPO_SLUG)
echo TRAVIS_PULL_REQUEST: $(TRAVIS_PULL_REQUEST)
echo TRAVIS_PULL_REQUEST_SLUG: $(TRAVIS_PULL_REQUEST_SLUG)
echo TRAVIS_PULL_REQUEST_SHA: $(TRAVIS_PULL_REQUEST_SHA)
echo PR_ONLY: $(PR_ONLY)
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: 'npm test -- test/syntax.js'

- job: "Semantic"
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: 'node scripts/semanticValidation.js'

- job: "ModelValidation"
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: 'node scripts/modelValidation.js'

- job: "BreakingChange"
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: 'scripts/install-dotnet.sh'
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: 'node scripts/breaking-change.js'

- job: "LintDiff"
variables:
NODE_OPTIONS: '--max-old-space-size=8192'
pool:
vmImage: 'Ubuntu 16.04'
steps:
- task: Npm@1
displayName: 'npm install'
inputs:
verbose: false
- script: 'scripts/install-dotnet.sh'
- script: 'node scripts/momentOfTruth.js && node scripts/momentOfTruthPostProcessing.js'

- job: "SDK"
strategy:
matrix:
ruby:
AZURE_SDK_REPO: azure-sdk-for-ruby
AZURE_SDK_PARAMS: ''
java:
AZURE_SDK_REPO: azure-sdk-for-java
AZURE_SDK_PARAMS: ''
javascript:
AZURE_SDK_REPO: azure-sdk-for-js
AZURE_SDK_PARAMS: ''
node:
AZURE_SDK_REPO: azure-sdk-for-node
AZURE_SDK_PARAMS: ''
python:
AZURE_SDK_REPO: azure-sdk-for-python
AZURE_SDK_PARAMS: ''
go:
AZURE_SDK_REPO: azure-sdk-for-go
AZURE_SDK_PARAMS: '-o latest'
pool:
vmImage: 'Ubuntu 16.04'
steps:
- script: "scripts/swagger-to-sdk.sh Azure/$(AZURE_SDK_REPO) -v $(AZURE_SDK_PARAMS)"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"js-yaml": "^3.8.2",
"json-schema-ref-parser": "^3.1.2",
"mocha": "*",
"oad": "^0.1.11",
"oad": "0.1.12",
"oav": "^0.13.4",
"request": "^2.61.0",
"request-promise-native": "^1.0.5",
Expand Down
192 changes: 192 additions & 0 deletions profile/2019-03-01-hybrid.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,192 @@
{
"info": {
"name": "2019-03-01-hybrid",
"description": "Profile definition targeted for hybrid applications that could run on azure stack general availability version and azure cloud for 1903."
},
"resource-manager": {
"microsoft.authorization": {
"2016-09-01": [
"locks"
],
"2016-12-01": [
"policyDefinitions",
"policyAssignments"
],
"2015-07-01": [
"operations",
"permissions",
"roleAssignments",
"roleDefinitions",
"providerOperations"
]
},
"microsoft.compute": {
"2017-12-01": [
"availabilitySets",
"images",
"locations",
"locations/publishers",
"locations/operations",
"locations/usages",
"locations/vmSizes",
"operations",
"virtualMachines",
"virtualMachines/extensions",
"virtualMachineScaleSets",
"virtualMachineScaleSets/extensions",
"virtualmachineScaleSets/networkInterfaces",
"virtualMachineScaleSets/virtualMachines",
"virtualMachineScaleSets/virtualMachines/networkInterfaces",
],
"2017-03-30": [
"disks",
"locations/diskoperations",
"snapshots"
]
},
"microsoft.eventhub": {
"2018-01-01-preview": [
"namespaces",
"checkNameAvailability",
"sku",
"operations"
],
"2015-08-01": [
"checkNamespaceAvailability"
]
},
"microsoft.insights": {
"2018-01-01": [
"metricDefinitions",
"metrics"
],
"2017-05-01-preview": [
"diagnosticSettings",
"diagnosticSettingCategories"
],
"2015-04-01": [
"eventTypes",
"eventCategories",
"operations"
]
},
"microsoft.keyvault": {
"2016-10-01": [
"operations",
"vaults",
"vaults/accessPolicies",
"vaults/secrets"
]
},
"microsoft.network": {
"2017-10-01": [
"connections",
"loadBalancers",
"localNetworkGateways",
"locations",
"locations/operationResults",
"locations/operations",
"locations/usages",
"networkInterfaces",
"networkSecurityGroups",
"operations",
"publicIpAddresses",
"routeTables",
"virtualNetworkGateways",
"virtualNetworks"
],
"2016-04-01": [
"dnsZones"
]
},
"microsoft.resources": {
"2018-05-01": [
"deployments",
"deployments/operations",
"links",
"locations",
"operations",
"providers",
"resourceGroups",
"resources",
"subscriptions",
"subscriptions/locations",
"subscriptions/operationresults",
"subscriptions/providers",
"subscriptions/resourceGroups",
"subscriptions/resourceGroups/resources",
"subscriptions/resources",
"subscriptions/tagNames",
"subscriptions/tagNames/tagValues",
"tenants"
]
},
"microsoft.storage": {
"2017-10-01": [
"checkNameAvailability",
"locations",
"locations/quotas",
"operations",
"storageAccounts",
"storageAccounts/blobServices",
"storageAccounts/queueServices",
"storageAccounts/tableServices",
"usages"
]
},
"microsoft.web": {
"2018-02-01": [
"certificates",
"operations",
"checknameavailability",
"sites",
"sites/domainOwnershipIdentifiers",
"sites/extensions",
"sites/hostNameBindings",
"sites/instances",
"sites/instances/extensions",
"sites/slots",
"sites/slots/hostNameBindings",
"sites/slots/instances",
"sites/slots/instances/extensions",
"serverFarms"
],
"2016-09-01": [
"serverFarms/metricDefinitions",
"serverFarms/metrics",
"serverFarms/usages"
],
"2016-08-01": [
"metadata",
"sites/extensions",
"sites/metricDefinitions",
"sites/metrics",
"sites/recommendations",
"sites/slots/extensions",
"sites/slots/metricDefinitions",
"sites/slots/metrics"
],
"2016-03-01": [
"availableStacks",
"deploymentLocations",
"georegions",
"ishostnameavailable",
"isusernameavailable",
"listSitesAssignedToHostName",
"publishingUsers",
"recommendations",
"runtimes",
"sourceControls",
"validate"
]
}
},
"data-plane": {
"microsoft.keyvault": {
"2016-10-01": []
},
"microsoft.storage": {
"2017-04-17": []
}
}
}
Loading