From 2cb1b4d343376d37f93300f9513e8dc0e217a719 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 21 Feb 2024 01:30:57 +0000 Subject: [PATCH] Update services based on v1.50.22 of AWS Go SDK Reference: https://github.com/aws/aws-sdk-go/releases/tag/v1.50.22 --- .latest-tag-aws-sdk-go | 2 +- src/aws_dynamodb.erl | 9 +++++---- src/aws_firehose.erl | 22 +--------------------- 3 files changed, 7 insertions(+), 26 deletions(-) diff --git a/.latest-tag-aws-sdk-go b/.latest-tag-aws-sdk-go index d36bba09..69f82d56 100644 --- a/.latest-tag-aws-sdk-go +++ b/.latest-tag-aws-sdk-go @@ -1 +1 @@ -v1.50.21 +v1.50.22 diff --git a/src/aws_dynamodb.erl b/src/aws_dynamodb.erl index 183bc4af..5d1b367e 100644 --- a/src/aws_dynamodb.erl +++ b/src/aws_dynamodb.erl @@ -1419,11 +1419,12 @@ update_kinesis_streaming_destination(Client, Input, Options) %% index begins backfilling, you can use `UpdateTable' to perform other %% operations. %% -%% `UpdateTable' is an asynchronous operation; while it is +%% `UpdateTable' is an asynchronous operation; while it's %% executing, the table status changes from `ACTIVE' to `UPDATING'. -%% While it is `UPDATING', you cannot issue another `UpdateTable' -%% request. When the table returns to the `ACTIVE' state, the -%% `UpdateTable' operation is complete. +%% While it's `UPDATING', you can't issue another +%% `UpdateTable' request on the base table nor any replicas. When the +%% table returns to the `ACTIVE' state, the `UpdateTable' operation +%% is complete. update_table(Client, Input) when is_map(Client), is_map(Input) -> update_table(Client, Input, []). diff --git a/src/aws_firehose.erl b/src/aws_firehose.erl index d29fb57c..81561734 100644 --- a/src/aws_firehose.erl +++ b/src/aws_firehose.erl @@ -15,8 +15,6 @@ delete_delivery_stream/3, describe_delivery_stream/2, describe_delivery_stream/3, - get_kinesis_stream/2, - get_kinesis_stream/3, list_delivery_streams/2, list_delivery_streams/3, list_tags_for_delivery_stream/2, @@ -34,9 +32,7 @@ untag_delivery_stream/2, untag_delivery_stream/3, update_destination/2, - update_destination/3, - verify_resources_exist_for_tagris/2, - verify_resources_exist_for_tagris/3]). + update_destination/3]). -include_lib("hackney/include/hackney_lib.hrl"). @@ -176,14 +172,6 @@ describe_delivery_stream(Client, Input, Options) when is_map(Client), is_map(Input), is_list(Options) -> request(Client, <<"DescribeDeliveryStream">>, Input, Options). - -get_kinesis_stream(Client, Input) - when is_map(Client), is_map(Input) -> - get_kinesis_stream(Client, Input, []). -get_kinesis_stream(Client, Input, Options) - when is_map(Client), is_map(Input), is_list(Options) -> - request(Client, <<"GetKinesisStream">>, Input, Options). - %% @doc Lists your delivery streams in alphabetical order of their names. %% %% The number of delivery streams might be too large to return using a single @@ -518,14 +506,6 @@ update_destination(Client, Input, Options) when is_map(Client), is_map(Input), is_list(Options) -> request(Client, <<"UpdateDestination">>, Input, Options). - -verify_resources_exist_for_tagris(Client, Input) - when is_map(Client), is_map(Input) -> - verify_resources_exist_for_tagris(Client, Input, []). -verify_resources_exist_for_tagris(Client, Input, Options) - when is_map(Client), is_map(Input), is_list(Options) -> - request(Client, <<"VerifyResourcesExistForTagris">>, Input, Options). - %%==================================================================== %% Internal functions %%====================================================================