Skip to content

Commit

Permalink
Update services based on release-2024-06-05 of AWS Go SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Jun 6, 2024
1 parent 448bfd5 commit 3a18b7e
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 5 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-06-04
release-2024-06-05
2 changes: 2 additions & 0 deletions lib/aws/generated/global_accelerator.ex
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ defmodule AWS.GlobalAccelerator do
update_accelerator_request() :: %{
optional("Enabled") => boolean(),
optional("IpAddressType") => list(any()),
optional("IpAddresses") => list(String.t()()),
optional("Name") => String.t(),
required("AcceleratorArn") => String.t()
}
Expand Down Expand Up @@ -1309,6 +1310,7 @@ defmodule AWS.GlobalAccelerator do
update_custom_routing_accelerator_request() :: %{
optional("Enabled") => boolean(),
optional("IpAddressType") => list(any()),
optional("IpAddresses") => list(String.t()()),
optional("Name") => String.t(),
required("AcceleratorArn") => String.t()
}
Expand Down
95 changes: 91 additions & 4 deletions lib/aws/generated/glue.ex
Original file line number Diff line number Diff line change
Expand Up @@ -1582,6 +1582,19 @@ defmodule AWS.Glue do

@typedoc """
## Example:
authentication_configuration_input() :: %{
"AuthenticationType" => list(any()),
"OAuth2Properties" => o_auth2_properties_input(),
"SecretArn" => String.t()
}
"""
@type authentication_configuration_input() :: %{String.t() => any()}

@typedoc """
## Example:
task_run_filter_criteria() :: %{
Expand Down Expand Up @@ -1713,6 +1726,18 @@ defmodule AWS.Glue do

@typedoc """
## Example:
authorization_code_properties() :: %{
"AuthorizationCode" => String.t(),
"RedirectUri" => String.t()
}
"""
@type authorization_code_properties() :: %{String.t() => any()}

@typedoc """
## Example:
event_batching_condition() :: %{
Expand Down Expand Up @@ -3641,6 +3666,18 @@ defmodule AWS.Glue do

@typedoc """
## Example:
o_auth2_client_application() :: %{
"AWSManagedClientApplicationReference" => String.t(),
"UserManagedClientApplicationClientId" => String.t()
}
"""
@type o_auth2_client_application() :: %{String.t() => any()}

@typedoc """
## Example:
register_schema_version_response() :: %{
Expand Down Expand Up @@ -4762,15 +4799,19 @@ defmodule AWS.Glue do
## Example:
connection() :: %{
"AuthenticationConfiguration" => authentication_configuration(),
"ConnectionProperties" => map(),
"ConnectionType" => list(any()),
"CreationTime" => non_neg_integer(),
"Description" => String.t(),
"LastConnectionValidationTime" => non_neg_integer(),
"LastUpdatedBy" => String.t(),
"LastUpdatedTime" => non_neg_integer(),
"MatchCriteria" => list(String.t()()),
"Name" => String.t(),
"PhysicalConnectionRequirements" => physical_connection_requirements()
"PhysicalConnectionRequirements" => physical_connection_requirements(),
"Status" => list(any()),
"StatusReason" => String.t()
}
"""
Expand Down Expand Up @@ -6691,12 +6732,14 @@ defmodule AWS.Glue do
## Example:
connection_input() :: %{
"AuthenticationConfiguration" => authentication_configuration_input(),
"ConnectionProperties" => map(),
"ConnectionType" => list(any()),
"Description" => String.t(),
"MatchCriteria" => list(String.t()()),
"Name" => String.t(),
"PhysicalConnectionRequirements" => physical_connection_requirements()
"PhysicalConnectionRequirements" => physical_connection_requirements(),
"ValidateCredentials" => boolean()
}
"""
Expand Down Expand Up @@ -8710,10 +8753,12 @@ defmodule AWS.Glue do
## Example:
create_connection_response() :: %{}
create_connection_response() :: %{
"CreateConnectionStatus" => list(any())
}
"""
@type create_connection_response() :: %{}
@type create_connection_response() :: %{String.t() => any()}

@typedoc """
Expand All @@ -8739,6 +8784,20 @@ defmodule AWS.Glue do

@typedoc """
## Example:
o_auth2_properties() :: %{
"OAuth2ClientApplication" => o_auth2_client_application(),
"OAuth2GrantType" => list(any()),
"TokenUrl" => String.t(),
"TokenUrlParametersMap" => map()
}
"""
@type o_auth2_properties() :: %{String.t() => any()}

@typedoc """
## Example:
list_dev_endpoints_response() :: %{
Expand Down Expand Up @@ -9107,6 +9166,34 @@ defmodule AWS.Glue do

@typedoc """
## Example:
o_auth2_properties_input() :: %{
"AuthorizationCodeProperties" => authorization_code_properties(),
"OAuth2ClientApplication" => o_auth2_client_application(),
"OAuth2GrantType" => list(any()),
"TokenUrl" => String.t(),
"TokenUrlParametersMap" => map()
}
"""
@type o_auth2_properties_input() :: %{String.t() => any()}

@typedoc """
## Example:
authentication_configuration() :: %{
"AuthenticationType" => list(any()),
"OAuth2Properties" => o_auth2_properties(),
"SecretArn" => String.t()
}
"""
@type authentication_configuration() :: %{String.t() => any()}

@typedoc """
## Example:
update_classifier_request() :: %{
Expand Down

0 comments on commit 3a18b7e

Please sign in to comment.