Skip to content

Commit

Permalink
Version 0.7.0: AWS Rekognition
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandgraf committed Sep 3, 2021
1 parent 89a44f7 commit cae2bac
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 12 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ The **AWS SDK for Delphi** enables Delphi developers to easily work with [Amazon

This is the list of AWS services currently supported by the SDK. More will be added over time:

* [Amazon Polly: Text To Speech](https://aws.amazon.com/polly/)
* [Amazon Lex: Conversational AI for Chatbox](https://aws.amazon.com/lex/)
* [Amazon Rekognition: Image and Video Analysis](https://aws.amazon.com/rekognition/)
* [Amazon SES: Simple Email Service API (Classic)](https://aws.amazon.com/ses/)
* [Amazon SES V2: Simple Email Service API v2](https://aws.amazon.com/ses/)
* [Amazon SQS: Simple Queue Service](https://aws.amazon.com/sqs/)
* [Amazon SNS: Simple Notification Service](#amazon-sns)
* [Amazon Polly: Text To Speech](https://aws.amazon.com/polly/)
* [Amazon Lex: Conversational AI for Chatbox](https://aws.amazon.com/lex/)
* [Amazon SQS: Simple Queue Service](https://aws.amazon.com/sqs/)
* [Amazon Translate: Text Translation](http:https://aws.amazon.com/translate/)

## Bug report and feature requests
Expand Down
2 changes: 1 addition & 1 deletion Source/Services/Lex/Base/AWS.LexRuntimeService.Config.pas
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonLexConfig.GetRegionEndpointServiceName: string;

class constructor TAmazonLexConfig.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonLexConfig.GetUserAgent: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonLexRuntimeV2Config.GetRegionEndpointServiceName: string;

class constructor TAmazonLexRuntimeV2Config.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonLexRuntimeV2Config.GetUserAgent: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Services/Polly/Base/AWS.Polly.Config.pas
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonPollyConfig.GetRegionEndpointServiceName: string;

class constructor TAmazonPollyConfig.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonPollyConfig.GetUserAgent: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonRekognitionConfig.GetRegionEndpointServiceName: string;

class constructor TAmazonRekognitionConfig.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonRekognitionConfig.GetUserAgent: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Services/SQS/Base/AWS.SQS.Config.pas
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonSQSConfig.GetRegionEndpointServiceName: string;

class constructor TAmazonSQSConfig.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonSQSConfig.GetUserAgent: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Services/SimpleEmail/Base/AWS.SES.Config.pas
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonSimpleEmailServiceConfig.GetRegionEndpointServiceName: string;

class constructor TAmazonSimpleEmailServiceConfig.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonSimpleEmailServiceConfig.GetUserAgent: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Services/SimpleEmailV2/Base/AWS.SESv2.Config.pas
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonSimpleEmailServiceV2Config.GetRegionEndpointServiceName: string;

class constructor TAmazonSimpleEmailServiceV2Config.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonSimpleEmailServiceV2Config.GetUserAgent: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonSimpleNotificationServiceConfig.GetRegionEndpointServiceName: st

class constructor TAmazonSimpleNotificationServiceConfig.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonSimpleNotificationServiceConfig.GetUserAgent: string;
Expand Down
2 changes: 1 addition & 1 deletion Source/Services/Translate/Base/AWS.Translate.Config.pas
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function TAmazonTranslateConfig.GetRegionEndpointServiceName: string;

class constructor TAmazonTranslateConfig.Create;
begin
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.6.0.0');
FUserAgent := TInternalSDKUtils.BuildUserAgentString('0.7.0.0');
end;

function TAmazonTranslateConfig.GetUserAgent: string;
Expand Down

0 comments on commit cae2bac

Please sign in to comment.