-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stephen Weatherford
committed
Nov 11, 2021
1 parent
742952e
commit a228015
Showing
6 changed files
with
153 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
test/snippets/expected/ServiceBus Namespace.snippetresult.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"resources": [ | ||
{ | ||
"name": "serviceBusNamespace1", | ||
"type": "Microsoft.ServiceBus/namespaces", | ||
"apiVersion": "2021-01-01-preview", | ||
"location": "[parameters('location')]", | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"properties": {} | ||
} | ||
], | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"variables": { | ||
//Insert here: variable | ||
}, | ||
"parameters": { | ||
"location": { | ||
"type": "string" | ||
} | ||
//Insert here: parameter | ||
}, | ||
"outputs": { | ||
//Insert here: output | ||
}, | ||
"functions": [ | ||
{ | ||
"namespace": "udf", | ||
"members": { | ||
//Insert here: user function | ||
} | ||
} | ||
] | ||
} |
44 changes: 44 additions & 0 deletions
44
test/snippets/expected/ServiceBus Queue.snippetresult.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"resources": [ | ||
{ | ||
"name": "serviceBusNamespace1/serviceBusQueue1", | ||
"type": "Microsoft.ServiceBus/namespaces/queues", | ||
"apiVersion": "2021-01-01-preview", | ||
"dependsOn": [ | ||
"[resourceId('Microsoft.ServiceBus/namespaces', 'serviceBusQueue1')]" | ||
], | ||
"properties": { | ||
"lockDuration": "PT5M", | ||
"maxSizeInMegabytes": 1024, | ||
"requiresDuplicateDetection": false, | ||
"requiresSession": false, | ||
"defaultMessageTimeToLive": "P14D", | ||
"deadLetteringOnMessageExpiration": false, | ||
"duplicateDetectionHistoryTimeWindow": "PT10M", | ||
"maxDeliveryCount": 10, | ||
"autoDeleteOnIdle": "P10675199DT2H48M5.4775807S", | ||
"enablePartitioning": false, | ||
"enableExpress": false | ||
} | ||
} | ||
], | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"variables": { | ||
//Insert here: variable | ||
}, | ||
"parameters": { | ||
//Insert here: parameter | ||
}, | ||
"outputs": { | ||
//Insert here: output | ||
}, | ||
"functions": [ | ||
{ | ||
"namespace": "udf", | ||
"members": { | ||
//Insert here: user function | ||
} | ||
} | ||
] | ||
} |
34 changes: 34 additions & 0 deletions
34
test/snippets/expected/Storage Blob Container.snippetresult.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"resources": [ | ||
{ | ||
"name": "accountName/default/blobContainerName", | ||
"type": "Microsoft.Storage/storageAccounts/blobServices/containers", | ||
"apiVersion": "2021-04-01", | ||
"dependsOn": [ | ||
"[resourceId('Microsoft.Storage/storageAccounts', 'accountName')]" | ||
], | ||
"properties": { | ||
"publicAccess": "None" | ||
} | ||
} | ||
], | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"variables": { | ||
//Insert here: variable | ||
}, | ||
"parameters": { | ||
//Insert here: parameter | ||
}, | ||
"outputs": { | ||
//Insert here: output | ||
}, | ||
"functions": [ | ||
{ | ||
"namespace": "udf", | ||
"members": { | ||
//Insert here: user function | ||
} | ||
} | ||
] | ||
} |