GetMilestone Powershell Example
Add-Type -Path "C:\chilkat\ChilkatDotNet47-9.5.0-x64\ChilkatDotNet47.dll"
# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
$rest = New-Object Chilkat.Rest
$authAws = New-Object Chilkat.AuthAws
$authAws.AccessKey = "AWS_ACCESS_KEY"
$authAws.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.)
$authAws.Region = "us-west-2"
$authAws.ServiceName = "wellarchitected"
# SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
$rest.SetAuthAws($authAws)
# URL: https://wellarchitected.us-west-2.amazonaws.com/
# Use the same region as specified above.
$success = $rest.Connect("wellarchitected.us-west-2.amazonaws.com",443,$true,$true)
if ($success -ne $true) {
$("ConnectFailReason: " + $rest.ConnectFailReason)
$($rest.LastErrorText)
exit
}
$rest.AddHeader("Content-Type","application/x-amz-json-1.1")
$rest.AddHeader("X-Amz-Target","GetMilestone")
$sbResponseBody = New-Object Chilkat.StringBuilder
$success = $rest.FullRequestNoBodySb("GET","/workloads/{WorkloadId}/milestones/{MilestoneNumber}",$sbResponseBody)
if ($success -ne $true) {
$($rest.LastErrorText)
exit
}
$respStatusCode = $rest.ResponseStatusCode
$("response status code = " + $respStatusCode)
if ($respStatusCode -ne 200) {
$("Response Header:")
$($rest.ResponseHeader)
$("Response Body:")
$($sbResponseBody.GetAsString())
exit
}
$jResp = New-Object Chilkat.JsonObject
$jResp.LoadSb($sbResponseBody)
# 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
$MilestoneName = $jResp.StringOf("Milestone.MilestoneName")
$MilestoneNumber = $jResp.IntOf("Milestone.MilestoneNumber")
$RecordedAt = $jResp.IntOf("Milestone.RecordedAt")
$ArchitecturalDesign = $jResp.StringOf("Milestone.Workload.ArchitecturalDesign")
$Description = $jResp.StringOf("Milestone.Workload.Description")
$Environment = $jResp.StringOf("Milestone.Workload.Environment")
$ImprovementStatus = $jResp.StringOf("Milestone.Workload.ImprovementStatus")
$Industry = $jResp.StringOf("Milestone.Workload.Industry")
$IndustryType = $jResp.StringOf("Milestone.Workload.IndustryType")
$IsReviewOwnerUpdateAcknowledged = $jResp.IntOf("Milestone.Workload.IsReviewOwnerUpdateAcknowledged")
$Notes = $jResp.StringOf("Milestone.Workload.Notes")
$Owner = $jResp.StringOf("Milestone.Workload.Owner")
$ReviewOwner = $jResp.StringOf("Milestone.Workload.ReviewOwner")
$ReviewRestrictionDate = $jResp.IntOf("Milestone.Workload.ReviewRestrictionDate")
$v_String = $jResp.IntOf("Milestone.Workload.RiskCounts.string")
$ShareInvitationId = $jResp.StringOf("Milestone.Workload.ShareInvitationId")
$TagsString = $jResp.StringOf("Milestone.Workload.Tags.string")
$UpdatedAt = $jResp.IntOf("Milestone.Workload.UpdatedAt")
$WorkloadArn = $jResp.StringOf("Milestone.Workload.WorkloadArn")
$WorkloadId = $jResp.StringOf("Milestone.Workload.WorkloadId")
$WorkloadName = $jResp.StringOf("Milestone.Workload.WorkloadName")
$WorkloadId = $jResp.StringOf("WorkloadId")
$i = 0
$count_i = $jResp.SizeOfArray("Milestone.Workload.AccountIds")
while ($i -lt $count_i) {
$jResp.I = $i
$strVal = $jResp.StringOf("Milestone.Workload.AccountIds[i]")
$i = $i + 1
}
$i = 0
$count_i = $jResp.SizeOfArray("Milestone.Workload.AwsRegions")
while ($i -lt $count_i) {
$jResp.I = $i
$strVal = $jResp.StringOf("Milestone.Workload.AwsRegions[i]")
$i = $i + 1
}
$i = 0
$count_i = $jResp.SizeOfArray("Milestone.Workload.Lenses")
while ($i -lt $count_i) {
$jResp.I = $i
$strVal = $jResp.StringOf("Milestone.Workload.Lenses[i]")
$i = $i + 1
}
$i = 0
$count_i = $jResp.SizeOfArray("Milestone.Workload.NonAwsRegions")
while ($i -lt $count_i) {
$jResp.I = $i
$strVal = $jResp.StringOf("Milestone.Workload.NonAwsRegions[i]")
$i = $i + 1
}
$i = 0
$count_i = $jResp.SizeOfArray("Milestone.Workload.PillarPriorities")
while ($i -lt $count_i) {
$jResp.I = $i
$strVal = $jResp.StringOf("Milestone.Workload.PillarPriorities[i]")
$i = $i + 1
}
# A sample JSON response body parsed by the above code:
# {
# "Milestone": {
# "MilestoneName": "string",
# "MilestoneNumber": number,
# "RecordedAt": number,
# "Workload": {
# "AccountIds": [
# "string"
# ],
# "ArchitecturalDesign": "string",
# "AwsRegions": [
# "string"
# ],
# "Description": "string",
# "Environment": "string",
# "ImprovementStatus": "string",
# "Industry": "string",
# "IndustryType": "string",
# "IsReviewOwnerUpdateAcknowledged": boolean,
# "Lenses": [
# "string"
# ],
# "NonAwsRegions": [
# "string"
# ],
# "Notes": "string",
# "Owner": "string",
# "PillarPriorities": [
# "string"
# ],
# "ReviewOwner": "string",
# "ReviewRestrictionDate": number,
# "RiskCounts": {
# "string": number
# },
# "ShareInvitationId": "string",
# "Tags": {
# "string": "string"
# },
# "UpdatedAt": number,
# "WorkloadArn": "string",
# "WorkloadId": "string",
# "WorkloadName": "string"
# }
# },
# "WorkloadId": "string"
# }