Chilkat Online Tools

StopRun SQL Server Example

AWS Device Farm

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', 'devicefarm'
    -- SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    EXEC sp_OAMethod @rest, 'SetAuthAws', @success OUT, @authAws

    -- URL: https://devicefarm.us-west-2.amazonaws.com/
    -- Use the same region as specified above.
    EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'devicefarm.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

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

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

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'arn', 'string'

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

    -- {
    --   "arn": "string"
    -- }

    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', 'DeviceFarm_20150623.StopRun'

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

    EXEC sp_OAMethod @json, 'EmitSb', @success OUT, @sbRequestBody
    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @rest, 'FullRequestSb', @success OUT, 'POST', '/', @sbRequestBody, @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 @json
        EXEC @hr = sp_OADestroy @sbRequestBody
        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 @json
        EXEC @hr = sp_OADestroy @sbRequestBody
        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 @strVal nvarchar(max)

    DECLARE @attribute nvarchar(max)

    DECLARE @operator nvarchar(max)

    DECLARE @j int

    DECLARE @count_j int

    DECLARE @AppUpload nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @AppUpload OUT, 'run.appUpload'
    DECLARE @Arn nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Arn OUT, 'run.arn'
    DECLARE @BillingMethod nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @BillingMethod OUT, 'run.billingMethod'
    DECLARE @CompletedJobs int
    EXEC sp_OAMethod @jResp, 'IntOf', @CompletedJobs OUT, 'run.completedJobs'
    DECLARE @Errored int
    EXEC sp_OAMethod @jResp, 'IntOf', @Errored OUT, 'run.counters.errored'
    DECLARE @Failed int
    EXEC sp_OAMethod @jResp, 'IntOf', @Failed OUT, 'run.counters.failed'
    DECLARE @Passed int
    EXEC sp_OAMethod @jResp, 'IntOf', @Passed OUT, 'run.counters.passed'
    DECLARE @Skipped int
    EXEC sp_OAMethod @jResp, 'IntOf', @Skipped OUT, 'run.counters.skipped'
    DECLARE @Stopped int
    EXEC sp_OAMethod @jResp, 'IntOf', @Stopped OUT, 'run.counters.stopped'
    DECLARE @Total int
    EXEC sp_OAMethod @jResp, 'IntOf', @Total OUT, 'run.counters.total'
    DECLARE @Warned int
    EXEC sp_OAMethod @jResp, 'IntOf', @Warned OUT, 'run.counters.warned'
    DECLARE @Created int
    EXEC sp_OAMethod @jResp, 'IntOf', @Created OUT, 'run.created'
    DECLARE @Metered int
    EXEC sp_OAMethod @jResp, 'IntOf', @Metered OUT, 'run.deviceMinutes.metered'
    DECLARE @DeviceMinutesTotal int
    EXEC sp_OAMethod @jResp, 'IntOf', @DeviceMinutesTotal OUT, 'run.deviceMinutes.total'
    DECLARE @Unmetered int
    EXEC sp_OAMethod @jResp, 'IntOf', @Unmetered OUT, 'run.deviceMinutes.unmetered'
    DECLARE @DevicePoolArn nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @DevicePoolArn OUT, 'run.devicePoolArn'
    DECLARE @MatchedDevicesCount int
    EXEC sp_OAMethod @jResp, 'IntOf', @MatchedDevicesCount OUT, 'run.deviceSelectionResult.matchedDevicesCount'
    DECLARE @MaxDevices int
    EXEC sp_OAMethod @jResp, 'IntOf', @MaxDevices OUT, 'run.deviceSelectionResult.maxDevices'
    DECLARE @EventCount int
    EXEC sp_OAMethod @jResp, 'IntOf', @EventCount OUT, 'run.eventCount'
    DECLARE @JobTimeoutMinutes int
    EXEC sp_OAMethod @jResp, 'IntOf', @JobTimeoutMinutes OUT, 'run.jobTimeoutMinutes'
    DECLARE @Locale nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Locale OUT, 'run.locale'
    DECLARE @Latitude int
    EXEC sp_OAMethod @jResp, 'IntOf', @Latitude OUT, 'run.location.latitude'
    DECLARE @Longitude int
    EXEC sp_OAMethod @jResp, 'IntOf', @Longitude OUT, 'run.location.longitude'
    DECLARE @Message nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Message OUT, 'run.message'
    DECLARE @Name nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Name OUT, 'run.name'
    DECLARE @NetworkProfileArn nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @NetworkProfileArn OUT, 'run.networkProfile.arn'
    DECLARE @Description nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Description OUT, 'run.networkProfile.description'
    DECLARE @DownlinkBandwidthBits int
    EXEC sp_OAMethod @jResp, 'IntOf', @DownlinkBandwidthBits OUT, 'run.networkProfile.downlinkBandwidthBits'
    DECLARE @DownlinkDelayMs int
    EXEC sp_OAMethod @jResp, 'IntOf', @DownlinkDelayMs OUT, 'run.networkProfile.downlinkDelayMs'
    DECLARE @DownlinkJitterMs int
    EXEC sp_OAMethod @jResp, 'IntOf', @DownlinkJitterMs OUT, 'run.networkProfile.downlinkJitterMs'
    DECLARE @DownlinkLossPercent int
    EXEC sp_OAMethod @jResp, 'IntOf', @DownlinkLossPercent OUT, 'run.networkProfile.downlinkLossPercent'
    DECLARE @NetworkProfileName nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @NetworkProfileName OUT, 'run.networkProfile.name'
    DECLARE @v_Type nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @v_Type OUT, 'run.networkProfile.type'
    DECLARE @UplinkBandwidthBits int
    EXEC sp_OAMethod @jResp, 'IntOf', @UplinkBandwidthBits OUT, 'run.networkProfile.uplinkBandwidthBits'
    DECLARE @UplinkDelayMs int
    EXEC sp_OAMethod @jResp, 'IntOf', @UplinkDelayMs OUT, 'run.networkProfile.uplinkDelayMs'
    DECLARE @UplinkJitterMs int
    EXEC sp_OAMethod @jResp, 'IntOf', @UplinkJitterMs OUT, 'run.networkProfile.uplinkJitterMs'
    DECLARE @UplinkLossPercent int
    EXEC sp_OAMethod @jResp, 'IntOf', @UplinkLossPercent OUT, 'run.networkProfile.uplinkLossPercent'
    DECLARE @ParsingResultUrl nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @ParsingResultUrl OUT, 'run.parsingResultUrl'
    DECLARE @Platform nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Platform OUT, 'run.platform'
    DECLARE @Bluetooth int
    EXEC sp_OAMethod @jResp, 'IntOf', @Bluetooth OUT, 'run.radios.bluetooth'
    DECLARE @Gps int
    EXEC sp_OAMethod @jResp, 'IntOf', @Gps OUT, 'run.radios.gps'
    DECLARE @Nfc int
    EXEC sp_OAMethod @jResp, 'IntOf', @Nfc OUT, 'run.radios.nfc'
    DECLARE @Wifi int
    EXEC sp_OAMethod @jResp, 'IntOf', @Wifi OUT, 'run.radios.wifi'
    DECLARE @Result nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Result OUT, 'run.result'
    DECLARE @ResultCode nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @ResultCode OUT, 'run.resultCode'
    DECLARE @Seed int
    EXEC sp_OAMethod @jResp, 'IntOf', @Seed OUT, 'run.seed'
    DECLARE @SkipAppResign int
    EXEC sp_OAMethod @jResp, 'IntOf', @SkipAppResign OUT, 'run.skipAppResign'
    DECLARE @Started int
    EXEC sp_OAMethod @jResp, 'IntOf', @Started OUT, 'run.started'
    DECLARE @Status nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @Status OUT, 'run.status'
    DECLARE @runStopped int
    EXEC sp_OAMethod @jResp, 'IntOf', @runStopped OUT, 'run.stopped'
    DECLARE @TestSpecArn nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @TestSpecArn OUT, 'run.testSpecArn'
    DECLARE @TotalJobs int
    EXEC sp_OAMethod @jResp, 'IntOf', @TotalJobs OUT, 'run.totalJobs'
    DECLARE @runType nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @runType OUT, 'run.type'
    DECLARE @WebUrl nvarchar(max)
    EXEC sp_OAMethod @jResp, 'StringOf', @WebUrl OUT, 'run.webUrl'
    DECLARE @i int
    SELECT @i = 0
    DECLARE @count_i int
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'run.customerArtifactPaths.androidPaths'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'run.customerArtifactPaths.androidPaths[i]'
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'run.customerArtifactPaths.deviceHostPaths'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'run.customerArtifactPaths.deviceHostPaths[i]'
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'run.customerArtifactPaths.iosPaths'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'run.customerArtifactPaths.iosPaths[i]'
        SELECT @i = @i + 1
      END
    SELECT @i = 0
    EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'run.deviceSelectionResult.filters'
    WHILE @i < @count_i
      BEGIN
        EXEC sp_OASetProperty @jResp, 'I', @i
        EXEC sp_OAMethod @jResp, 'StringOf', @attribute OUT, 'run.deviceSelectionResult.filters[i].attribute'
        EXEC sp_OAMethod @jResp, 'StringOf', @operator OUT, 'run.deviceSelectionResult.filters[i].operator'
        SELECT @j = 0
        EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'run.deviceSelectionResult.filters[i].values'
        WHILE @j < @count_j
          BEGIN
            EXEC sp_OASetProperty @jResp, 'J', @j
            EXEC sp_OAMethod @jResp, 'StringOf', @strVal OUT, 'run.deviceSelectionResult.filters[i].values[j]'
            SELECT @j = @j + 1
          END
        SELECT @i = @i + 1
      END

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

    -- {
    --   "run": {
    --     "appUpload": "string",
    --     "arn": "string",
    --     "billingMethod": "string",
    --     "completedJobs": number,
    --     "counters": {
    --       "errored": number,
    --       "failed": number,
    --       "passed": number,
    --       "skipped": number,
    --       "stopped": number,
    --       "total": number,
    --       "warned": number
    --     },
    --     "created": number,
    --     "customerArtifactPaths": {
    --       "androidPaths": [
    --         "string"
    --       ],
    --       "deviceHostPaths": [
    --         "string"
    --       ],
    --       "iosPaths": [
    --         "string"
    --       ]
    --     },
    --     "deviceMinutes": {
    --       "metered": number,
    --       "total": number,
    --       "unmetered": number
    --     },
    --     "devicePoolArn": "string",
    --     "deviceSelectionResult": {
    --       "filters": [
    --         {
    --           "attribute": "string",
    --           "operator": "string",
    --           "values": [
    --             "string"
    --           ]
    --         }
    --       ],
    --       "matchedDevicesCount": number,
    --       "maxDevices": number
    --     },
    --     "eventCount": number,
    --     "jobTimeoutMinutes": number,
    --     "locale": "string",
    --     "location": {
    --       "latitude": number,
    --       "longitude": number
    --     },
    --     "message": "string",
    --     "name": "string",
    --     "networkProfile": {
    --       "arn": "string",
    --       "description": "string",
    --       "downlinkBandwidthBits": number,
    --       "downlinkDelayMs": number,
    --       "downlinkJitterMs": number,
    --       "downlinkLossPercent": number,
    --       "name": "string",
    --       "type": "string",
    --       "uplinkBandwidthBits": number,
    --       "uplinkDelayMs": number,
    --       "uplinkJitterMs": number,
    --       "uplinkLossPercent": number
    --     },
    --     "parsingResultUrl": "string",
    --     "platform": "string",
    --     "radios": {
    --       "bluetooth": boolean,
    --       "gps": boolean,
    --       "nfc": boolean,
    --       "wifi": boolean
    --     },
    --     "result": "string",
    --     "resultCode": "string",
    --     "seed": number,
    --     "skipAppResign": boolean,
    --     "started": number,
    --     "status": "string",
    --     "stopped": number,
    --     "testSpecArn": "string",
    --     "totalJobs": number,
    --     "type": "string",
    --     "webUrl": "string"
    --   }
    -- }

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


END
GO