Microsoft.StorageSync storageSyncServices 2017-06-05-preview

Bicep resource definition

The storageSyncServices resource type can be deployed to:

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' = {
  name: 'string'
  location: 'string'
  tags: any()
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {}
}

Property values

storageSyncServices

Name Description Value
name The resource name string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, spaces, periods, hyphens, and underscores.

Can't end with period or space.
location The location of the resource. string
tags The tags of the resource. For Bicep, you can use the any() function.
properties Storage Sync Service properties. StorageSyncServiceProperties

StorageSyncServiceProperties

This object doesn't contain any properties to set during deployment. All properties are ReadOnly.

ARM template resource definition

The storageSyncServices resource type can be deployed to:

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",
  "tags": {},
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {}
}

Property values

storageSyncServices

Name Description Value
type The resource type 'Microsoft.StorageSync/storageSyncServices'
apiVersion The resource api version '2017-06-05-preview'
name The resource name string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, spaces, periods, hyphens, and underscores.

Can't end with period or space.
location The location of the resource. string
tags The tags of the resource.
properties Storage Sync Service properties. StorageSyncServiceProperties

StorageSyncServiceProperties

This object doesn't contain any properties to set during deployment. All properties are ReadOnly.

Terraform (AzAPI provider) resource definition

The storageSyncServices resource type can be deployed to:

  • 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"
  location = "string"
  parent_id = "string"
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {}
  })
}

Property values

storageSyncServices

Name Description Value
type The resource type "Microsoft.StorageSync/storageSyncServices@2017-06-05-preview"
name The resource name string (required)

Character limit: 1-260

Valid characters:
Alphanumerics, spaces, periods, hyphens, and underscores.

Can't end with period or space.
location The location of the resource. string
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags The tags of the resource.
properties Storage Sync Service properties. StorageSyncServiceProperties

StorageSyncServiceProperties

This object doesn't contain any properties to set during deployment. All properties are ReadOnly.