This file contains hidden or 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
| { | |
| "Root": { | |
| "Sticks": [ | |
| { | |
| "Name": "BigStick", | |
| "Type": "HARD", | |
| "Size": 10 | |
| } | |
| ], | |
| "Bricks": [ |
This file contains hidden or 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
| { | |
| "Root": { | |
| "Sticks": { | |
| "Name": "BigStick", | |
| "Type": "HARD", | |
| "Size": 10 | |
| }, | |
| "Bricks": [ | |
| { | |
| "Name": "BigBrick", |
This file contains hidden or 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
| <ns0:Root xmlns:ns0="http://json_schemas_example.Schemas.json_arrays_schema"> | |
| <Sticks> | |
| <Name>BigStick</Name> | |
| <Type>HARD</Type> | |
| <Size>10</Size> | |
| </Sticks> | |
| <Bricks> | |
| <Name>BigBrick</Name> | |
| <Type>HARD</Type> | |
| <Size>10</Size> |
This file contains hidden or 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
| <ns0:Root xmlns:ns0="http://json_schemas_example.Schemas.json_arrays_schema"> | |
| <Sticks> | |
| <Name>BigStick</Name> | |
| <Type>HARD</Type> | |
| <Size>10</Size> | |
| </Sticks> | |
| <Bricks> | |
| <Name>BigBrick</Name> | |
| <Type>HARD</Type> | |
| <Size>10</Size> |
This file contains hidden or 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
| { | |
| "Root": { | |
| "Sticks": [ | |
| { | |
| "Name": "BigStick", | |
| "Type": "HARD", | |
| "Size": 10 | |
| }, | |
| { | |
| "Name": "SmallStick", |
This file contains hidden or 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
| <ns0:Root xmlns:ns0="http://json_schemas_example.Schemas.json_arrays_schema"> | |
| <Sticks> | |
| <Name>BigStick</Name> | |
| <Type>HARD</Type> | |
| <Size>10</Size> | |
| </Sticks> | |
| <Sticks> | |
| <Name>SmallStick</Name> | |
| <Type>SOFT</Type> | |
| <Size>1</Size> |
This file contains hidden or 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
| param ( | |
| [string]$env = "", | |
| [switch]$latest = $false | |
| ) | |
| ##################################################################### | |
| ######################## SET DEPL PARAMETERS ######################## | |
| ##################################################################### | |
| $integrationname = "Friendly name for your integration here. Shows in UI" |
This file contains hidden or 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
| ##################################################################### | |
| ##### Helper-functions for BizTalk deployments using Powershell ##### | |
| ##### Author: Juha Ryhänen ##### | |
| ##################################################################### | |
| ##################################################################### | |
| ###################### SET INITIAL PARAMETERS ####################### | |
| ##################################################################### |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Threading; | |
| using Microsoft.ServiceBus.Messaging; | |
| using Newtonsoft.Json; | |
| namespace EventHubTester | |
| { | |
| class MonitoringEventsTest |
This file contains hidden or 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
| SELECT MonitoringInput.InstanceId as Id, MonitoringInput.EventId as EventReference, meta.arrayValue.[Key], meta.arrayValue.Type, meta.arrayValue.Value | |
| INTO Monitoringmeta | |
| FROM MonitoringInput | |
| CROSS APPLY GetElements(MonitoringInput.Metadatas) AS meta |
NewerOlder