forked from Azure/azure-resource-manager-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 07c55ddfb5d285f0850a5c2465f43293051e132b
Merge remote-tracking branch 'origin/network-july-release' into expressrouteportauthorization-apis
- Loading branch information
SDK Automation
committed
Aug 17, 2020
1 parent
7c5d745
commit 10e0263
Showing
2 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
103 changes: 103 additions & 0 deletions
103
schemas/2020-03-01-preview/Microsoft.AzureStackHCI.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
{ | ||
"id": "https://schema.management.azure.com/schemas/2020-03-01-preview/Microsoft.AzureStackHCI.json#", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Microsoft.AzureStackHCI", | ||
"description": "Microsoft AzureStackHCI Resource Types", | ||
"resourceDefinitions": { | ||
"clusters": { | ||
"type": "object", | ||
"properties": { | ||
"apiVersion": { | ||
"type": "string", | ||
"enum": [ | ||
"2020-03-01-preview" | ||
] | ||
}, | ||
"location": { | ||
"type": "string", | ||
"description": "The geo-location where the resource lives" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the cluster." | ||
}, | ||
"properties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/ClusterProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Cluster properties." | ||
}, | ||
"tags": { | ||
"oneOf": [ | ||
{ | ||
"type": "object", | ||
"additionalProperties": { | ||
"type": "string" | ||
}, | ||
"properties": {} | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Resource tags." | ||
}, | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"Microsoft.AzureStackHCI/clusters" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"apiVersion", | ||
"location", | ||
"name", | ||
"properties", | ||
"type" | ||
], | ||
"description": "Microsoft.AzureStackHCI/clusters" | ||
} | ||
}, | ||
"definitions": { | ||
"ClusterProperties": { | ||
"type": "object", | ||
"properties": { | ||
"aadClientId": { | ||
"type": "string", | ||
"description": "App id of cluster AAD identity." | ||
}, | ||
"aadTenantId": { | ||
"type": "string", | ||
"description": "Tenant id of cluster AAD identity." | ||
}, | ||
"reportedProperties": { | ||
"oneOf": [ | ||
{ | ||
"$ref": "#/definitions/ClusterReportedProperties" | ||
}, | ||
{ | ||
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" | ||
} | ||
], | ||
"description": "Properties reported by cluster agent." | ||
} | ||
}, | ||
"required": [ | ||
"aadClientId", | ||
"aadTenantId" | ||
], | ||
"description": "Cluster properties." | ||
}, | ||
"ClusterReportedProperties": { | ||
"type": "object", | ||
"properties": {}, | ||
"description": "Properties reported by cluster agent." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters