Delphi DLL
Delphi DLL
AWS Secrets Manager - List Secrets
See more AWS Secrets Manager Examples
Lists the secrets that are stored by Secrets Manager in the AWS account. Lists the secrets that are stored by Secrets Manager in the AWS account.Chilkat Delphi DLL Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, JsonArray, AuthAws, Rest, JsonObject;
...
procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
rest: HCkRest;
bTls: Boolean;
port: Integer;
bAutoReconnect: Boolean;
authAws: HCkAuthAws;
strResponse: PWideChar;
respStatusCode: Integer;
jResp: HCkJsonObject;
ARN: PWideChar;
Description: PWideChar;
LastChangedDate: PWideChar;
Name: PWideChar;
strVal: PWideChar;
json2: HCkJsonObject;
jarr: HCkJsonArray;
i: Integer;
count_i: Integer;
count: Integer;
j: Integer;
versionName: PWideChar;
stage: PWideChar;
begin
success := False;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// Sends the following sample request.
// Note: Chilkat will automatically add Content-Length, X-Amz-Date, Accept-Encoding, and Authorization
// POST / HTTP/1.1
// Host: secretsmanager.region.domain
// Accept-Encoding: identity
// X-Amz-Target: secretsmanager.ListSecrets
// Content-Type: application/x-amz-json-1.1
// X-Amz-Date: <date>
// Authorization: AWS4-HMAC-SHA256 Credential=<credentials>,SignedHeaders=<headers>, Signature=<signature>
// Content-Length: <payload-size-bytes>
//
// {}
rest := CkRest_Create();
// Connect to the Amazon AWS REST server.
// such as https://secretsmanager.us-west-2.amazonaws.com/
bTls := True;
port := 443;
bAutoReconnect := True;
success := CkRest_Connect(rest,'secretsmanager.us-west-2.amazonaws.com',port,bTls,bAutoReconnect);
// Provide AWS credentials for the REST call.
authAws := CkAuthAws_Create();
CkAuthAws_putAccessKey(authAws,'AWS_ACCESS_KEY');
CkAuthAws_putSecretKey(authAws,'AWS_SECRET_KEY');
// the region should match our URL above..
CkAuthAws_putRegion(authAws,'us-west-2');
CkAuthAws_putServiceName(authAws,'secretsmanager');
CkRest_SetAuthAws(rest,authAws);
CkRest_AddHeader(rest,'Content-Type','application/x-amz-json-1.1');
CkRest_AddHeader(rest,'X-Amz-Target','secretsmanager.ListSecrets');
strResponse := CkRest__fullRequestString(rest,'POST','/','{}');
if (CkRest_getLastMethodSuccess(rest) = False) then
begin
Memo1.Lines.Add(CkRest__lastErrorText(rest));
Exit;
end;
respStatusCode := CkRest_getResponseStatusCode(rest);
Memo1.Lines.Add('response status code = ' + IntToStr(respStatusCode));
jResp := CkJsonObject_Create();
CkJsonObject_putEmitCompact(jResp,False);
CkJsonObject_Load(jResp,strResponse);
if (respStatusCode >= 400) then
begin
Memo1.Lines.Add('Response Status Code = ' + IntToStr(respStatusCode));
Memo1.Lines.Add('Response Header:');
Memo1.Lines.Add(CkRest__responseHeader(rest));
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));
Exit;
end;
Memo1.Lines.Add('Response Body:');
Memo1.Lines.Add(CkJsonObject__emit(jResp));
// Sample response body:
// {
// "SecretList":[
// {
// "ARN":"arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestDatabaseSecret-a1b2c3",
// "Description":"My test database secret",
// "LastChangedDate":1.523477145729E9,
// "Name":"MyTestDatabaseSecret",
// "SecretVersionsToStages":{
// "EXAMPLE2-90ab-cdef-fedc-ba987EXAMPLE":["AWSCURRENT"]
// }
// },
// {
// "ARN":"arn:aws:secretsmanager:us-west-2:123456789012:secret:AnotherDatabaseSecret-d4e5f6",
// "Description":"Another secret created for a different database",
// "LastChangedDate":1.523482025685E9,
// "Name":"AnotherDatabaseSecret",
// "SecretVersionsToStages":{
// "EXAMPLE3-90ab-cdef-fedc-ba987EXAMPLE":["AWSCURRENT"]
// }
// }
// ]
// }
json2 := CkJsonObject_Create();
jarr := CkJsonArray_Create();
i := 0;
count_i := CkJsonObject_SizeOfArray(jResp,'SecretList');
while i < count_i do
begin
CkJsonObject_putI(jResp,i);
ARN := CkJsonObject__stringOf(jResp,'SecretList[i].ARN');
Description := CkJsonObject__stringOf(jResp,'SecretList[i].Description');
LastChangedDate := CkJsonObject__stringOf(jResp,'SecretList[i].LastChangedDate');
Name := CkJsonObject__stringOf(jResp,'SecretList[i].Name');
CkJsonObject_ObjectOf2(jResp,'SecretList[i].SecretVersionsToStages',json2);
count := CkJsonObject_getSize(json2);
j := 0;
while j < count do
begin
versionName := CkJsonObject__nameAt(json2,j);
CkJsonObject_ArrayOf2(json2,versionName,jarr);
stage := CkJsonArray__stringAt(jarr,0);
Memo1.Lines.Add('versionName = ' + versionName);
Memo1.Lines.Add('stage = ' + stage);
j := j + 1;
end;
i := i + 1;
end;
CkRest_Dispose(rest);
CkAuthAws_Dispose(authAws);
CkJsonObject_Dispose(jResp);
CkJsonObject_Dispose(json2);
CkJsonArray_Dispose(jarr);
end;