GetRouteAnalysis autoit Example
; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oRest = ObjCreate("Chilkat_9_5_0.Rest")
Local $bSuccess
$oAuthAws = ObjCreate("Chilkat_9_5_0.AuthAws")
$oAuthAws.AccessKey = "AWS_ACCESS_KEY"
$oAuthAws.SecretKey = "AWS_SECRET_KEY"
; Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
$oAuthAws.Region = "us-west-2"
$oAuthAws.ServiceName = "networkmanager"
; SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
$oRest.SetAuthAws($oAuthAws)
; URL: https://networkmanager.us-west-2.amazonaws.com/
; Use the same region as specified above.
$bSuccess = $oRest.Connect("networkmanager.us-west-2.amazonaws.com",443,True,True)
If ($bSuccess <> True) Then
ConsoleWrite("ConnectFailReason: " & $oRest.ConnectFailReason & @CRLF)
ConsoleWrite($oRest.LastErrorText & @CRLF)
Exit
EndIf
$oRest.AddHeader("Content-Type","application/x-amz-json-1.1")
$oRest.AddHeader("X-Amz-Target","GetRouteAnalysis")
$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oRest.FullRequestNoBodySb("GET","/global-networks/{globalNetworkId}/route-analyses/{routeAnalysisId}",$oSbResponseBody)
If ($bSuccess <> True) Then
ConsoleWrite($oRest.LastErrorText & @CRLF)
Exit
EndIf
Local $iRespStatusCode = $oRest.ResponseStatusCode
ConsoleWrite("response status code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode <> 200) Then
ConsoleWrite("Response Header:" & @CRLF)
ConsoleWrite($oRest.ResponseHeader & @CRLF)
ConsoleWrite("Response Body:" & @CRLF)
ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)
Exit
EndIf
$oJResp = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJResp.LoadSb($oSbResponseBody)
; The following code parses the JSON response.
; A sample JSON response is shown below the sample code.
; Use this online tool to generate parsing code from sample JSON:
; Generate Parsing Code from JSON
Local $sDestinationCidrBlock
Local $sDefinition
Local $iIsMiddlebox
Local $sNameTag
Local $sRegisteredGatewayArn
Local $sResourceArn
Local $sResourceType
Local $iSequence
Local $sResourceDefinition
Local $iResourceIsMiddlebox
Local $sResourceNameTag
Local $sResourceRegisteredGatewayArn
Local $sResourceResourceArn
Local $sResourceResourceType
Local $sIpAddress = $oJResp.StringOf("RouteAnalysis.Destination.IpAddress")
Local $sTransitGatewayArn = $oJResp.StringOf("RouteAnalysis.Destination.TransitGatewayArn")
Local $sTransitGatewayAttachmentArn = $oJResp.StringOf("RouteAnalysis.Destination.TransitGatewayAttachmentArn")
Local $sReasonCode = $oJResp.StringOf("RouteAnalysis.ForwardPath.CompletionStatus.ReasonCode")
Local $sV_String = $oJResp.StringOf("RouteAnalysis.ForwardPath.CompletionStatus.ReasonContext.string")
Local $sResultCode = $oJResp.StringOf("RouteAnalysis.ForwardPath.CompletionStatus.ResultCode")
Local $sGlobalNetworkId = $oJResp.StringOf("RouteAnalysis.GlobalNetworkId")
Local $iIncludeReturnPath = $oJResp.IntOf("RouteAnalysis.IncludeReturnPath")
Local $sOwnerAccountId = $oJResp.StringOf("RouteAnalysis.OwnerAccountId")
Local $sCompletionStatusReasonCode = $oJResp.StringOf("RouteAnalysis.ReturnPath.CompletionStatus.ReasonCode")
Local $sReasonContextString = $oJResp.StringOf("RouteAnalysis.ReturnPath.CompletionStatus.ReasonContext.string")
Local $sCompletionStatusResultCode = $oJResp.StringOf("RouteAnalysis.ReturnPath.CompletionStatus.ResultCode")
Local $sRouteAnalysisId = $oJResp.StringOf("RouteAnalysis.RouteAnalysisId")
Local $sSourceIpAddress = $oJResp.StringOf("RouteAnalysis.Source.IpAddress")
Local $sSourceTransitGatewayArn = $oJResp.StringOf("RouteAnalysis.Source.TransitGatewayArn")
Local $sSourceTransitGatewayAttachmentArn = $oJResp.StringOf("RouteAnalysis.Source.TransitGatewayAttachmentArn")
Local $iStartTimestamp = $oJResp.IntOf("RouteAnalysis.StartTimestamp")
Local $sStatus = $oJResp.StringOf("RouteAnalysis.Status")
Local $iUseMiddleboxes = $oJResp.IntOf("RouteAnalysis.UseMiddleboxes")
Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("RouteAnalysis.ForwardPath.Path")
While $i < $iCount_i
$oJResp.I = $i
$sDestinationCidrBlock = $oJResp.StringOf("RouteAnalysis.ForwardPath.Path[i].DestinationCidrBlock")
$sDefinition = $oJResp.StringOf("RouteAnalysis.ForwardPath.Path[i].Resource.Definition")
$iIsMiddlebox = $oJResp.IntOf("RouteAnalysis.ForwardPath.Path[i].Resource.IsMiddlebox")
$sNameTag = $oJResp.StringOf("RouteAnalysis.ForwardPath.Path[i].Resource.NameTag")
$sRegisteredGatewayArn = $oJResp.StringOf("RouteAnalysis.ForwardPath.Path[i].Resource.RegisteredGatewayArn")
$sResourceArn = $oJResp.StringOf("RouteAnalysis.ForwardPath.Path[i].Resource.ResourceArn")
$sResourceType = $oJResp.StringOf("RouteAnalysis.ForwardPath.Path[i].Resource.ResourceType")
$iSequence = $oJResp.IntOf("RouteAnalysis.ForwardPath.Path[i].Sequence")
$i = $i + 1
Wend
$i = 0
$iCount_i = $oJResp.SizeOfArray("RouteAnalysis.ReturnPath.Path")
While $i < $iCount_i
$oJResp.I = $i
$sDestinationCidrBlock = $oJResp.StringOf("RouteAnalysis.ReturnPath.Path[i].DestinationCidrBlock")
$sResourceDefinition = $oJResp.StringOf("RouteAnalysis.ReturnPath.Path[i].Resource.Definition")
$iResourceIsMiddlebox = $oJResp.IntOf("RouteAnalysis.ReturnPath.Path[i].Resource.IsMiddlebox")
$sResourceNameTag = $oJResp.StringOf("RouteAnalysis.ReturnPath.Path[i].Resource.NameTag")
$sResourceRegisteredGatewayArn = $oJResp.StringOf("RouteAnalysis.ReturnPath.Path[i].Resource.RegisteredGatewayArn")
$sResourceResourceArn = $oJResp.StringOf("RouteAnalysis.ReturnPath.Path[i].Resource.ResourceArn")
$sResourceResourceType = $oJResp.StringOf("RouteAnalysis.ReturnPath.Path[i].Resource.ResourceType")
$iSequence = $oJResp.IntOf("RouteAnalysis.ReturnPath.Path[i].Sequence")
$i = $i + 1
Wend
; A sample JSON response body parsed by the above code:
; {
; "RouteAnalysis": {
; "Destination": {
; "IpAddress": "string",
; "TransitGatewayArn": "string",
; "TransitGatewayAttachmentArn": "string"
; },
; "ForwardPath": {
; "CompletionStatus": {
; "ReasonCode": "string",
; "ReasonContext": {
; "string": "string"
; },
; "ResultCode": "string"
; },
; "Path": [
; {
; "DestinationCidrBlock": "string",
; "Resource": {
; "Definition": "string",
; "IsMiddlebox": boolean,
; "NameTag": "string",
; "RegisteredGatewayArn": "string",
; "ResourceArn": "string",
; "ResourceType": "string"
; },
; "Sequence": number
; }
; ]
; },
; "GlobalNetworkId": "string",
; "IncludeReturnPath": boolean,
; "OwnerAccountId": "string",
; "ReturnPath": {
; "CompletionStatus": {
; "ReasonCode": "string",
; "ReasonContext": {
; "string": "string"
; },
; "ResultCode": "string"
; },
; "Path": [
; {
; "DestinationCidrBlock": "string",
; "Resource": {
; "Definition": "string",
; "IsMiddlebox": boolean,
; "NameTag": "string",
; "RegisteredGatewayArn": "string",
; "ResourceArn": "string",
; "ResourceType": "string"
; },
; "Sequence": number
; }
; ]
; },
; "RouteAnalysisId": "string",
; "Source": {
; "IpAddress": "string",
; "TransitGatewayArn": "string",
; "TransitGatewayAttachmentArn": "string"
; },
; "StartTimestamp": number,
; "Status": "string",
; "UseMiddleboxes": boolean
; }
; }