Chilkat Online Tools

BatchGetProjects Delphi (DLL) Example

AWS CodeBuild

var
rest: HCkRest;
success: Boolean;
authAws: HCkAuthAws;
json: HCkJsonObject;
sbRequestBody: HCkStringBuilder;
sbResponseBody: HCkStringBuilder;
respStatusCode: Integer;
jResp: HCkJsonObject;
arn: PWideChar;
ArtifactIdentifier: PWideChar;
BucketOwnerAccess: PWideChar;
EncryptionDisabled: Integer;
Location: PWideChar;
Name: PWideChar;
NamespaceType: PWideChar;
OverrideArtifactName: Integer;
Packaging: PWideChar;
Path: PWideChar;
v_Type: PWideChar;
BadgeEnabled: Integer;
BadgeRequestUrl: PWideChar;
BatchReportMode: PWideChar;
CombineArtifacts: Integer;
MaximumBuildsAllowed: Integer;
ServiceRole: PWideChar;
TimeoutInMins: Integer;
cacheLocation: PWideChar;
cacheType: PWideChar;
concurrentBuildLimit: Integer;
created: Integer;
description: PWideChar;
encryptionKey: PWideChar;
Certificate: PWideChar;
ComputeType: PWideChar;
Image: PWideChar;
ImagePullCredentialsType: PWideChar;
PrivilegedMode: Integer;
Credential: PWideChar;
CredentialProvider: PWideChar;
environmentType: PWideChar;
lastModified: Integer;
GroupName: PWideChar;
Status: PWideChar;
StreamName: PWideChar;
S3LogsBucketOwnerAccess: PWideChar;
S3LogsEncryptionDisabled: Integer;
S3LogsLocation: PWideChar;
S3LogsStatus: PWideChar;
name: PWideChar;
projectVisibility: PWideChar;
publicProjectAlias: PWideChar;
queuedTimeoutInMinutes: Integer;
resourceAccessRole: PWideChar;
serviceRole: PWideChar;
Resource: PWideChar;
AuthType: PWideChar;
Buildspec: PWideChar;
Context: PWideChar;
TargetUrl: PWideChar;
GitCloneDepth: Integer;
FetchSubmodules: Integer;
InsecureSsl: Integer;
sourceLocation: PWideChar;
ReportBuildStatus: Integer;
SourceIdentifier: PWideChar;
sourceType: PWideChar;
sourceVersion: PWideChar;
timeoutInMinutes: Integer;
VpcId: PWideChar;
BranchFilter: PWideChar;
BuildType: PWideChar;
LastModifiedSecret: Integer;
PayloadUrl: PWideChar;
Secret: PWideChar;
v_Url: PWideChar;
j: Integer;
count_j: Integer;
strVal: PWideChar;
v_type: PWideChar;
value: PWideChar;
identifier: PWideChar;
location: PWideChar;
mountOptions: PWideChar;
mountPoint: PWideChar;
artifactIdentifier: PWideChar;
bucketOwnerAccess: PWideChar;
encryptionDisabled: Integer;
namespaceType: PWideChar;
overrideArtifactName: Integer;
packaging: PWideChar;
path: PWideChar;
authResource: PWideChar;
authType: PWideChar;
buildspec: PWideChar;
buildStatusConfigContext: PWideChar;
buildStatusConfigTargetUrl: PWideChar;
gitCloneDepth: Integer;
gitSubmodulesConfigFetchSubmodules: Integer;
insecureSsl: Integer;
reportBuildStatus: Integer;
sourceIdentifier: PWideChar;
key: PWideChar;
k: Integer;
count_k: Integer;
excludeMatchedPattern: Integer;
pattern: PWideChar;
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 := CkRest_Create();

authAws := CkAuthAws_Create();
CkAuthAws_putAccessKey(authAws,'AWS_ACCESS_KEY');
CkAuthAws_putSecretKey(authAws,'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.)
CkAuthAws_putRegion(authAws,'us-west-2');
CkAuthAws_putServiceName(authAws,'codebuild');
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
CkRest_SetAuthAws(rest,authAws);

// URL: https://codebuild.us-west-2.amazonaws.com/
// Use the same region as specified above.
success := CkRest_Connect(rest,'codebuild.us-west-2.amazonaws.com',443,True,True);
if (success <> True) then
  begin
    Memo1.Lines.Add('ConnectFailReason: ' + IntToStr(CkRest_getConnectFailReason(rest)));
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    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 := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'names[0]','string');

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

// {
//   "names": [
//     "string"
//   ]
// }

