Microsoft.Storage storageAccounts/objectReplicationPolicies

ARM template resource definition

The storageAccounts/objectReplicationPolicies 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.Storage/storageAccounts/objectReplicationPolicies resource, add the following JSON to your template.

{
  "type": "Microsoft.Storage/storageAccounts/objectReplicationPolicies",
  "apiVersion": "2023-01-01",
  "name": "string",
  "properties": {
    "destinationAccount": "string",
    "rules": [
      {
        "destinationContainer": "string",
        "filters": {
          "minCreationTime": "string",
          "prefixMatch": [ "string" ]
        },
        "ruleId": "string",
        "sourceContainer": "string"
      }
    ],
    "sourceAccount": "string"
  }
}

Property values

storageAccounts/objectReplicationPolicies

Name Description Value
type The resource type 'Microsoft.Storage/storageAccounts/objectReplicationPolicies'
apiVersion The resource api version '2023-01-01'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
properties Returns the Storage Account Object Replication Policy. ObjectReplicationPolicyProperties

ObjectReplicationPolicyProperties

Name Description Value
destinationAccount Required. Destination account name. It should be full resource id if allowCrossTenantReplication set to false. string (required)
rules The storage account object replication rules. ObjectReplicationPolicyRule[]
sourceAccount Required. Source account name. It should be full resource id if allowCrossTenantReplication set to false. string (required)

ObjectReplicationPolicyRule

Name Description Value
destinationContainer Required. Destination container name. string (required)
filters Optional. An object that defines the filter set. ObjectReplicationPolicyFilter
ruleId Rule Id is auto-generated for each new rule on destination account. It is required for put policy on source account. string
sourceContainer Required. Source container name. string (required)

ObjectReplicationPolicyFilter

Name Description Value
minCreationTime Blobs created after the time will be replicated to the destination. It must be in datetime format 'yyyy-MM-ddTHH:mm:ssZ'. Example: 2020-02-19T16:05:00Z string
prefixMatch Optional. Filters the results to replicate only blobs whose names begin with the specified prefix. string[]