ListImagePipelineImages Go Example
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
rest := chilkat.NewRest()
var success bool
authAws := chilkat.NewAuthAws()
authAws.SetAccessKey("AWS_ACCESS_KEY")
authAws.SetSecretKey("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.SetRegion("us-west-2")
authAws.SetServiceName("imagebuilder")
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws)
// URL: https://imagebuilder.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("imagebuilder.us-west-2.amazonaws.com",443,true,true)
if success != true {
fmt.Println("ConnectFailReason: ", rest.ConnectFailReason())
fmt.Println(rest.LastErrorText())
rest.DisposeRest()
authAws.DisposeAuthAws()
return
}
// The following code creates the JSON request body.
// The JSON created by this code is shown below.
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
json := chilkat.NewJsonObject()
json.UpdateString("filters[0].name","string")
json.UpdateString("filters[0].values[0]","string")
json.UpdateString("imagePipelineArn","string")
json.UpdateInt("maxResults",123)
json.UpdateString("nextToken","string")
// The JSON request body created by the above code:
// {
// "filters": [
// {
// "name": "string",
// "values": [
// "string"
// ]
// }
// ],
// "imagePipelineArn": "string",
// "maxResults": number,
// "nextToken": "string"
// }
rest.AddHeader("Content-Type","application/x-amz-json-1.1")
rest.AddHeader("X-Amz-Target","ListImagePipelineImages")
sbRequestBody := chilkat.NewStringBuilder()
json.EmitSb(sbRequestBody)
sbResponseBody := chilkat.NewStringBuilder()
success = rest.FullRequestSb("POST","/ListImagePipelineImages",sbRequestBody,sbResponseBody)
if success != true {
fmt.Println(rest.LastErrorText())
rest.DisposeRest()
authAws.DisposeAuthAws()
json.DisposeJsonObject()
sbRequestBody.DisposeStringBuilder()
sbResponseBody.DisposeStringBuilder()
return
}
respStatusCode := rest.ResponseStatusCode()
fmt.Println("response status code = ", respStatusCode)
if respStatusCode != 200 {
fmt.Println("Response Header:")
fmt.Println(rest.ResponseHeader())
fmt.Println("Response Body:")
fmt.Println(*sbResponseBody.GetAsString())
rest.DisposeRest()
authAws.DisposeAuthAws()
json.DisposeJsonObject()
sbRequestBody.DisposeStringBuilder()
sbResponseBody.DisposeStringBuilder()
return
}
jResp := chilkat.NewJsonObject()
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
arn_DECLARATION
buildType_DECLARATION
dateCreated_DECLARATION
name_DECLARATION
osVersion_DECLARATION
owner_DECLARATION
platform_DECLARATION
Reason_DECLARATION
Status_DECLARATION
v_String_DECLARATION
v_type_DECLARATION
version_DECLARATION
var j int
var count_j int
accountId_DECLARATION
description_DECLARATION
image_DECLARATION
region_DECLARATION
stateReason_DECLARATION
stateStatus_DECLARATION
var k int
var count_k int
strVal_DECLARATION
nextToken := jResp.StringOf("nextToken")
requestId := jResp.StringOf("requestId")
i := 0
count_i := jResp.SizeOfArray("imageSummaryList")
for i < count_i {
jResp.SetI(i)
arn = *jResp.StringOf("imageSummaryList[i].arn")
buildType = *jResp.StringOf("imageSummaryList[i].buildType")
dateCreated = *jResp.StringOf("imageSummaryList[i].dateCreated")
name = *jResp.StringOf("imageSummaryList[i].name")
osVersion = *jResp.StringOf("imageSummaryList[i].osVersion")
owner = *jResp.StringOf("imageSummaryList[i].owner")
platform = *jResp.StringOf("imageSummaryList[i].platform")
Reason = *jResp.StringOf("imageSummaryList[i].state.reason")
Status = *jResp.StringOf("imageSummaryList[i].state.status")
v_String = *jResp.StringOf("imageSummaryList[i].tags.string")
v_type = *jResp.StringOf("imageSummaryList[i].type")
version = *jResp.StringOf("imageSummaryList[i].version")
j = 0
count_j = jResp.SizeOfArray("imageSummaryList[i].outputResources.amis")
for j < count_j {
jResp.SetJ(j)
accountId = *jResp.StringOf("imageSummaryList[i].outputResources.amis[j].accountId")
description = *jResp.StringOf("imageSummaryList[i].outputResources.amis[j].description")
image = *jResp.StringOf("imageSummaryList[i].outputResources.amis[j].image")
name = *jResp.StringOf("imageSummaryList[i].outputResources.amis[j].name")
region = *jResp.StringOf("imageSummaryList[i].outputResources.amis[j].region")
stateReason = *jResp.StringOf("imageSummaryList[i].outputResources.amis[j].state.reason")
stateStatus = *jResp.StringOf("imageSummaryList[i].outputResources.amis[j].state.status")
j = j + 1
}
j = 0
count_j = jResp.SizeOfArray("imageSummaryList[i].outputResources.containers")
for j < count_j {
jResp.SetJ(j)
region = *jResp.StringOf("imageSummaryList[i].outputResources.containers[j].region")
k = 0
count_k = jResp.SizeOfArray("imageSummaryList[i].outputResources.containers[j].imageUris")
for k < count_k {
jResp.SetK(k)
strVal = *jResp.StringOf("imageSummaryList[i].outputResources.containers[j].imageUris[k]")
k = k + 1
}
j = j + 1
}
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "imageSummaryList": [
// {
// "arn": "string",
// "buildType": "string",
// "dateCreated": "string",
// "name": "string",
// "osVersion": "string",
// "outputResources": {
// "amis": [
// {
// "accountId": "string",
// "description": "string",
// "image": "string",
// "name": "string",
// "region": "string",
// "state": {
// "reason": "string",
// "status": "string"
// }
// }
// ],
// "containers": [
// {
// "imageUris": [
// "string"
// ],
// "region": "string"
// }
// ]
// },
// "owner": "string",
// "platform": "string",
// "state": {
// "reason": "string",
// "status": "string"
// },
// "tags": {
// "string": "string"
// },
// "type": "string",
// "version": "string"
// }
// ],
// "nextToken": "string",
// "requestId": "string"
// }
rest.DisposeRest()
authAws.DisposeAuthAws()
json.DisposeJsonObject()
sbRequestBody.DisposeStringBuilder()
sbResponseBody.DisposeStringBuilder()
jResp.DisposeJsonObject()