Skip to content

Commit

Permalink
Generated from 35cd807ca0ac87478fd566229772118ef5ae05a3
Browse files Browse the repository at this point in the history
updated readme
  • Loading branch information
SDK Automation committed Aug 29, 2020
1 parent 85ebda1 commit 0f1ab4f
Show file tree
Hide file tree
Showing 3 changed files with 537 additions and 0 deletions.
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

0 comments on commit 0f1ab4f

Please sign in to comment.