CkRest_AddHeader(rest,'Content-Type','application/x-amz-json-1.1');
CkRest_AddHeader(rest,'X-Amz-Target','CodeBuild_20161006.BatchGetProjects');

sbRequestBody := CkStringBuilder_Create();
CkJsonObject_EmitSb(json,sbRequestBody);
sbResponseBody := CkStringBuilder_Create();
success := CkRest_FullRequestSb(rest,'POST','/',sbRequestBody,sbResponseBody);
if (success <> True) then
  begin
    Memo1.Lines.Add(CkRest__lastErrorText(rest));
    Exit;
  end;
respStatusCode := CkRest_getResponseStatusCode(rest);
Memo1.Lines.Add('response status code = ' + IntToStr(respStatusCode));
if (respStatusCode <> 200) then
  begin
    Memo1.Lines.Add('Response Header:');
    Memo1.Lines.Add(CkRest__responseHeader(rest));
    Memo1.Lines.Add('Response Body:');
    Memo1.Lines.Add(CkStringBuilder__getAsString(sbResponseBody));
    Exit;
  end;

jResp := CkJsonObject_Create();
CkJsonObject_LoadSb(jResp,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

i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'projects');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    arn := CkJsonObject__stringOf(jResp,'projects[i].arn');
    ArtifactIdentifier := CkJsonObject__stringOf(jResp,'projects[i].artifacts.artifactIdentifier');
    BucketOwnerAccess := CkJsonObject__stringOf(jResp,'projects[i].artifacts.bucketOwnerAccess');
    EncryptionDisabled := CkJsonObject_IntOf(jResp,'projects[i].artifacts.encryptionDisabled');
    Location := CkJsonObject__stringOf(jResp,'projects[i].artifacts.location');
    Name := CkJsonObject__stringOf(jResp,'projects[i].artifacts.name');
    NamespaceType := CkJsonObject__stringOf(jResp,'projects[i].artifacts.namespaceType');
    OverrideArtifactName := CkJsonObject_IntOf(jResp,'projects[i].artifacts.overrideArtifactName');
    Packaging := CkJsonObject__stringOf(jResp,'projects[i].artifacts.packaging');
    Path := CkJsonObject__stringOf(jResp,'projects[i].artifacts.path');
    v_Type := CkJsonObject__stringOf(jResp,'projects[i].artifacts.type');
    BadgeEnabled := CkJsonObject_IntOf(jResp,'projects[i].badge.badgeEnabled');
    BadgeRequestUrl := CkJsonObject__stringOf(jResp,'projects[i].badge.badgeRequestUrl');
    BatchReportMode := CkJsonObject__stringOf(jResp,'projects[i].buildBatchConfig.batchReportMode');
    CombineArtifacts := CkJsonObject_IntOf(jResp,'projects[i].buildBatchConfig.combineArtifacts');
    MaximumBuildsAllowed := CkJsonObject_IntOf(jResp,'projects[i].buildBatchConfig.restrictions.maximumBuildsAllowed');
    ServiceRole := CkJsonObject__stringOf(jResp,'projects[i].buildBatchConfig.serviceRole');
    TimeoutInMins := CkJsonObject_IntOf(jResp,'projects[i].buildBatchConfig.timeoutInMins');
    cacheLocation := CkJsonObject__stringOf(jResp,'projects[i].cache.location');
    cacheType := CkJsonObject__stringOf(jResp,'projects[i].cache.type');
    concurrentBuildLimit := CkJsonObject_IntOf(jResp,'projects[i].concurrentBuildLimit');
    created := CkJsonObject_IntOf(jResp,'projects[i].created');
    description := CkJsonObject__stringOf(jResp,'projects[i].description');
    encryptionKey := CkJsonObject__stringOf(jResp,'projects[i].encryptionKey');
    Certificate := CkJsonObject__stringOf(jResp,'projects[i].environment.certificate');
    ComputeType := CkJsonObject__stringOf(jResp,'projects[i].environment.computeType');
    Image := CkJsonObject__stringOf(jResp,'projects[i].environment.image');
    ImagePullCredentialsType := CkJsonObject__stringOf(jResp,'projects[i].environment.imagePullCredentialsType');
    PrivilegedMode := CkJsonObject_IntOf(jResp,'projects[i].environment.privilegedMode');
    Credential := CkJsonObject__stringOf(jResp,'projects[i].environment.registryCredential.credential');
    CredentialProvider := CkJsonObject__stringOf(jResp,'projects[i].environment.registryCredential.credentialProvider');
    environmentType := CkJsonObject__stringOf(jResp,'projects[i].environment.type');
    lastModified := CkJsonObject_IntOf(jResp,'projects[i].lastModified');
    GroupName := CkJsonObject__stringOf(jResp,'projects[i].logsConfig.cloudWatchLogs.groupName');
    Status := CkJsonObject__stringOf(jResp,'projects[i].logsConfig.cloudWatchLogs.status');
    StreamName := CkJsonObject__stringOf(jResp,'projects[i].logsConfig.cloudWatchLogs.streamName');
    S3LogsBucketOwnerAccess := CkJsonObject__stringOf(jResp,'projects[i].logsConfig.s3Logs.bucketOwnerAccess');
    S3LogsEncryptionDisabled := CkJsonObject_IntOf(jResp,'projects[i].logsConfig.s3Logs.encryptionDisabled');
    S3LogsLocation := CkJsonObject__stringOf(jResp,'projects[i].logsConfig.s3Logs.location');
    S3LogsStatus := CkJsonObject__stringOf(jResp,'projects[i].logsConfig.s3Logs.status');
    name := CkJsonObject__stringOf(jResp,'projects[i].name');
    projectVisibility := CkJsonObject__stringOf(jResp,'projects[i].projectVisibility');
    publicProjectAlias := CkJsonObject__stringOf(jResp,'projects[i].publicProjectAlias');
    queuedTimeoutInMinutes := CkJsonObject_IntOf(jResp,'projects[i].queuedTimeoutInMinutes');
    resourceAccessRole := CkJsonObject__stringOf(jResp,'projects[i].resourceAccessRole');
    serviceRole := CkJsonObject__stringOf(jResp,'projects[i].serviceRole');
    Resource := CkJsonObject__stringOf(jResp,'projects[i].source.auth.resource');
    AuthType := CkJsonObject__stringOf(jResp,'projects[i].source.auth.type');
    Buildspec := CkJsonObject__stringOf(jResp,'projects[i].source.buildspec');
    Context := CkJsonObject__stringOf(jResp,'projects[i].source.buildStatusConfig.context');
    TargetUrl := CkJsonObject__stringOf(jResp,'projects[i].source.buildStatusConfig.targetUrl');
    GitCloneDepth := CkJsonObject_IntOf(jResp,'projects[i].source.gitCloneDepth');
    FetchSubmodules := CkJsonObject_IntOf(jResp,'projects[i].source.gitSubmodulesConfig.fetchSubmodules');
    InsecureSsl := CkJsonObject_IntOf(jResp,'projects[i].source.insecureSsl');
    sourceLocation := CkJsonObject__stringOf(jResp,'projects[i].source.location');
    ReportBuildStatus := CkJsonObject_IntOf(jResp,'projects[i].source.reportBuildStatus');
    SourceIdentifier := CkJsonObject__stringOf(jResp,'projects[i].source.sourceIdentifier');
    sourceType := CkJsonObject__stringOf(jResp,'projects[i].source.type');
    sourceVersion := CkJsonObject__stringOf(jResp,'projects[i].sourceVersion');
    timeoutInMinutes := CkJsonObject_IntOf(jResp,'projects[i].timeoutInMinutes');
    VpcId := CkJsonObject__stringOf(jResp,'projects[i].vpcConfig.vpcId');
    BranchFilter := CkJsonObject__stringOf(jResp,'projects[i].webhook.branchFilter');
    BuildType := CkJsonObject__stringOf(jResp,'projects[i].webhook.buildType');
    LastModifiedSecret := CkJsonObject_IntOf(jResp,'projects[i].webhook.lastModifiedSecret');
    PayloadUrl := CkJsonObject__stringOf(jResp,'projects[i].webhook.payloadUrl');
    Secret := CkJsonObject__stringOf(jResp,'projects[i].webhook.secret');
    v_Url := CkJsonObject__stringOf(jResp,'projects[i].webhook.url');
    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].buildBatchConfig.restrictions.computeTypesAllowed');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        strVal := CkJsonObject__stringOf(jResp,'projects[i].buildBatchConfig.restrictions.computeTypesAllowed[j]');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].cache.modes');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        strVal := CkJsonObject__stringOf(jResp,'projects[i].cache.modes[j]');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].environment.environmentVariables');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        name := CkJsonObject__stringOf(jResp,'projects[i].environment.environmentVariables[j].name');
        v_type := CkJsonObject__stringOf(jResp,'projects[i].environment.environmentVariables[j].type');
        value := CkJsonObject__stringOf(jResp,'projects[i].environment.environmentVariables[j].value');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].fileSystemLocations');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        identifier := CkJsonObject__stringOf(jResp,'projects[i].fileSystemLocations[j].identifier');
        location := CkJsonObject__stringOf(jResp,'projects[i].fileSystemLocations[j].location');
        mountOptions := CkJsonObject__stringOf(jResp,'projects[i].fileSystemLocations[j].mountOptions');
        mountPoint := CkJsonObject__stringOf(jResp,'projects[i].fileSystemLocations[j].mountPoint');
        v_type := CkJsonObject__stringOf(jResp,'projects[i].fileSystemLocations[j].type');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].secondaryArtifacts');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        artifactIdentifier := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].artifactIdentifier');
        bucketOwnerAccess := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].bucketOwnerAccess');
        encryptionDisabled := CkJsonObject_IntOf(jResp,'projects[i].secondaryArtifacts[j].encryptionDisabled');
        location := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].location');
        name := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].name');
        namespaceType := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].namespaceType');
        overrideArtifactName := CkJsonObject_IntOf(jResp,'projects[i].secondaryArtifacts[j].overrideArtifactName');
        packaging := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].packaging');
        path := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].path');
        v_type := CkJsonObject__stringOf(jResp,'projects[i].secondaryArtifacts[j].type');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].secondarySources');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        authResource := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].auth.resource');
        authType := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].auth.type');
        buildspec := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].buildspec');
        buildStatusConfigContext := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].buildStatusConfig.context');
        buildStatusConfigTargetUrl := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].buildStatusConfig.targetUrl');
        gitCloneDepth := CkJsonObject_IntOf(jResp,'projects[i].secondarySources[j].gitCloneDepth');
        gitSubmodulesConfigFetchSubmodules := CkJsonObject_IntOf(jResp,'projects[i].secondarySources[j].gitSubmodulesConfig.fetchSubmodules');
        insecureSsl := CkJsonObject_IntOf(jResp,'projects[i].secondarySources[j].insecureSsl');
        location := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].location');
        reportBuildStatus := CkJsonObject_IntOf(jResp,'projects[i].secondarySources[j].reportBuildStatus');
        sourceIdentifier := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].sourceIdentifier');
        v_type := CkJsonObject__stringOf(jResp,'projects[i].secondarySources[j].type');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].secondarySourceVersions');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        sourceIdentifier := CkJsonObject__stringOf(jResp,'projects[i].secondarySourceVersions[j].sourceIdentifier');
        sourceVersion := CkJsonObject__stringOf(jResp,'projects[i].secondarySourceVersions[j].sourceVersion');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].tags');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        key := CkJsonObject__stringOf(jResp,'projects[i].tags[j].key');
        value := CkJsonObject__stringOf(jResp,'projects[i].tags[j].value');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].vpcConfig.securityGroupIds');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        strVal := CkJsonObject__stringOf(jResp,'projects[i].vpcConfig.securityGroupIds[j]');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].vpcConfig.subnets');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        strVal := CkJsonObject__stringOf(jResp,'projects[i].vpcConfig.subnets[j]');
        j := j + 1;
      end;

    j := 0;
    count_j := CkJsonObject_SizeOfArray(jResp,'projects[i].webhook.filterGroups');
    while j < count_j do
      begin
        CkJsonObject_putJ(jResp,j);
        k := 0;
        count_k := CkJsonObject_SizeOfArray(jResp,'projects[i].webhook.filterGroups[j]');
        while k < count_k do
          begin
            CkJsonObject_putK(jResp,k);
            excludeMatchedPattern := CkJsonObject_IntOf(jResp,'projects[i].webhook.filterGroups[j][k].excludeMatchedPattern');
            pattern := CkJsonObject__stringOf(jResp,'projects[i].webhook.filterGroups[j][k].pattern');
            v_type := CkJsonObject__stringOf(jResp,'projects[i].webhook.filterGroups[j][k].type');
            k := k + 1;
          end;

        j := j + 1;
      end;

    i := i + 1;
  end;

