GetApplicationComponentDetails Ruby Example
require 'chilkat'
# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
rest = Chilkat::CkRest.new()
authAws = Chilkat::CkAuthAws.new()
authAws.put_AccessKey("AWS_ACCESS_KEY")
authAws.put_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.put_Region("us-west-2")
authAws.put_ServiceName("migrationhub-strategy")
# SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws)
# URL: https://migrationhub-strategy.us-west-2.amazonaws.com/
# Use the same region as specified above.
success = rest.Connect("migrationhub-strategy.us-west-2.amazonaws.com",443,true,true)
if (success != true)
print "ConnectFailReason: " + rest.get_ConnectFailReason().to_s() + "\n";
print rest.lastErrorText() + "\n";
exit
end
rest.AddHeader("Content-Type","application/x-amz-json-1.1")
rest.AddHeader("X-Amz-Target","GetApplicationComponentDetails")
sbResponseBody = Chilkat::CkStringBuilder.new()
success = rest.FullRequestNoBodySb("GET","/get-applicationcomponent-details/{applicationComponentId}",sbResponseBody)
if (success != true)
print rest.lastErrorText() + "\n";
exit
end
respStatusCode = rest.get_ResponseStatusCode()
print "response status code = " + respStatusCode.to_s() + "\n";
if (respStatusCode != 200)
print "Response Header:" + "\n";
print rest.responseHeader() + "\n";
print "Response Body:" + "\n";
print sbResponseBody.getAsString() + "\n";
exit
end
jResp = Chilkat::CkJsonObject.new()
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
AnalysisStatus = jResp.stringOf("applicationComponentDetail.analysisStatus")
S3Bucket = jResp.stringOf("applicationComponentDetail.antipatternReportS3Object.s3Bucket")
S3key = jResp.stringOf("applicationComponentDetail.antipatternReportS3Object.s3key")
AntipatternReportStatus = jResp.stringOf("applicationComponentDetail.antipatternReportStatus")
AntipatternReportStatusMessage = jResp.stringOf("applicationComponentDetail.antipatternReportStatusMessage")
AppType = jResp.stringOf("applicationComponentDetail.appType")
AssociatedServerId = jResp.stringOf("applicationComponentDetail.associatedServerId")
SecretName = jResp.stringOf("applicationComponentDetail.databaseConfigDetail.secretName")
Id = jResp.stringOf("applicationComponentDetail.id")
InclusionStatus = jResp.stringOf("applicationComponentDetail.inclusionStatus")
LastAnalyzedTimestamp = jResp.IntOf("applicationComponentDetail.lastAnalyzedTimestamp")
MoreServerAssociationExists = jResp.IntOf("applicationComponentDetail.moreServerAssociationExists")
Name = jResp.stringOf("applicationComponentDetail.name")
OsDriver = jResp.stringOf("applicationComponentDetail.osDriver")
OsVersion = jResp.stringOf("applicationComponentDetail.osVersion")
Strategy = jResp.stringOf("applicationComponentDetail.recommendationSet.strategy")
TargetDestination = jResp.stringOf("applicationComponentDetail.recommendationSet.targetDestination")
Description = jResp.stringOf("applicationComponentDetail.recommendationSet.transformationTool.description")
TransformationToolName = jResp.stringOf("applicationComponentDetail.recommendationSet.transformationTool.name")
TranformationToolInstallationLink = jResp.stringOf("applicationComponentDetail.recommendationSet.transformationTool.tranformationToolInstallationLink")
ResourceSubType = jResp.stringOf("applicationComponentDetail.resourceSubType")
StatusMessage = jResp.stringOf("applicationComponentDetail.statusMessage")
moreApplicationResource = jResp.IntOf("moreApplicationResource")
i = 0
count_i = jResp.SizeOfArray("applicationComponentDetail.listAntipatternSeveritySummary")
while i < count_i
jResp.put_I(i)
count = jResp.IntOf("applicationComponentDetail.listAntipatternSeveritySummary[i].count")
severity = jResp.stringOf("applicationComponentDetail.listAntipatternSeveritySummary[i].severity")
i = i + 1
end
i = 0
count_i = jResp.SizeOfArray("applicationComponentDetail.sourceCodeRepositories")
while i < count_i
jResp.put_I(i)
branch = jResp.stringOf("applicationComponentDetail.sourceCodeRepositories[i].branch")
repository = jResp.stringOf("applicationComponentDetail.sourceCodeRepositories[i].repository")
versionControlType = jResp.stringOf("applicationComponentDetail.sourceCodeRepositories[i].versionControlType")
i = i + 1
end
i = 0
count_i = jResp.SizeOfArray("associatedApplications")
while i < count_i
jResp.put_I(i)
id = jResp.stringOf("associatedApplications[i].id")
name = jResp.stringOf("associatedApplications[i].name")
i = i + 1
end
i = 0
count_i = jResp.SizeOfArray("associatedServerIds")
while i < count_i
jResp.put_I(i)
strVal = jResp.stringOf("associatedServerIds[i]")
i = i + 1
end
# A sample JSON response body parsed by the above code:
# {
# "applicationComponentDetail": {
# "analysisStatus": "string",
# "antipatternReportS3Object": {
# "s3Bucket": "string",
# "s3key": "string"
# },
# "antipatternReportStatus": "string",
# "antipatternReportStatusMessage": "string",
# "appType": "string",
# "associatedServerId": "string",
# "databaseConfigDetail": {
# "secretName": "string"
# },
# "id": "string",
# "inclusionStatus": "string",
# "lastAnalyzedTimestamp": number,
# "listAntipatternSeveritySummary": [
# {
# "count": number,
# "severity": "string"
# }
# ],
# "moreServerAssociationExists": boolean,
# "name": "string",
# "osDriver": "string",
# "osVersion": "string",
# "recommendationSet": {
# "strategy": "string",
# "targetDestination": "string",
# "transformationTool": {
# "description": "string",
# "name": "string",
# "tranformationToolInstallationLink": "string"
# }
# },
# "resourceSubType": "string",
# "sourceCodeRepositories": [
# {
# "branch": "string",
# "repository": "string",
# "versionControlType": "string"
# }
# ],
# "statusMessage": "string"
# },
# "associatedApplications": [
# {
# "id": "string",
# "name": "string"
# }
# ],
# "associatedServerIds": [
# "string"
# ],
# "moreApplicationResource": boolean
# }