Skip to content

Commit 6214775

Browse files
committed
2 parents fe71993 + 1c6cc27 commit 6214775

File tree

97 files changed

+33740
-653
lines changed

Some content is hidden

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

97 files changed

+33740
-653
lines changed

azure-pipelines-autogen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- task: NodeTool@0
2929
inputs:
30-
versionSpec: '10.x'
30+
versionSpec: '14.x'
3131

3232
- script: |
3333
set -Eeuxo pipefail

generator/autogenlist.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,10 @@ const autogenlist: AutogenlistConfig[] = [
540540
type: 'informationProtectionPolicies',
541541
scopes: ScopeType.ManagementGroup | ScopeType.Extension,
542542
},
543+
{
544+
type: 'sqlVulnerabilityAssessments/baselineRules',
545+
scopes: ScopeType.Extension,
546+
},
543547
]
544548
},
545549
{

generator/cmd/postprocessor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ function getStatus(file: any){
2121
}
2222

2323
async function getChangedSchemas(repoPath: string) {
24-
var Git = require("nodegit");
24+
const Git = require('nodegit');
2525
const repo = await Git.Repository.open(repoPath);
2626
const files = await repo.getStatus();
27-
let status = [];
27+
let status: any[] = [];
2828
if (files.length) {
2929
status = files.map(getStatus);
3030
}

generator/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const managementGroupRootSchema = {
2929
};
3030
export const generatedSchemasTemplatePath = path.join(__dirname, 'resources/autogeneratedResources_template.json');
3131

32-
export const autorestCoreVersion = '3.0.6369';
32+
export const autorestCoreVersion = '3.0.6374';
3333
export const azureresourceschemaVersion = '3.0.92';
3434

3535
// paths in this list won't even appear in list-basepaths

0 commit comments

Comments
 (0)