Microsoft.StorageSync storageSyncServices/syncGroups/cloudEndpoints 2018-04-02

Bicep resource definition

The storageSyncServices/syncGroups/cloudEndpoints resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints@2018-04-02' = {
  parent: resourceSymbolicName
  location: 'string'
  name: 'string'
  properties: {
    storageAccountResourceId: 'string'
    storageAccountShareName: 'string'
    storageAccountTenantId: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints

Name Description Value
location Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed. string
name The resource name string (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: storageSyncServices/syncGroups
properties The parameters used to create the storage sync service. CloudEndpointCreateParametersPropertiesOrCloudEndpointProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates

CloudEndpointCreateParametersPropertiesOrCloudEndpointProperties

Name Description Value
storageAccountResourceId Storage Account Resource Id string
storageAccountShareName Storage Account Share name string
storageAccountTenantId Storage Account Tenant Id string

CloudEndpointCreateParametersTags

Name Description Value

ARM template resource definition

The storageSyncServices/syncGroups/cloudEndpoints resource type can be deployed with operations that target:

Usage Examples

Resource format

To create a Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints resource, add the following JSON to your template.

{
  "type": "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints",
  "apiVersion": "2018-04-02",
  "name": "string",
  "location": "string",
  "properties": {
    "storageAccountResourceId": "string",
    "storageAccountShareName": "string",
    "storageAccountTenantId": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints

Name Description Value
apiVersion The api version '2018-04-02'
location Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed. string
name The resource name string (required)
properties The parameters used to create the storage sync service. CloudEndpointCreateParametersPropertiesOrCloudEndpointProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints'

CloudEndpointCreateParametersPropertiesOrCloudEndpointProperties

Name Description Value
storageAccountResourceId Storage Account Resource Id string
storageAccountShareName Storage Account Share name string
storageAccountTenantId Storage Account Tenant Id string

CloudEndpointCreateParametersTags

Name Description Value

Terraform (AzAPI provider) resource definition

The storageSyncServices/syncGroups/cloudEndpoints 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/syncGroups/cloudEndpoints resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints@2018-04-02"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      storageAccountResourceId = "string"
      storageAccountShareName = "string"
      storageAccountTenantId = "string"
    }
  }
}

Property Values

Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints

Name Description Value
location Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed. string
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: storageSyncServices/syncGroups
properties The parameters used to create the storage sync service. CloudEndpointCreateParametersPropertiesOrCloudEndpointProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.StorageSync/storageSyncServices/syncGroups/cloudEndpoints@2018-04-02"

CloudEndpointCreateParametersPropertiesOrCloudEndpointProperties

Name Description Value
storageAccountResourceId Storage Account Resource Id string
storageAccountShareName Storage Account Share name string
storageAccountTenantId Storage Account Tenant Id string

CloudEndpointCreateParametersTags

Name Description Value