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
(PowerBuilder) Amazon Glacier List Tags for VaultLists all the tags attached to a vault. The operation returns an empty map if there are no tags.
integer li_rc oleobject loo_Rest integer li_BTls integer li_Port integer li_BAutoReconnect integer li_Success oleobject loo_AuthAws oleobject loo_SbResponseBody integer li_RespStatusCode oleobject loo_Json oleobject loo_JTags integer li_NumTags integer i // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Rest = create oleobject li_rc = loo_Rest.ConnectToNewObject("Chilkat_9_5_0.Rest") if li_rc < 0 then destroy loo_Rest MessageBox("Error","Connecting to COM object failed") return end if // Connect to the Amazon AWS REST server in the desired region. li_BTls = 1 li_Port = 443 li_BAutoReconnect = 1 li_Success = loo_Rest.Connect("glacier.us-west-2.amazonaws.com",li_Port,li_BTls,li_BAutoReconnect) // Provide AWS credentials. loo_AuthAws = create oleobject li_rc = loo_AuthAws.ConnectToNewObject("Chilkat_9_5_0.AuthAws") loo_AuthAws.AccessKey = "AWS_ACCESS_KEY" loo_AuthAws.SecretKey = "AWS_SECRET_KEY" loo_AuthAws.ServiceName = "glacier" loo_AuthAws.Region = "us-west-2" li_Success = loo_Rest.SetAuthAws(loo_AuthAws) // -------------------------------------------------------------------------- // Note: The above REST connection and setup of the AWS credentials // can be done once. After connecting, any number of REST calls can be made. // The "auto reconnect" property passed to rest.Connect indicates that if // the connection is lost, a REST method call will automatically reconnect // if needed. // -------------------------------------------------------------------------- // // For more information, see Glacier List Tags for Vault Reference Documentation // loo_Rest.AddHeader("x-amz-glacier-version","2012-06-01") // Get the tags for the "chilkat" vault. loo_SbResponseBody = create oleobject li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder") li_Success = loo_Rest.FullRequestNoBodySb("GET","/AWS_ACCOUNT_ID/vaults/chilkat/tags",loo_SbResponseBody) if li_Success <> 1 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest destroy loo_AuthAws destroy loo_SbResponseBody return end if li_RespStatusCode = loo_Rest.ResponseStatusCode if li_RespStatusCode >= 400 then Write-Debug "Response Status Code = " + string(li_RespStatusCode) Write-Debug "Response Header:" Write-Debug loo_Rest.ResponseHeader Write-Debug "Response Body:" Write-Debug loo_SbResponseBody.GetAsString() destroy loo_Rest destroy loo_AuthAws destroy loo_SbResponseBody return end if // Success is indicated by a 200 response status with an empty response body. Write-Debug "response status code = " + string(li_RespStatusCode) loo_Json = create oleobject li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject") loo_Json.LoadSb(loo_SbResponseBody) loo_Json.EmitCompact = 0 Write-Debug loo_Json.Emit() Write-Debug "----" loo_JTags = loo_Json.ObjectOf("Tags") li_NumTags = loo_JTags.Size i = 0 do while i < li_NumTags Write-Debug loo_JTags.NameAt(i) + ": " + loo_JTags.StringAt(i) i = i + 1 loop destroy loo_JTags // Sample response // // { // "Tags": { // "tagName1": "tagValue1", // "tagName2": "tagValue2" // } // } destroy loo_Rest destroy loo_AuthAws destroy loo_SbResponseBody destroy loo_Json |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.