Skip to content

Commit

Permalink
Fix spellcheck and prettier check
Browse files Browse the repository at this point in the history
  • Loading branch information
zfchen95 committed Mar 31, 2020
1 parent 77b8987 commit 13aa234
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"sourceContainer": "scont139",
"destinationContainer": "dcont139",
"filters": {
"prefixMatch": [ "blobA", "blobB" ]
"prefixMatch": [
"blobA",
"blobB"
]
}
}
]
Expand All @@ -38,7 +41,10 @@
"sourceContainer": "sourceContainer1",
"destinationContainer": "destContainer1",
"filters": {
"prefixMatch": [ "blobA", "blobB" ]
"prefixMatch": [
"blobA",
"blobB"
]
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"sourceContainer": "scont139",
"destinationContainer": "dcont139",
"filters": {
"prefixMatch": [ "blobA", "blobB" ],
"prefixMatch": [
"blobA",
"blobB"
],
"minCreationTime": "2020-02-19T16:05:00Z"
}
}
Expand All @@ -41,7 +44,10 @@
"sourceContainer": "sourceContainer1",
"destinationContainer": "destContainer1",
"filters": {
"prefixMatch": [ "blobA", "blobB" ],
"prefixMatch": [
"blobA",
"blobB"
],
"minCreationTime": "2020-02-19T16:05:00Z"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,20 @@
"sourceContainer": "sourceContainer1",
"destinationContainer": "destContainer1",
"filters": {
"prefixMatch": [ "blobA", "blobB" ]
"prefixMatch": [
"blobA",
"blobB"
]
}
},
{
"sourceContainer": "sourceContainer1",
"destinationContainer": "destContainer1",
"filters": {
"prefixMatch": [ "blobC", "blobD" ]
"prefixMatch": [
"blobC",
"blobD"
]
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"sourceContainer": "scont139",
"destinationContainer": "dcont139",
"filters": {
"prefixMatch": [ "blobA", "blobB" ]
"prefixMatch": [
"blobA",
"blobB"
]
}
},
{
Expand All @@ -43,7 +46,10 @@
"sourceContainer": "sourceContainer1",
"destinationContainer": "destContainer1",
"filters": {
"prefixMatch": [ "blobA", "blobB" ]
"prefixMatch": [
"blobA",
"blobB"
]
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"sourceContainer": "scont139",
"destinationContainer": "dcont139",
"filters": {
"prefixMatch": [ "blobA", "blobB" ]
"prefixMatch": [
"blobA",
"blobB"
]
}
},
{
Expand Down Expand Up @@ -45,7 +48,10 @@
"sourceContainer": "sourceContainer1",
"destinationContainer": "destContainer1",
"filters": {
"prefixMatch": [ "blobA", "blobB" ]
"prefixMatch": [
"blobA",
"blobB"
]
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3595,7 +3595,7 @@
},
"minCreationTime": {
"type": "string",
"description": "Blobs created after the time will be replicated to the destination. It must be in datetime format 'yyyy'-'MM'-'dd'T'HH':'mm':'ss'Z'. Example: 2020-02-19T16:05:00Z"
"description": "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"
}
},
"description": "Filters limit replication to a subset of blobs within the storage account. A logical OR is performed on values in the filter. If multiple filters are defined, a logical AND is performed on all filters."
Expand Down

0 comments on commit 13aa234

Please sign in to comment.