Skip to content

Commit

Permalink
Update services based on release-2024-12-13 of AWS Go SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Dec 14, 2024
1 parent fa608e9 commit f837703
Show file tree
Hide file tree
Showing 6 changed files with 169 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .latest-tag-aws-sdk-go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release-2024-12-12
release-2024-12-13
10 changes: 10 additions & 0 deletions src/aws_cloudhsm_v2.erl
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@
%% }
-type delete_hsm_response() :: #{binary() => any()}.

%% Example:
%% cloud_hsm_resource_limit_exceeded_exception() :: #{
%% <<"Message">> => string()
%% }
-type cloud_hsm_resource_limit_exceeded_exception() :: #{binary() => any()}.

%% Example:
%% modify_cluster_response() :: #{
%% <<"Cluster">> => cluster()
Expand All @@ -171,6 +177,7 @@
%% <<"BackupRetentionPolicy">> => backup_retention_policy(),
%% <<"HsmType">> := string(),
%% <<"Mode">> => list(any()),
%% <<"NetworkType">> => list(any()),
%% <<"SourceBackupId">> => string(),
%% <<"SubnetIds">> := list(string()()),
%% <<"TagList">> => list(tag()())
Expand Down Expand Up @@ -204,6 +211,7 @@
%% <<"HsmType">> => string(),
%% <<"Hsms">> => list(hsm()()),
%% <<"Mode">> => list(any()),
%% <<"NetworkType">> => list(any()),
%% <<"PreCoPassword">> => string(),
%% <<"SecurityGroup">> => string(),
%% <<"SourceBackupId">> => string(),
Expand Down Expand Up @@ -313,6 +321,7 @@
%% <<"ClusterId">> => string(),
%% <<"EniId">> => string(),
%% <<"EniIp">> => string(),
%% <<"EniIpV6">> => string(),
%% <<"HsmId">> => string(),
%% <<"State">> => list(any()),
%% <<"StateMessage">> => string(),
Expand Down Expand Up @@ -540,6 +549,7 @@
cloud_hsm_service_exception() |
cloud_hsm_invalid_request_exception() |
cloud_hsm_internal_failure_exception() |
cloud_hsm_resource_limit_exceeded_exception() |
cloud_hsm_access_denied_exception() |
cloud_hsm_resource_not_found_exception().

Expand Down
20 changes: 14 additions & 6 deletions src/aws_ec2.erl
Original file line number Diff line number Diff line change
Expand Up @@ -7195,6 +7195,13 @@
%% }
-type associate_capacity_reservation_billing_owner_result() :: #{binary() => any()}.

%% Example:
%% delete_security_group_result() :: #{
%% <<"GroupId">> => string(),
%% <<"Return">> => boolean()
%% }
-type delete_security_group_result() :: #{binary() => any()}.

