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 storageSyncServices 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.StorageSync/storageSyncServices resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.StorageSync/storageSyncServices@2017-06-05-preview' = {
location: 'string'
name: 'string'
properties: {}
tags: any(...)
}
Property Values
Microsoft.StorageSync/storageSyncServices
Name | Description | Value |
---|---|---|
location | The location of the resource. | string |
name | The resource name | string (required) |
properties | Storage Sync Service properties. | StorageSyncServiceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
StorageSyncServiceProperties
Name | Description | Value |
---|
ARM template resource definition
The storageSyncServices 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.StorageSync/storageSyncServices resource, add the following JSON to your template.
{
"type": "Microsoft.StorageSync/storageSyncServices",
"apiVersion": "2017-06-05-preview",
"name": "string",
"location": "string",
"properties": {
},
"tags": {}
}
Property Values
Microsoft.StorageSync/storageSyncServices
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2017-06-05-preview' |
location | The location of the resource. | string |
name | The resource name | string (required) |
properties | Storage Sync Service properties. | StorageSyncServiceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.StorageSync/storageSyncServices' |
StorageSyncServiceProperties
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The storageSyncServices 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.StorageSync/storageSyncServices resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.StorageSync/storageSyncServices@2017-06-05-preview"
name = "string"
parent_id = "string"
location = "string"
tags = ?
body = {
properties = {
}
}
}
Property Values
Microsoft.StorageSync/storageSyncServices
Name | Description | Value |
---|---|---|
location | The location of the resource. | string |
name | The resource name | string (required) |
properties | Storage Sync Service properties. | StorageSyncServiceProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.StorageSync/storageSyncServices@2017-06-05-preview" |
StorageSyncServiceProperties
Name | Description | Value |
---|