DescribeJobDefinitions delphiAx Example
var
rest: TChilkatRest;
success: Integer;
authAws: TChilkatAuthAws;
json: TChilkatJsonObject;
sbRequestBody: TChilkatStringBuilder;
sbResponseBody: TChilkatStringBuilder;
respStatusCode: Integer;
jResp: TChilkatJsonObject;
ExecutionRoleArn: WideString;
PlatformVersion: WideString;
Image: WideString;
InstanceType: WideString;
JobRoleArn: WideString;
InitProcessEnabled: Integer;
MaxSwap: Integer;
SharedMemorySize: Integer;
Swappiness: Integer;
LogDriver: WideString;
v_String: WideString;
Memory: Integer;
AssignPublicIp: WideString;
Privileged: Integer;
ReadonlyRootFilesystem: Integer;
User: WideString;
Vcpus: Integer;
jobDefinitionArn: WideString;
jobDefinitionName: WideString;
MainNode: Integer;
NumNodes: Integer;
parametersString: WideString;
propagateTags: Integer;
Attempts: Integer;
revision: Integer;
schedulingPriority: Integer;
status: WideString;
tagsString: WideString;
AttemptDurationSeconds: Integer;
v_type: WideString;
j: Integer;
count_j: Integer;
strVal: WideString;
name: WideString;
value: WideString;
containerPath: WideString;
hostPath: WideString;
k: Integer;
count_k: Integer;
size: Integer;
valueFrom: WideString;
readOnly: Integer;
sourceVolume: WideString;
hardLimit: Integer;
softLimit: Integer;
AccessPointId: WideString;
Iam: WideString;
FileSystemId: WideString;
RootDirectory: WideString;
TransitEncryption: WideString;
TransitEncryptionPort: Integer;
SourcePath: WideString;
containerExecutionRoleArn: WideString;
FargatePlatformConfigurationPlatformVersion: WideString;
containerImage: WideString;
containerInstanceType: WideString;
containerJobRoleArn: WideString;
LinuxParametersInitProcessEnabled: Integer;
LinuxParametersMaxSwap: Integer;
LinuxParametersSharedMemorySize: Integer;
LinuxParametersSwappiness: Integer;
LogConfigurationLogDriver: WideString;
OptionsString: WideString;
containerMemory: Integer;
NetworkConfigurationAssignPublicIp: WideString;
containerPrivileged: Integer;
containerReadonlyRootFilesystem: Integer;
containerUser: WideString;
containerVcpus: Integer;
targetNodes: WideString;
json1: IChilkatJsonObject;
i1: Integer;
count_i1: Integer;
AuthorizationConfigAccessPointId: WideString;
AuthorizationConfigIam: WideString;
efsVolumeConfigurationFileSystemId: WideString;
efsVolumeConfigurationRootDirectory: WideString;
efsVolumeConfigurationTransitEncryption: WideString;
efsVolumeConfigurationTransitEncryptionPort: Integer;
hostSourcePath: WideString;
action: WideString;
onExitCode: WideString;
onReason: WideString;
onStatusReason: WideString;
nextToken: WideString;
i: Integer;
count_i: Integer;
begin
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
rest := TChilkatRest.Create(Self);
authAws := TChilkatAuthAws.Create(Self);
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 := 'batch';
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws.ControlInterface);
// URL: https://batch.us-west-2.amazonaws.com/
// Use the same region as specified above.
success := rest.Connect('batch.us-west-2.amazonaws.com',443,1,1);
if (success <> 1) then
begin
Memo1.Lines.Add('ConnectFailReason: ' + IntToStr(rest.ConnectFailReason));
Memo1.Lines.Add(rest.LastErrorText);
Exit;
end;
// 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 := TChilkatJsonObject.Create(Self);
json.UpdateString('jobDefinitionName','string');
json.UpdateString('jobDefinitions[0]','string');
json.UpdateInt('maxResults',123);
json.UpdateString('nextToken','string');
json.UpdateString('status','string');
// The JSON request body created by the above code:
// {
// "jobDefinitionName": "string",
// "jobDefinitions": [
// "string"
// ],
// "maxResults": number,
// "nextToken": "string",
// "status": "string"
// }
rest.AddHeader('Content-Type','application/x-amz-json-1.1');
rest.AddHeader('X-Amz-Target','DescribeJobDefinitions');
sbRequestBody := TChilkatStringBuilder.Create(Self);
json.EmitSb(sbRequestBody.ControlInterface);
sbResponseBody := TChilkatStringBuilder.Create(Self);
success := rest.FullRequestSb('POST','/v1/describejobdefinitions',sbRequestBody.ControlInterface,sbResponseBody.ControlInterface);
if (success <> 1) then
begin
Memo1.Lines.Add(rest.LastErrorText);
Exit;
end;
respStatusCode := rest.ResponseStatusCode;
Memo1.Lines.Add('response status code = ' + IntToStr(respStatusCode));
if (respStatusCode <> 200) then
begin
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(rest.ResponseHeader);
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(sbResponseBody.GetAsString());
Exit;
end;
jResp := TChilkatJsonObject.Create(Self);
jResp.LoadSb(sbResponseBody.ControlInterface);
// 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
nextToken := jResp.StringOf('nextToken');
i := 0;
count_i := jResp.SizeOfArray('jobDefinitions');
while i < count_i do
begin
jResp.I := i;
ExecutionRoleArn := jResp.StringOf('jobDefinitions[i].containerProperties.executionRoleArn');
PlatformVersion := jResp.StringOf('jobDefinitions[i].containerProperties.fargatePlatformConfiguration.platformVersion');
Image := jResp.StringOf('jobDefinitions[i].containerProperties.image');
InstanceType := jResp.StringOf('jobDefinitions[i].containerProperties.instanceType');
JobRoleArn := jResp.StringOf('jobDefinitions[i].containerProperties.jobRoleArn');
InitProcessEnabled := jResp.IntOf('jobDefinitions[i].containerProperties.linuxParameters.initProcessEnabled');
MaxSwap := jResp.IntOf('jobDefinitions[i].containerProperties.linuxParameters.maxSwap');
SharedMemorySize := jResp.IntOf('jobDefinitions[i].containerProperties.linuxParameters.sharedMemorySize');
Swappiness := jResp.IntOf('jobDefinitions[i].containerProperties.linuxParameters.swappiness');
LogDriver := jResp.StringOf('jobDefinitions[i].containerProperties.logConfiguration.logDriver');
v_String := jResp.StringOf('jobDefinitions[i].containerProperties.logConfiguration.options.string');
Memory := jResp.IntOf('jobDefinitions[i].containerProperties.memory');
AssignPublicIp := jResp.StringOf('jobDefinitions[i].containerProperties.networkConfiguration.assignPublicIp');
Privileged := jResp.IntOf('jobDefinitions[i].containerProperties.privileged');
ReadonlyRootFilesystem := jResp.IntOf('jobDefinitions[i].containerProperties.readonlyRootFilesystem');
User := jResp.StringOf('jobDefinitions[i].containerProperties.user');
Vcpus := jResp.IntOf('jobDefinitions[i].containerProperties.vcpus');
jobDefinitionArn := jResp.StringOf('jobDefinitions[i].jobDefinitionArn');
jobDefinitionName := jResp.StringOf('jobDefinitions[i].jobDefinitionName');
MainNode := jResp.IntOf('jobDefinitions[i].nodeProperties.mainNode');
NumNodes := jResp.IntOf('jobDefinitions[i].nodeProperties.numNodes');
parametersString := jResp.StringOf('jobDefinitions[i].parameters.string');
propagateTags := jResp.IntOf('jobDefinitions[i].propagateTags');
Attempts := jResp.IntOf('jobDefinitions[i].retryStrategy.attempts');
revision := jResp.IntOf('jobDefinitions[i].revision');
schedulingPriority := jResp.IntOf('jobDefinitions[i].schedulingPriority');
status := jResp.StringOf('jobDefinitions[i].status');
tagsString := jResp.StringOf('jobDefinitions[i].tags.string');
AttemptDurationSeconds := jResp.IntOf('jobDefinitions[i].timeout.attemptDurationSeconds');
v_type := jResp.StringOf('jobDefinitions[i].type');
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.command');
while j < count_j do
begin
jResp.J := j;
strVal := jResp.StringOf('jobDefinitions[i].containerProperties.command[j]');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.environment');
while j < count_j do
begin
jResp.J := j;
name := jResp.StringOf('jobDefinitions[i].containerProperties.environment[j].name');
value := jResp.StringOf('jobDefinitions[i].containerProperties.environment[j].value');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.linuxParameters.devices');
while j < count_j do
begin
jResp.J := j;
containerPath := jResp.StringOf('jobDefinitions[i].containerProperties.linuxParameters.devices[j].containerPath');
hostPath := jResp.StringOf('jobDefinitions[i].containerProperties.linuxParameters.devices[j].hostPath');
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].containerProperties.linuxParameters.devices[j].permissions');
while k < count_k do
begin
jResp.K := k;
strVal := jResp.StringOf('jobDefinitions[i].containerProperties.linuxParameters.devices[j].permissions[k]');
k := k + 1;
end;
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.linuxParameters.tmpfs');
while j < count_j do
begin
jResp.J := j;
containerPath := jResp.StringOf('jobDefinitions[i].containerProperties.linuxParameters.tmpfs[j].containerPath');
size := jResp.IntOf('jobDefinitions[i].containerProperties.linuxParameters.tmpfs[j].size');
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].containerProperties.linuxParameters.tmpfs[j].mountOptions');
while k < count_k do
begin
jResp.K := k;
strVal := jResp.StringOf('jobDefinitions[i].containerProperties.linuxParameters.tmpfs[j].mountOptions[k]');
k := k + 1;
end;
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.logConfiguration.secretOptions');
while j < count_j do
begin
jResp.J := j;
name := jResp.StringOf('jobDefinitions[i].containerProperties.logConfiguration.secretOptions[j].name');
valueFrom := jResp.StringOf('jobDefinitions[i].containerProperties.logConfiguration.secretOptions[j].valueFrom');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.mountPoints');
while j < count_j do
begin
jResp.J := j;
containerPath := jResp.StringOf('jobDefinitions[i].containerProperties.mountPoints[j].containerPath');
readOnly := jResp.IntOf('jobDefinitions[i].containerProperties.mountPoints[j].readOnly');
sourceVolume := jResp.StringOf('jobDefinitions[i].containerProperties.mountPoints[j].sourceVolume');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.resourceRequirements');
while j < count_j do
begin
jResp.J := j;
v_type := jResp.StringOf('jobDefinitions[i].containerProperties.resourceRequirements[j].type');
value := jResp.StringOf('jobDefinitions[i].containerProperties.resourceRequirements[j].value');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.secrets');
while j < count_j do
begin
jResp.J := j;
name := jResp.StringOf('jobDefinitions[i].containerProperties.secrets[j].name');
valueFrom := jResp.StringOf('jobDefinitions[i].containerProperties.secrets[j].valueFrom');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.ulimits');
while j < count_j do
begin
jResp.J := j;
hardLimit := jResp.IntOf('jobDefinitions[i].containerProperties.ulimits[j].hardLimit');
name := jResp.StringOf('jobDefinitions[i].containerProperties.ulimits[j].name');
softLimit := jResp.IntOf('jobDefinitions[i].containerProperties.ulimits[j].softLimit');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].containerProperties.volumes');
while j < count_j do
begin
jResp.J := j;
AccessPointId := jResp.StringOf('jobDefinitions[i].containerProperties.volumes[j].efsVolumeConfiguration.authorizationConfig.accessPointId');
Iam := jResp.StringOf('jobDefinitions[i].containerProperties.volumes[j].efsVolumeConfiguration.authorizationConfig.iam');
FileSystemId := jResp.StringOf('jobDefinitions[i].containerProperties.volumes[j].efsVolumeConfiguration.fileSystemId');
RootDirectory := jResp.StringOf('jobDefinitions[i].containerProperties.volumes[j].efsVolumeConfiguration.rootDirectory');
TransitEncryption := jResp.StringOf('jobDefinitions[i].containerProperties.volumes[j].efsVolumeConfiguration.transitEncryption');
TransitEncryptionPort := jResp.IntOf('jobDefinitions[i].containerProperties.volumes[j].efsVolumeConfiguration.transitEncryptionPort');
SourcePath := jResp.StringOf('jobDefinitions[i].containerProperties.volumes[j].host.sourcePath');
name := jResp.StringOf('jobDefinitions[i].containerProperties.volumes[j].name');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties');
while j < count_j do
begin
jResp.J := j;
containerExecutionRoleArn := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.executionRoleArn');
FargatePlatformConfigurationPlatformVersion := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.fargatePlatformConfiguration.platformVersion');
containerImage := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.image');
containerInstanceType := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.instanceType');
containerJobRoleArn := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.jobRoleArn');
LinuxParametersInitProcessEnabled := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.initProcessEnabled');
LinuxParametersMaxSwap := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.maxSwap');
LinuxParametersSharedMemorySize := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.sharedMemorySize');
LinuxParametersSwappiness := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.swappiness');
LogConfigurationLogDriver := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.logConfiguration.logDriver');
OptionsString := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.logConfiguration.options.string');
containerMemory := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.memory');
NetworkConfigurationAssignPublicIp := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.networkConfiguration.assignPublicIp');
containerPrivileged := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.privileged');
containerReadonlyRootFilesystem := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.readonlyRootFilesystem');
containerUser := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.user');
containerVcpus := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.vcpus');
targetNodes := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].targetNodes');
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.command');
while k < count_k do
begin
jResp.K := k;
strVal := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.command[k]');
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.environment');
while k < count_k do
begin
jResp.K := k;
name := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.environment[k].name');
value := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.environment[k].value');
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.devices');
while k < count_k do
begin
jResp.K := k;
containerPath := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.devices[k].containerPath');
hostPath := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.devices[k].hostPath');
json1 := jResp.ObjectOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.devices[k]');
i1 := 0;
count_i1 := json1.SizeOfArray('permissions');
while i1 < count_i1 do
begin
json1.I := i1;
strVal := json1.StringOf('permissions[i]');
i1 := i1 + 1;
end;
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.tmpfs');
while k < count_k do
begin
jResp.K := k;
containerPath := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.tmpfs[k].containerPath');
size := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.tmpfs[k].size');
json1 := jResp.ObjectOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.linuxParameters.tmpfs[k]');
i1 := 0;
count_i1 := json1.SizeOfArray('mountOptions');
while i1 < count_i1 do
begin
json1.I := i1;
strVal := json1.StringOf('mountOptions[i]');
i1 := i1 + 1;
end;
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.logConfiguration.secretOptions');
while k < count_k do
begin
jResp.K := k;
name := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.logConfiguration.secretOptions[k].name');
valueFrom := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.logConfiguration.secretOptions[k].valueFrom');
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.mountPoints');
while k < count_k do
begin
jResp.K := k;
containerPath := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.mountPoints[k].containerPath');
readOnly := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.mountPoints[k].readOnly');
sourceVolume := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.mountPoints[k].sourceVolume');
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.resourceRequirements');
while k < count_k do
begin
jResp.K := k;
v_type := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.resourceRequirements[k].type');
value := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.resourceRequirements[k].value');
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.secrets');
while k < count_k do
begin
jResp.K := k;
name := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.secrets[k].name');
valueFrom := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.secrets[k].valueFrom');
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.ulimits');
while k < count_k do
begin
jResp.K := k;
hardLimit := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.ulimits[k].hardLimit');
name := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.ulimits[k].name');
softLimit := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.ulimits[k].softLimit');
k := k + 1;
end;
k := 0;
count_k := jResp.SizeOfArray('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes');
while k < count_k do
begin
jResp.K := k;
AuthorizationConfigAccessPointId := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].efsVolumeConfiguration.authorizationConfig.accessPointId');
AuthorizationConfigIam := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].efsVolumeConfiguration.authorizationConfig.iam');
efsVolumeConfigurationFileSystemId := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].efsVolumeConfiguration.fileSystemId');
efsVolumeConfigurationRootDirectory := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].efsVolumeConfiguration.rootDirectory');
efsVolumeConfigurationTransitEncryption := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].efsVolumeConfiguration.transitEncryption');
efsVolumeConfigurationTransitEncryptionPort := jResp.IntOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].efsVolumeConfiguration.transitEncryptionPort');
hostSourcePath := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].host.sourcePath');
name := jResp.StringOf('jobDefinitions[i].nodeProperties.nodeRangeProperties[j].container.volumes[k].name');
k := k + 1;
end;
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].platformCapabilities');
while j < count_j do
begin
jResp.J := j;
strVal := jResp.StringOf('jobDefinitions[i].platformCapabilities[j]');
j := j + 1;
end;
j := 0;
count_j := jResp.SizeOfArray('jobDefinitions[i].retryStrategy.evaluateOnExit');
while j < count_j do
begin
jResp.J := j;
action := jResp.StringOf('jobDefinitions[i].retryStrategy.evaluateOnExit[j].action');
onExitCode := jResp.StringOf('jobDefinitions[i].retryStrategy.evaluateOnExit[j].onExitCode');
onReason := jResp.StringOf('jobDefinitions[i].retryStrategy.evaluateOnExit[j].onReason');
onStatusReason := jResp.StringOf('jobDefinitions[i].retryStrategy.evaluateOnExit[j].onStatusReason');
j := j + 1;
end;
i := i + 1;
end;
// A sample JSON response body parsed by the above code:
// {
// "jobDefinitions": [
// {
// "containerProperties": {
// "command": [
// "string"
// ],
// "environment": [
// {
// "name": "string",
// "value": "string"
// }
// ],
// "executionRoleArn": "string",
// "fargatePlatformConfiguration": {
// "platformVersion": "string"
// },
// "image": "string",
// "instanceType": "string",
// "jobRoleArn": "string",
// "linuxParameters": {
// "devices": [
// {
// "containerPath": "string",
// "hostPath": "string",
// "permissions": [
// "string"
// ]
// }
// ],
// "initProcessEnabled": boolean,
// "maxSwap": number,
// "sharedMemorySize": number,
// "swappiness": number,
// "tmpfs": [
// {
// "containerPath": "string",
// "mountOptions": [
// "string"
// ],
// "size": number
// }
// ]
// },
// "logConfiguration": {
// "logDriver": "string",
// "options": {
// "string": "string"
// },
// "secretOptions": [
// {
// "name": "string",
// "valueFrom": "string"
// }
// ]
// },
// "memory": number,
// "mountPoints": [
// {
// "containerPath": "string",
// "readOnly": boolean,
// "sourceVolume": "string"
// }
// ],
// "networkConfiguration": {
// "assignPublicIp": "string"
// },
// "privileged": boolean,
// "readonlyRootFilesystem": boolean,
// "resourceRequirements": [
// {
// "type": "string",
// "value": "string"
// }
// ],
// "secrets": [
// {
// "name": "string",
// "valueFrom": "string"
// }
// ],
// "ulimits": [
// {
// "hardLimit": number,
// "name": "string",
// "softLimit": number
// }
// ],
// "user": "string",
// "vcpus": number,
// "volumes": [
// {
// "efsVolumeConfiguration": {
// "authorizationConfig": {
// "accessPointId": "string",
// "iam": "string"
// },
// "fileSystemId": "string",
// "rootDirectory": "string",
// "transitEncryption": "string",
// "transitEncryptionPort": number
// },
// "host": {
// "sourcePath": "string"
// },
// "name": "string"
// }
// ]
// },
// "jobDefinitionArn": "string",
// "jobDefinitionName": "string",
// "nodeProperties": {
// "mainNode": number,
// "nodeRangeProperties": [
// {
// "container": {
// "command": [
// "string"
// ],
// "environment": [
// {
// "name": "string",
// "value": "string"
// }
// ],
// "executionRoleArn": "string",
// "fargatePlatformConfiguration": {
// "platformVersion": "string"
// },
// "image": "string",
// "instanceType": "string",
// "jobRoleArn": "string",
// "linuxParameters": {
// "devices": [
// {
// "containerPath": "string",
// "hostPath": "string",
// "permissions": [
// "string"
// ]
// }
// ],
// "initProcessEnabled": boolean,
// "maxSwap": number,
// "sharedMemorySize": number,
// "swappiness": number,
// "tmpfs": [
// {
// "containerPath": "string",
// "mountOptions": [
// "string"
// ],
// "size": number
// }
// ]
// },
// "logConfiguration": {
// "logDriver": "string",
// "options": {
// "string": "string"
// },
// "secretOptions": [
// {
// "name": "string",
// "valueFrom": "string"
// }
// ]
// },
// "memory": number,
// "mountPoints": [
// {
// "containerPath": "string",
// "readOnly": boolean,
// "sourceVolume": "string"
// }
// ],
// "networkConfiguration": {
// "assignPublicIp": "string"
// },
// "privileged": boolean,
// "readonlyRootFilesystem": boolean,
// "resourceRequirements": [
// {
// "type": "string",
// "value": "string"
// }
// ],
// "secrets": [
// {
// "name": "string",
// "valueFrom": "string"
// }
// ],
// "ulimits": [
// {
// "hardLimit": number,
// "name": "string",
// "softLimit": number
// }
// ],
// "user": "string",
// "vcpus": number,
// "volumes": [
// {
// "efsVolumeConfiguration": {
// "authorizationConfig": {
// "accessPointId": "string",
// "iam": "string"
// },
// "fileSystemId": "string",
// "rootDirectory": "string",
// "transitEncryption": "string",
// "transitEncryptionPort": number
// },
// "host": {
// "sourcePath": "string"
// },
// "name": "string"
// }
// ]
// },
// "targetNodes": "string"
// }
// ],
// "numNodes": number
// },
// "parameters": {
// "string": "string"
// },
// "platformCapabilities": [
// "string"
// ],
// "propagateTags": boolean,
// "retryStrategy": {
// "attempts": number,
// "evaluateOnExit": [
// {
// "action": "string",
// "onExitCode": "string",
// "onReason": "string",
// "onStatusReason": "string"
// }
// ]
// },
// "revision": number,
// "schedulingPriority": number,
// "status": "string",
// "tags": {
// "string": "string"
// },
// "timeout": {
// "attemptDurationSeconds": number
// },
// "type": "string"
// }
// ],
// "nextToken": "string"
// }