Skip to content
Merged
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
87 changes: 87 additions & 0 deletions schemas/2022-09-15-preview/Microsoft.Syntex.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
{
"id": "https://schema.management.azure.com/schemas/2022-09-15-preview/Microsoft.Syntex.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.Syntex",
"description": "Microsoft Syntex Resource Types",
"resourceDefinitions": {
"documentProcessors": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2022-09-15-preview"
]
},
"location": {
"type": "string",
"description": "The geo-location where the resource lives"
},
"name": {
"type": "string",
"description": "The name of document processor resource."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/DocumentProcessorProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Document processor 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.Syntex/documentProcessors"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.Syntex/documentProcessors"
}
},
"definitions": {
"DocumentProcessorProperties": {
"type": "object",
"properties": {
"spoTenantId": {
"type": "string",
"description": "The ID (GUID) of an SharePoint Online (SPO) tenant associated with this document processor resource"
},
"spoTenantUrl": {
"type": "string",
"description": "The URL of an SharePoint Online (SPO) tenant associated with this document processor resource"
}
},
"required": [
"spoTenantId",
"spoTenantUrl"
],
"description": "Document processor properties"
}
}
}
3 changes: 3 additions & 0 deletions schemas/common/autogeneratedResources.json
Original file line number Diff line number Diff line change
Expand Up @@ -27160,6 +27160,9 @@
{
"$ref": "https://schema.management.azure.com/schemas/2021-06-01-preview/Microsoft.Synapse.json#/resourceDefinitions/workspaces_vulnerabilityAssessments"
},
{
"$ref": "https://schema.management.azure.com/schemas/2022-09-15-preview/Microsoft.Syntex.json#/resourceDefinitions/documentProcessors"
},
{
"$ref": "https://schema.management.azure.com/schemas/2020-12-16-preview/Microsoft.TestBase.json#/resourceDefinitions/testBaseAccounts"
},
Expand Down