Skip to content

Commit

Permalink
Update services based on v1.50.22 of AWS Go SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Feb 21, 2024
1 parent e445c3a commit 2cb1b4d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .latest-tag-aws-sdk-go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.50.21
v1.50.22
9 changes: 5 additions & 4 deletions src/aws_dynamodb.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1419,11 +1419,12 @@ update_kinesis_streaming_destination(Client, Input, Options)
%% index begins backfilling, you can use `UpdateTable' to perform other
%% operations.
%%
%% </li> </ul> `UpdateTable' is an asynchronous operation; while it is
%% </li> </ul> `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, []).
Expand Down
22 changes: 1 addition & 21 deletions src/aws_firehose.erl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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").

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
%%====================================================================
Expand Down

0 comments on commit 2cb1b4d

Please sign in to comment.