3 changed files
Samples/powershell | ||
ExampleGetEdges.ps1 | ||
ExamplePmImport.ps1 | ||
HISTORY.md | ||
ExampleGetEdges.ps1
/Samples/powershell/ExampleGetEdges.ps1-5+5/Samples/powershell/ExampleGetEdges.ps1
Add comment 1 $ErrorActionPreference = "Stop"
Add comment 2 Minus $baseUri = "https://api-gateway.homag.cloud/api/gw/"
Add comment 3 Minus $userName = "<app-username>" # THIS USERNAME IS DEPENDED ON THE APP WHICH WE USE
Add comment 4 Minus $tokenFromTapio = "<secret>" # THIS TOKEN MUST BE CREATED IN TAPIO
Add comment 2 Plus $baseUri = "https://api-gateway.homag.cloud"
Add comment 3 Plus $userName = "<homag-partner-id>" # THIS IS YOUR HOMAG PARTNER ID. IF YOU DO NOT HAVE ONE, USE: "8878FEF1-E271-402D-B3C1-296FCBF7A854"
Add comment 4 Plus $tokenFromTapio = "<secret>" # THIS TOKEN MUST BE CREATED IN TAPIO
Add comment 5
Add comment 6 Minus Write-Output "Query edges from materialManager"
Add comment 6 Plus Write-Host "Query edges from materialManager"
Add comment 7
Add comment 8 $Headers = @{ Authorization = 'Basic {0}' -f ([Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(($userName + ":" + $tokenFromTapio)))) }
Add comment 9 Minus $r = Invoke-RestMethod -Uri ($baseUri + "/materials/edges") -Headers $Headers
Add comment 9 Plus $r = Invoke-RestMethod -Uri ($baseUri + "/api/gw/materials/edges") -Headers $Headers
Add comment 10 $r.edges
ExamplePmImport.ps1
/Samples/powershell/ExamplePmImport.ps1-9+9/Samples/powershell/ExamplePmImport.ps1
Add comment 1 $ErrorActionPreference = "Stop"
Add comment 2 Minus $baseUri = "https://api-gateway.homag.cloud/api/gw/"
Add comment 3 Minus $userName = "<app-username>" # THIS USERNAME IS DEPENDED ON THE APP WHICH WE USE
Add comment 4 Minus $tokenFromTapio = "<secret>" # THIS TOKEN MUST BE CREATED IN TAPIO
Add comment 2 Plus $baseUri = "https://api-gateway.homag.cloud"
Add comment 3 Plus $userName = "<homag-partner-id>" # THIS IS YOUR HOMAG PARTNER ID. IF YOU DO NOT HAVE ONE, USE: "8878FEF1-E271-402D-B3C1-296FCBF7A854"
Add comment 4 Plus $tokenFromTapio = "<secret>" # THIS TOKEN MUST BE CREATED IN TAPIO
Add comment 5
Add comment 6 $Headers = @{ Authorization = 'Basic {0}' -f ([Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(($userName + ":" + $tokenFromTapio)))) }
Add comment 7
Add comment 8 Minus Write-Output "Upload zip file to productionManager"
Add comment 8 Plus Write-Host "Upload zip file to productionManager"
Add comment 9
Add comment 10 Minus Write-Output "Step 1: Upload the zip file"
Add comment 11 Minus $pmImp = Invoke-RestMethod -Method 'Post' -Uri ($baseUri + "productions/import") -Headers $Headers -ContentType "application/zip" -InFile ($PSScriptRoot + "/DefaultImport/SmallTest.zip")
Add comment 12 Minus $pmImp
Add comment 10 Plus Write-Host "Step 1: Upload the zip file"
Add comment 11 Plus $pmImp = Invoke-RestMethod -Method 'Post' -Uri ($baseUri + "/api/gw/productions/import") -Headers $Headers -ContentType "application/zip" -InFile ($PSScriptRoot + "/DefaultImport/SmallTest.zip")
Add comment 12 Plus $pmImp | Format-Table | Out-String | Write-Host
Add comment 13
Add comment 14 Minus Write-Output "Step 2: Query for the result of the import"
Add comment 14 Plus Write-Host "Step 2: Query for the result of the import"
Add comment 15 do {
Add comment 16 Minus $statusResult = Invoke-RestMethod -Uri ($baseUri + "productions/import/states/" + $pmImp.correlationId) -Headers $Headers
Add comment 16 Plus $statusResult = Invoke-RestMethod -Uri ($baseUri + "/api/gw/productions/import/states/" + $pmImp.correlationId) -Headers $Headers
Add comment 17 Write-Host "Current import state: " $statusResult.State
Add comment 18 if ($statusResult.State -eq "Error") {
Add comment 19 Write-Host "FAILED TO IMPORT THE JOB": + $statusResult
Add comment 1 # 2.0
Add comment 2
Add comment 3 * publish `HomagGroup.ApiGateway.Client` as Open Source project
Add comment 4 Plus
Add comment 5 Plus # 2.0.1
Add comment 6 Plus
Add comment 7 Plus * update homag-partner-id in sample powershell scripts