Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
118 changes: 118 additions & 0 deletions schemas/2019-03-18-preview/Microsoft.HybridCompute.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
"id": "https://schema.management.azure.com/schemas/2019-03-18-preview/Microsoft.HybridCompute.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.HybridCompute",
"description": "Microsoft HybridCompute Resource Types",
"resourceDefinitions": {
"machines": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2019-03-18-preview"
]
},
"identity": {
"oneOf": [
{
"$ref": "#/definitions/Identity"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"location": {
"type": "string",
"description": "Resource location"
},
"name": {
"type": "string",
"description": "The name of the hybrid machine."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/MachineProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Describes the properties of a hybrid machine."
},
"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.HybridCompute/machines"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.HybridCompute/machines"
}
},
"definitions": {
"Identity": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The identity type."
}
}
},
"MachineProperties": {
"type": "object",
"properties": {
"clientPublicKey": {
"type": "string",
"description": "Public Key that the client provides to be used during initial resource onboarding"
},
"osProfile": {
"oneOf": [
{
"$ref": "#/definitions/OSProfile"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Specifies the operating system settings for the hybrid machine."
},
"physicalLocation": {
"type": "string",
"description": "Resource's Physical Location"
}
},
"description": "Describes the properties of a hybrid machine."
},
"OSProfile": {
"type": "object",
"properties": {},
"description": "Specifies the operating system settings for the hybrid machine."
}
}
}
Loading