Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePR iotcentral] Zed iotcentral t2 #1439

Closed
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
126 changes: 126 additions & 0 deletions schemas/2018-09-01/Microsoft.IoTCentral.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
{
"id": "https://schema.management.azure.com/schemas/2018-09-01/Microsoft.IoTCentral.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.IoTCentral",
"description": "Microsoft IoTCentral Resource Types",
"resourceDefinitions": {
"IoTApps": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2018-09-01"
]
},
"location": {
"type": "string",
"description": "The resource location."
},
"name": {
"type": "string",
"description": "The ARM resource name of the IoT Central application."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AppProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties of an IoT Central application."
},
"sku": {
"oneOf": [
{
"$ref": "#/definitions/AppSkuInfo"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Information about the SKU of the IoT Central application."
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.IoTCentral/IoTApps"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"sku",
"type"
],
"description": "Microsoft.IoTCentral/IoTApps"
}
},
"definitions": {
"AppProperties": {
"type": "object",
"properties": {
"displayName": {
"type": "string",
"description": "The display name of the application."
},
"subdomain": {
"type": "string",
"description": "The subdomain of the application."
},
"template": {
"type": "string",
"description": "The ID of the application template, which is a blueprint that defines the characteristics and behaviors of an application. Optional; if not specified, defaults to a blank blueprint and allows the application to be defined from scratch."
}
},
"description": "The properties of an IoT Central application."
},
"AppSkuInfo": {
"type": "object",
"properties": {
"name": {
"oneOf": [
{
"type": "string",
"enum": [
"F1",
"S1",
"ST0",
"ST1",
"ST2"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The name of the SKU."
}
},
"required": [
"name"
],
"description": "Information about the SKU of the IoT Central application."
}
}
}