i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'projectsNotFound');
while i < count_i do
  begin
    CkJsonObject_putI(jResp,i);
    strVal := CkJsonObject__stringOf(jResp,'projectsNotFound[i]');
    i := i + 1;
  end;

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

// {
//   "projects": [
//     {
//       "arn": "string",
//       "artifacts": {
//         "artifactIdentifier": "string",
//         "bucketOwnerAccess": "string",
//         "encryptionDisabled": boolean,
//         "location": "string",
//         "name": "string",
//         "namespaceType": "string",
//         "overrideArtifactName": boolean,
//         "packaging": "string",
//         "path": "string",
//         "type": "string"
//       },
//       "badge": {
//         "badgeEnabled": boolean,
//         "badgeRequestUrl": "string"
//       },
//       "buildBatchConfig": {
//         "batchReportMode": "string",
//         "combineArtifacts": boolean,
//         "restrictions": {
//           "computeTypesAllowed": [
//             "string"
//           ],
//           "maximumBuildsAllowed": number
//         },
//         "serviceRole": "string",
//         "timeoutInMins": number
//       },
//       "cache": {
//         "location": "string",
//         "modes": [
//           "string"
//         ],
//         "type": "string"
//       },
//       "concurrentBuildLimit": number,
//       "created": number,
//       "description": "string",
//       "encryptionKey": "string",
//       "environment": {
//         "certificate": "string",
//         "computeType": "string",
//         "environmentVariables": [
//           {
//             "name": "string",
//             "type": "string",
//             "value": "string"
//           }
//         ],
//         "image": "string",
//         "imagePullCredentialsType": "string",
//         "privilegedMode": boolean,
//         "registryCredential": {
//           "credential": "string",
//           "credentialProvider": "string"
//         },
//         "type": "string"
//       },
//       "fileSystemLocations": [
//         {
//           "identifier": "string",
//           "location": "string",
//           "mountOptions": "string",
//           "mountPoint": "string",
//           "type": "string"
//         }
//       ],
//       "lastModified": number,
//       "logsConfig": {
//         "cloudWatchLogs": {
//           "groupName": "string",
//           "status": "string",
//           "streamName": "string"
//         },
//         "s3Logs": {
//           "bucketOwnerAccess": "string",
//           "encryptionDisabled": boolean,
//           "location": "string",
//           "status": "string"
//         }
//       },
//       "name": "string",
//       "projectVisibility": "string",
//       "publicProjectAlias": "string",
//       "queuedTimeoutInMinutes": number,
//       "resourceAccessRole": "string",
//       "secondaryArtifacts": [
//         {
//           "artifactIdentifier": "string",
//           "bucketOwnerAccess": "string",
//           "encryptionDisabled": boolean,
//           "location": "string",
//           "name": "string",
//           "namespaceType": "string",
//           "overrideArtifactName": boolean,
//           "packaging": "string",
//           "path": "string",
//           "type": "string"
//         }
//       ],
//       "secondarySources": [
//         {
//           "auth": {
//             "resource": "string",
//             "type": "string"
//           },
//           "buildspec": "string",
//           "buildStatusConfig": {
//             "context": "string",
//             "targetUrl": "string"
//           },
//           "gitCloneDepth": number,
//           "gitSubmodulesConfig": {
//             "fetchSubmodules": boolean
//           },
//           "insecureSsl": boolean,
//           "location": "string",
//           "reportBuildStatus": boolean,
//           "sourceIdentifier": "string",
//           "type": "string"
//         }
//       ],
//       "secondarySourceVersions": [
//         {
//           "sourceIdentifier": "string",
//           "sourceVersion": "string"
//         }
//       ],
//       "serviceRole": "string",
//       "source": {
//         "auth": {
//           "resource": "string",
//           "type": "string"
//         },
//         "buildspec": "string",
//         "buildStatusConfig": {
//           "context": "string",
//           "targetUrl": "string"
//         },
//         "gitCloneDepth": number,
//         "gitSubmodulesConfig": {
//           "fetchSubmodules": boolean
//         },
//         "insecureSsl": boolean,
//         "location": "string",
//         "reportBuildStatus": boolean,
//         "sourceIdentifier": "string",
//         "type": "string"
//       },
//       "sourceVersion": "string",
//       "tags": [
//         {
//           "key": "string",
//           "value": "string"
//         }
//       ],
//       "timeoutInMinutes": number,
//       "vpcConfig": {
//         "securityGroupIds": [
//           "string"
//         ],
//         "subnets": [
//           "string"
//         ],
//         "vpcId": "string"
//       },
//       "webhook": {
//         "branchFilter": "string",
//         "buildType": "string",
//         "filterGroups": [
//           [
//             {
//               "excludeMatchedPattern": boolean,
//               "pattern": "string",
//               "type": "string"
//             }
//           ]
//         ],
//         "lastModifiedSecret": number,
//         "payloadUrl": "string",
//         "secret": "string",
//         "url": "string"
//       }
//     }
//   ],
//   "projectsNotFound": [
//     "string"
//   ]
// }

CkRest_Dispose(rest);
CkAuthAws_Dispose(authAws);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
CkStringBuilder_Dispose(sbResponseBody);
CkJsonObject_Dispose(jResp);