%% Example:
%% modify_instance_network_performance_result() :: #{
%% <<"BandwidthWeighting">> => list(any()),
Expand Down Expand Up @@ -24356,14 +24363,14 @@ delete_route_table(Client, Input, Options)
%% association, the operation fails with
%% `DependencyViolation'.
-spec delete_security_group(aws_client:aws_client(), delete_security_group_request()) ->
{ok, undefined, tuple()} |
{ok, delete_security_group_result(), tuple()} |
{error, any()}.
delete_security_group(Client, Input)
when is_map(Client), is_map(Input) ->
delete_security_group(Client, Input, []).

-spec delete_security_group(aws_client:aws_client(), delete_security_group_request(), proplists:proplist()) ->
{ok, undefined, tuple()} |
{ok, delete_security_group_result(), tuple()} |
{error, any()}.
delete_security_group(Client, Input, Options)
when is_map(Client), is_map(Input), is_list(Options) ->
Expand Down Expand Up @@ -35104,10 +35111,11 @@ send_diagnostic_interrupt(Client, Input, Options)
%%
%% An S3 bucket must be available before generating the report (you can
%% create a
%% new one or use an existing one), and it must have an appropriate bucket
%% policy.
%% For a sample S3 policy, see Sample Amazon S3 policy under
%% .
%% new one or use an existing one), it must be in the same Region where the
%% report
%% generation request is made, and it must have an appropriate bucket policy.
%% For a
%% sample S3 policy, see Sample Amazon S3 policy under .
%%
%% Trusted access must be enabled for the service for which the declarative
%% policy will enforce a baseline configuration. If you use the Amazon Web
Expand Down
10 changes: 10 additions & 0 deletions src/aws_eks.erl
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@
%% <<"instanceTypes">> => list(string()()),
%% <<"labels">> => map(),
%% <<"launchTemplate">> => launch_template_specification(),
%% <<"nodeRepairConfig">> => node_repair_config(),
%% <<"nodeRole">> := string(),
%% <<"nodegroupName">> := string(),
%% <<"releaseVersion">> => string(),
Expand Down Expand Up @@ -355,6 +356,7 @@
%% update_nodegroup_config_request() :: #{
%% <<"clientRequestToken">> => string(),
%% <<"labels">> => update_labels_payload(),
%% <<"nodeRepairConfig">> => node_repair_config(),
%% <<"scalingConfig">> => nodegroup_scaling_config(),
%% <<"taints">> => update_taints_payload(),
%% <<"updateConfig">> => nodegroup_update_config()
Expand Down Expand Up @@ -520,6 +522,7 @@
%% <<"labels">> => map(),
%% <<"launchTemplate">> => launch_template_specification(),
%% <<"modifiedAt">> => non_neg_integer(),
%% <<"nodeRepairConfig">> => node_repair_config(),
%% <<"nodeRole">> => string(),
%% <<"nodegroupArn">> => string(),
%% <<"nodegroupName">> => string(),
Expand Down Expand Up @@ -1209,6 +1212,13 @@
%% }
-type list_fargate_profiles_response() :: #{binary() => any()}.


%% Example:
%% node_repair_config() :: #{
%% <<"enabled">> => boolean()
%% }
-type node_repair_config() :: #{binary() => any()}.

%% Example:
%% delete_fargate_profile_request() :: #{}
-type delete_fargate_profile_request() :: #{}.
Expand Down
10 changes: 10 additions & 0 deletions src/aws_mediaconnect.erl
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,7 @@
%% Example:
%% add_bridge_network_source_request() :: #{
%% <<"MulticastIp">> => string(),
%% <<"MulticastSourceSettings">> => multicast_source_settings(),
%% <<"Name">> => string(),
%% <<"NetworkName">> => string(),
%% <<"Port">> => integer(),
Expand All @@ -892,6 +893,13 @@
-type describe_flow_request() :: #{}.


%% Example:
%% multicast_source_settings() :: #{
%% <<"MulticastSourceIp">> => string()
%% }
-type multicast_source_settings() :: #{binary() => any()}.


%% Example:
%% start_flow_response() :: #{
%% <<"FlowArn">> => string(),
Expand Down Expand Up @@ -1093,6 +1101,7 @@
%% Example:
%% bridge_network_source() :: #{
%% <<"MulticastIp">> => string(),
%% <<"MulticastSourceSettings">> => multicast_source_settings(),
%% <<"Name">> => string(),
%% <<"NetworkName">> => string(),
%% <<"Port">> => integer(),
Expand Down Expand Up @@ -1245,6 +1254,7 @@
%% Example:
%% update_bridge_network_source_request() :: #{
%% <<"MulticastIp">> => string(),
%% <<"MulticastSourceSettings">> => multicast_source_settings(),
%% <<"NetworkName">> => string(),
%% <<"Port">> => integer(),
%% <<"Protocol">> => list(any())
Expand Down
Loading

0 comments on commit f837703

Please sign in to comment.