Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Amazon Voice ID - Describe DomainSee more Amazon Voice ID ExamplesDescribes the specified domain. For more information, see https://docs.aws.amazon.com/voiceid/latest/APIReference/API_DescribeDomain.html
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int DECLARE @iTmp0 int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) -- This example requires the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. DECLARE @rest int -- Use "Chilkat_9_5_0.Rest" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Rest', @rest OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @success int DECLARE @authAws int -- Use "Chilkat_9_5_0.AuthAws" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.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', 'voiceid' -- SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date EXEC sp_OAMethod @rest, 'SetAuthAws', @success OUT, @authAws -- URL: https://voiceid.us-west-2.amazonaws.com/ DECLARE @bTls int SELECT @bTls = 1 DECLARE @port int SELECT @port = 443 DECLARE @bAutoReconnect int SELECT @bAutoReconnect = 1 -- Use the same region as specified above. EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'voiceid.us-west-2.amazonaws.com', @port, @bTls, @bAutoReconnect 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 -- Use this online tool to generate code from sample JSON: -- Generate Code to Create JSON -- The following JSON is sent in the request body. -- { -- "DomainId": "<domainId>" -- } -- DECLARE @json int -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'DomainId', '<domainId>' EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Content-Type', 'application/x-amz-json-1.0' EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'X-Amz-Target', 'VoiceID.DescribeDomain' EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Accept-Encoding', 'identity' DECLARE @sbRequestBody int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbRequestBody OUT EXEC sp_OAMethod @json, 'EmitSb', @success OUT, @sbRequestBody DECLARE @sbResponseBody int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.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 Status Code = ' + @respStatusCode 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 @jsonResponse int -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jsonResponse OUT EXEC sp_OAMethod @jsonResponse, 'LoadSb', @success OUT, @sbResponseBody EXEC sp_OASetProperty @jsonResponse, 'EmitCompact', 0 EXEC sp_OAMethod @jsonResponse, 'Emit', @sTmp0 OUT PRINT @sTmp0 -- If successful, the response status code is 200, and the response syntax: -- { -- "Domain": { -- "Arn": "string", -- "CreatedAt": number, -- "Description": "string", -- "DomainId": "string", -- "DomainStatus": "string", -- "Name": "string", -- "ServerSideEncryptionConfiguration": { -- "KmsKeyId": "string" -- }, -- "UpdatedAt": number -- } -- } DECLARE @DomainArn nvarchar(4000) EXEC sp_OAMethod @jsonResponse, 'StringOf', @DomainArn OUT, 'Domain.Arn' DECLARE @DomainCreatedAt int EXEC sp_OAMethod @jsonResponse, 'IntOf', @DomainCreatedAt OUT, 'Domain.CreatedAt' DECLARE @DomainDescription nvarchar(4000) EXEC sp_OAMethod @jsonResponse, 'StringOf', @DomainDescription OUT, 'Domain.Description' DECLARE @DomainDomainId nvarchar(4000) EXEC sp_OAMethod @jsonResponse, 'StringOf', @DomainDomainId OUT, 'Domain.DomainId' DECLARE @DomainDomainStatus nvarchar(4000) EXEC sp_OAMethod @jsonResponse, 'StringOf', @DomainDomainStatus OUT, 'Domain.DomainStatus' DECLARE @DomainName nvarchar(4000) EXEC sp_OAMethod @jsonResponse, 'StringOf', @DomainName OUT, 'Domain.Name' DECLARE @DomainServerSideEncryptionConfigurationKmsKeyId nvarchar(4000) EXEC sp_OAMethod @jsonResponse, 'StringOf', @DomainServerSideEncryptionConfigurationKmsKeyId OUT, 'Domain.ServerSideEncryptionConfiguration.KmsKeyId' DECLARE @DomainUpdatedAt int EXEC sp_OAMethod @jsonResponse, 'IntOf', @DomainUpdatedAt OUT, 'Domain.UpdatedAt' 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 @jsonResponse END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.