Chilkat Online Tools

ListBranches SQL Server Example

Amplify

CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    DECLARE @sTmp0 nvarchar(max)
    -- This example requires the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @rest int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Rest', @rest OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    DECLARE @authAws int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.AuthAws', @authAws OUT

    EXEC sp_OASetProperty @authAws, 'AccessKey', 'AWS_ACCESS_KEY'
    EXEC sp_OASetProperty @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.)
    EXEC sp_OASetProperty @authAws, 'Region', 'us-west-2'
    EXEC sp_OASetProperty @authAws, 'ServiceName', 'amplify'
    -- SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    EXEC sp_OAMethod @rest, 'SetAuthAws', @success OUT, @authAws

    -- URL: https://amplify.us-west-2.amazonaws.com/
    -- Use the same region as specified above.
    EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'amplify.us-west-2.amazonaws.com', 443, 1, 1
    IF @success <> 1
      BEGIN

        EXEC sp_OAGetProperty @rest, 'ConnectFailReason', @iTmp0 OUT
        PRINT 'ConnectFailReason: ' + @iTmp0
        EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @authAws
        RETURN
      END

    EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Content-Type', 'application/x-amz-json-1.1'
    EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'X-Amz-Target', 'ListBranches'

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @rest, 'FullRequestNoBodySb', @success OUT, 'GET', '/apps/{appId}/branches', @sbResponseBody
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @authAws
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END
    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @respStatusCode OUT

    PRINT 'response status code = ' + @respStatusCode
    IF @respStatusCode <> 200
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @rest, 'ResponseHeader', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Response Body:'
        EXEC sp_OAMethod @sbResponseBody, 'GetAsString', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @rest
        EXEC @hr = sp_OADestroy @authAws
        EXEC @hr = sp_OADestroy @sbResponseBody
        RETURN
      END

    DECLARE @jResp int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @jResp OUT

    EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @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

    DECLARE @activeJobId nvarchar(max)

    DECLARE @backendEnvironmentArn nvarchar(max)

    DECLARE @basicAuthCredentials nvarchar(max)

    DECLARE @branchArn nvarchar(max)

    DECLARE @branchName nvarchar(max)

    DECLARE @buildSpec nvarchar(max)

    DECLARE @createTime int

    DECLARE @description nvarchar(max)

    DECLARE @destinationBranch nvarchar(max)

    DECLARE @displayName nvarchar(max)

    DECLARE @enableAutoBuild int

    DECLARE @enableBasicAuth int

    DECLARE @enableNotification int

    DECLARE @enablePerformanceMode int

    DECLARE @enablePullRequestPreview int

    DECLARE @v_String nvarchar(max)

    DECLARE @framework nvarchar(max)

    DECLARE @pullRequestEnvironmentName nvarchar(max)

    DECLARE @sourceBranch nvarchar(max)

    DECLARE @stage nvarchar(max)

    DECLARE @tagsString nvarchar(max)

    DECLARE @thumbnailUrl nvarchar(max)

    DECLARE @totalNumberOfJobs nvarchar(max)

    DECLARE @ttl nvarchar(max)

    DECLARE @updateTime int

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @strVal nvarchar(max)

    DECLARE @nextToken nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @nextToken OUT, 'nextToken'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'branches'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @activeJobId OUT, 'branches[i].activeJobId'
        EXEC sp_OAMethod @jResp, 'StringOf', @backendEnvironmentArn OUT, 'branches[i].backendEnvironmentArn'
        EXEC sp_OAMethod @jResp, 'StringOf', @basicAuthCredentials OUT, 'branches[i].basicAuthCredentials'
        EXEC sp_OAMethod @jResp, 'StringOf', @branchArn OUT, 'branches[i].branchArn'
        EXEC sp_OAMethod @jResp, 'StringOf', @branchName OUT, 'branches[i].branchName'
        EXEC sp_OAMethod @jResp, 'StringOf', @buildSpec OUT, 'branches[i].buildSpec'
        EXEC sp_OAMethod @jResp, 'IntOf', @createTime OUT, 'branches[i].createTime'
        EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'branches[i].description'
        EXEC sp_OAMethod @jResp, 'StringOf', @destinationBranch OUT, 'branches[i].destinationBranch'
        EXEC sp_OAMethod @jResp, 'StringOf', @displayName OUT, 'branches[i].displayName'
        EXEC sp_OAMethod @jResp, 'IntOf', @enableAutoBuild OUT, 'branches[i].enableAutoBuild'
        EXEC sp_OAMethod @jResp, 'IntOf', @enableBasicAuth OUT, 'branches[i].enableBasicAuth'
        EXEC sp_OAMethod @jResp, 'IntOf', @enableNotification OUT, 'branches[i].enableNotification'
        EXEC sp_OAMethod @jResp, 'IntOf', @enablePerformanceMode OUT, 'branches[i].enablePerformanceMode'
        EXEC sp_OAMethod @jResp, 'IntOf', @enablePullRequestPreview OUT, 'branches[i].enablePullRequestPreview'
        EXEC sp_OAMethod @jResp, 'StringOf', @v_String OUT, 'branches[i].environmentVariables.string'
        EXEC sp_OAMethod @jResp, 'StringOf', @framework OUT, 'branches[i].framework'
        EXEC sp_OAMethod @jResp, 'StringOf', @pullRequestEnvironmentName OUT, 'branches[i].pullRequestEnvironmentName'
        EXEC sp_OAMethod @jResp, 'StringOf', @sourceBranch OUT, 'branches[i].sourceBranch'
        EXEC sp_OAMethod @jResp, 'StringOf', @stage OUT, 'branches[i].stage'
        EXEC sp_OAMethod @jResp, 'StringOf', @tagsString OUT, 'branches[i].tags.string'
        EXEC sp_OAMethod @jResp, 'StringOf', @thumbnailUrl OUT, 'branches[i].thumbnailUrl'
        EXEC sp_OAMethod @jResp, 'StringOf', @totalNumberOfJobs OUT, 'branches[i].totalNumberOfJobs'
        EXEC sp_OAMethod @jResp, 'StringOf', @ttl OUT, 'branches[i].ttl'
        EXEC sp_OAMethod @jResp, 'IntOf', @updateTime OUT, 'branches[i].updateTime'
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'branches[i].associatedResources'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'branches[i].associatedResources[j]'
            SELECT @j = @j + 1
          END
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'branches[i].customDomains'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'branches[i].customDomains[j]'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END

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

    -- {
    --   "branches": [
    --     {
    --       "activeJobId": "string",
    --       "associatedResources": [
    --         "string"
    --       ],
    --       "backendEnvironmentArn": "string",
    --       "basicAuthCredentials": "string",
    --       "branchArn": "string",
    --       "branchName": "string",
    --       "buildSpec": "string",
    --       "createTime": number,
    --       "customDomains": [
    --         "string"
    --       ],
    --       "description": "string",
    --       "destinationBranch": "string",
    --       "displayName": "string",
    --       "enableAutoBuild": boolean,
    --       "enableBasicAuth": boolean,
    --       "enableNotification": boolean,
    --       "enablePerformanceMode": boolean,
    --       "enablePullRequestPreview": boolean,
    --       "environmentVariables": {
    --         "string": "string"
    --       },
    --       "framework": "string",
    --       "pullRequestEnvironmentName": "string",
    --       "sourceBranch": "string",
    --       "stage": "string",
    --       "tags": {
    --         "string": "string"
    --       },
    --       "thumbnailUrl": "string",
    --       "totalNumberOfJobs": "string",
    --       "ttl": "string",
    --       "updateTime": number
    --     }
    --   ],
    --   "nextToken": "string"
    -- }

    EXEC @hr = sp_OADestroy @rest
    EXEC @hr = sp_OADestroy @authAws
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @jResp


END
GO