Chilkat Online Tools

StopImageBuilder Xojo Example

Amazon AppStream

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Dim rest As New Chilkat.Rest
Dim success As Boolean

Dim authAws As New 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 = "appstream"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
success = rest.SetAuthAws(authAws)

// URL: https://appstream2.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("appstream2.us-west-2.amazonaws.com",443,True,True)
If (success <> True) Then
    System.DebugLog("ConnectFailReason: " + Str(rest.ConnectFailReason))
    System.DebugLog(rest.LastErrorText)
    Return
End If

// 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

Dim json As New Chilkat.JsonObject
success = json.UpdateString("Name","string")

// The JSON request body created by the above code:

// {
//   "Name": "string"
// }

success = rest.AddHeader("Content-Type","application/x-amz-json-1.1")
success = rest.AddHeader("X-Amz-Target","PhotonAdminProxyService.StopImageBuilder")

Dim sbRequestBody As New Chilkat.StringBuilder
success = json.EmitSb(sbRequestBody)
Dim sbResponseBody As New Chilkat.StringBuilder
success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody)
If (success <> True) Then
    System.DebugLog(rest.LastErrorText)
    Return
End If

Dim respStatusCode As Int32
respStatusCode = rest.ResponseStatusCode
System.DebugLog("response status code = " + Str(respStatusCode))
If (respStatusCode <> 200) Then
    System.DebugLog("Response Header:")
    System.DebugLog(rest.ResponseHeader)
    System.DebugLog("Response Body:")
    System.DebugLog(sbResponseBody.GetAsString())
    Return
End If

Dim jResp As New Chilkat.JsonObject
success = 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

Dim EndpointType As String
Dim VpceId As String
Dim ErrorCode As String
Dim ErrorMessage As String
Dim ErrorTimestamp As Int32
Dim strVal As String

Dim AppstreamAgentVersion As String
AppstreamAgentVersion = jResp.StringOf("ImageBuilder.AppstreamAgentVersion")
Dim Arn As String
Arn = jResp.StringOf("ImageBuilder.Arn")
Dim CreatedTime As Int32
CreatedTime = jResp.IntOf("ImageBuilder.CreatedTime")
Dim Description As String
Description = jResp.StringOf("ImageBuilder.Description")
Dim DisplayName As String
DisplayName = jResp.StringOf("ImageBuilder.DisplayName")
Dim DirectoryName As String
DirectoryName = jResp.StringOf("ImageBuilder.DomainJoinInfo.DirectoryName")
Dim OrganizationalUnitDistinguishedName As String
OrganizationalUnitDistinguishedName = jResp.StringOf("ImageBuilder.DomainJoinInfo.OrganizationalUnitDistinguishedName")
Dim EnableDefaultInternetAccess As Int32
EnableDefaultInternetAccess = jResp.IntOf("ImageBuilder.EnableDefaultInternetAccess")
Dim IamRoleArn As String
IamRoleArn = jResp.StringOf("ImageBuilder.IamRoleArn")
Dim ImageArn As String
ImageArn = jResp.StringOf("ImageBuilder.ImageArn")
Dim InstanceType As String
InstanceType = jResp.StringOf("ImageBuilder.InstanceType")
Dim Name As String
Name = jResp.StringOf("ImageBuilder.Name")
Dim EniId As String
EniId = jResp.StringOf("ImageBuilder.NetworkAccessConfiguration.EniId")
Dim EniPrivateIpAddress As String
EniPrivateIpAddress = jResp.StringOf("ImageBuilder.NetworkAccessConfiguration.EniPrivateIpAddress")
Dim Platform As String
Platform = jResp.StringOf("ImageBuilder.Platform")
Dim State As String
State = jResp.StringOf("ImageBuilder.State")
Dim Code As String
Code = jResp.StringOf("ImageBuilder.StateChangeReason.Code")
Dim Message As String
Message = jResp.StringOf("ImageBuilder.StateChangeReason.Message")
Dim i As Int32
i = 0
Dim count_i As Int32
count_i = jResp.SizeOfArray("ImageBuilder.AccessEndpoints")
While i < count_i
    jResp.I = i
    EndpointType = jResp.StringOf("ImageBuilder.AccessEndpoints[i].EndpointType")
    VpceId = jResp.StringOf("ImageBuilder.AccessEndpoints[i].VpceId")
    i = i + 1
Wend
i = 0
count_i = jResp.SizeOfArray("ImageBuilder.ImageBuilderErrors")
While i < count_i
    jResp.I = i
    ErrorCode = jResp.StringOf("ImageBuilder.ImageBuilderErrors[i].ErrorCode")
    ErrorMessage = jResp.StringOf("ImageBuilder.ImageBuilderErrors[i].ErrorMessage")
    ErrorTimestamp = jResp.IntOf("ImageBuilder.ImageBuilderErrors[i].ErrorTimestamp")
    i = i + 1
Wend
i = 0
count_i = jResp.SizeOfArray("ImageBuilder.VpcConfig.SecurityGroupIds")
While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("ImageBuilder.VpcConfig.SecurityGroupIds[i]")
    i = i + 1
Wend
i = 0
count_i = jResp.SizeOfArray("ImageBuilder.VpcConfig.SubnetIds")
While i < count_i
    jResp.I = i
    strVal = jResp.StringOf("ImageBuilder.VpcConfig.SubnetIds[i]")
    i = i + 1
Wend

// A sample JSON response body parsed by the above code:

// {
//   "ImageBuilder": {
//     "AccessEndpoints": [
//       {
//         "EndpointType": "string",
//         "VpceId": "string"
//       }
//     ],
//     "AppstreamAgentVersion": "string",
//     "Arn": "string",
//     "CreatedTime": number,
//     "Description": "string",
//     "DisplayName": "string",
//     "DomainJoinInfo": {
//       "DirectoryName": "string",
//       "OrganizationalUnitDistinguishedName": "string"
//     },
//     "EnableDefaultInternetAccess": boolean,
//     "IamRoleArn": "string",
//     "ImageArn": "string",
//     "ImageBuilderErrors": [
//       {
//         "ErrorCode": "string",
//         "ErrorMessage": "string",
//         "ErrorTimestamp": number
//       }
//     ],
//     "InstanceType": "string",
//     "Name": "string",
//     "NetworkAccessConfiguration": {
//       "EniId": "string",
//       "EniPrivateIpAddress": "string"
//     },
//     "Platform": "string",
//     "State": "string",
//     "StateChangeReason": {
//       "Code": "string",
//       "Message": "string"
//     },
//     "VpcConfig": {
//       "SecurityGroupIds": [
//         "string"
//       ],
//       "SubnetIds": [
//         "string"
//       ]
//     }
//   }
// }