Skip to content

Commit 2b17dda

Browse files
committed
removed cyclic reference, enable postprocessor
1 parent 396fd6b commit 2b17dda

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

generator/autogenlist.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { postProcessor as costManagementPostProcessor } from './processors/Micro
1414
import { postProcessor as providerHubPostProcessor } from './processors/Microsoft.ProviderHub';
1515
import { postProcessor as mediaPostProcessor } from './processors/Microsoft.Media';
1616
import { postProcessor as networkPostProcessor } from './processors/Microsoft.Network';
17+
import { postProcessor as azureStackHciPostProcessor } from './processors/Microsoft.AzureStackHCI';
1718
import { lowerCaseEquals } from './utils';
1819

1920
// New providers are onboarded by default. The providers listed here are the only ones **not** onboarded.
@@ -1101,6 +1102,11 @@ const autoGenList: AutoGenConfig[] = [
11011102
namespace: 'Microsoft.Network',
11021103
suffix: 'DnsResolver',
11031104
},
1105+
{
1106+
basePath: 'azurestackhci/resource-manager',
1107+
namespace: 'Microsoft.AzureStackHCI',
1108+
postProcessor: azureStackHciPostProcessor
1109+
},
11041110
];
11051111

11061112
export function findAutogenEntries(basePath: string): AutoGenConfig[] {

schemas/2022-12-01/Microsoft.AzureStackHCI.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@
962962
{
963963
"type": "array",
964964
"items": {
965-
"$ref": "#/definitions/Step"
965+
"type": "object"
966966
}
967967
},
968968
{

0 commit comments

Comments
 (0)