Microsoft.Storage storageAccounts/objectReplicationPolicies 2021-02-01

Bicep 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 Bicep to your template.

resource symbolicname 'Microsoft.Storage/storageAccounts/objectReplicationPolicies@2021-02-01' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    destinationAccount: 'string'
    rules: [
      {
        destinationContainer: 'string'
        filters: {
          minCreationTime: 'string'
          prefixMatch: [
            'string'
          ]
        }
        ruleId: 'string'
        sourceContainer: 'string'
      }
    ]
    sourceAccount: 'string'
  }
}

Property values

storageAccounts/objectReplicationPolicies

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
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: storageAccounts
properties Returns the Storage Account Object Replication Policy. ObjectReplicationPolicyProperties

ObjectReplicationPolicyProperties

Name Description Value
destinationAccount Required. Destination account name. string (required)
rules The storage account object replication rules. ObjectReplicationPolicyRule[]
sourceAccount Required. Source account name. 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[]

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": "2021-02-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 '2021-02-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. string (required)
rules The storage account object replication rules. ObjectReplicationPolicyRule[]
sourceAccount Required. Source account name. 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[]

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Storage/storageAccounts/objectReplicationPolicies@2021-02-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    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@2021-02-01"
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: storageAccounts
properties Returns the Storage Account Object Replication Policy. ObjectReplicationPolicyProperties

ObjectReplicationPolicyProperties

Name Description Value
destinationAccount Required. Destination account name. string (required)
rules The storage account object replication rules. ObjectReplicationPolicyRule[]
sourceAccount Required. Source account name. 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[]