Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The documentProcessors resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Syntex/documentProcessors resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Syntex/documentProcessors@2022-09-15-preview' = {
location: 'string'
name: 'string'
properties: {
spoTenantId: 'string'
spoTenantUrl: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.Syntex/documentProcessors
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Document processor properties. | DocumentProcessorProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
DocumentProcessorProperties
Name | Description | Value |
---|---|---|
spoTenantId | The ID (GUID) of an SharePoint Online (SPO) tenant associated with this document processor resource | string (required) |
spoTenantUrl | The URL of an SharePoint Online (SPO) tenant associated with this document processor resource | string (required) |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The documentProcessors resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Syntex/documentProcessors resource, add the following JSON to your template.
{
"type": "Microsoft.Syntex/documentProcessors",
"apiVersion": "2022-09-15-preview",
"name": "string",
"location": "string",
"properties": {
"spoTenantId": "string",
"spoTenantUrl": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Syntex/documentProcessors
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-09-15-preview' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Document processor properties. | DocumentProcessorProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.Syntex/documentProcessors' |
DocumentProcessorProperties
Name | Description | Value |
---|---|---|
spoTenantId | The ID (GUID) of an SharePoint Online (SPO) tenant associated with this document processor resource | string (required) |
spoTenantUrl | The URL of an SharePoint Online (SPO) tenant associated with this document processor resource | string (required) |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The documentProcessors resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Syntex/documentProcessors resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Syntex/documentProcessors@2022-09-15-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
spoTenantId = "string"
spoTenantUrl = "string"
}
}
}
Property Values
Microsoft.Syntex/documentProcessors
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Document processor properties. | DocumentProcessorProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.Syntex/documentProcessors@2022-09-15-preview" |
DocumentProcessorProperties
Name | Description | Value |
---|---|---|
spoTenantId | The ID (GUID) of an SharePoint Online (SPO) tenant associated with this document processor resource | string (required) |
spoTenantUrl | The URL of an SharePoint Online (SPO) tenant associated with this document processor resource | string (required) |
TrackedResourceTags
Name | Description | Value |
---|