aws-sdk-gamelift 1.76.0 → 1.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-gamelift/client.rb +1081 -332
- data/lib/aws-sdk-gamelift/client_api.rb +292 -0
- data/lib/aws-sdk-gamelift/endpoints.rb +56 -0
- data/lib/aws-sdk-gamelift/errors.rb +16 -0
- data/lib/aws-sdk-gamelift/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-gamelift/types.rb +1551 -192
- data/lib/aws-sdk-gamelift.rb +1 -1
- data/sig/client.rbs +104 -2
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +198 -2
- metadata +4 -4
@@ -66,6 +66,8 @@ module Aws::GameLift
|
|
66
66
|
Aws::GameLift::Endpoints::CreateAlias.build(context)
|
67
67
|
when :create_build
|
68
68
|
Aws::GameLift::Endpoints::CreateBuild.build(context)
|
69
|
+
when :create_container_group_definition
|
70
|
+
Aws::GameLift::Endpoints::CreateContainerGroupDefinition.build(context)
|
69
71
|
when :create_fleet
|
70
72
|
Aws::GameLift::Endpoints::CreateFleet.build(context)
|
71
73
|
when :create_fleet_locations
|
@@ -96,6 +98,8 @@ module Aws::GameLift
|
|
96
98
|
Aws::GameLift::Endpoints::DeleteAlias.build(context)
|
97
99
|
when :delete_build
|
98
100
|
Aws::GameLift::Endpoints::DeleteBuild.build(context)
|
101
|
+
when :delete_container_group_definition
|
102
|
+
Aws::GameLift::Endpoints::DeleteContainerGroupDefinition.build(context)
|
99
103
|
when :delete_fleet
|
100
104
|
Aws::GameLift::Endpoints::DeleteFleet.build(context)
|
101
105
|
when :delete_fleet_locations
|
@@ -128,6 +132,8 @@ module Aws::GameLift
|
|
128
132
|
Aws::GameLift::Endpoints::DescribeBuild.build(context)
|
129
133
|
when :describe_compute
|
130
134
|
Aws::GameLift::Endpoints::DescribeCompute.build(context)
|
135
|
+
when :describe_container_group_definition
|
136
|
+
Aws::GameLift::Endpoints::DescribeContainerGroupDefinition.build(context)
|
131
137
|
when :describe_ec2_instance_limits
|
132
138
|
Aws::GameLift::Endpoints::DescribeEC2InstanceLimits.build(context)
|
133
139
|
when :describe_fleet_attributes
|
@@ -194,6 +200,8 @@ module Aws::GameLift
|
|
194
200
|
Aws::GameLift::Endpoints::ListBuilds.build(context)
|
195
201
|
when :list_compute
|
196
202
|
Aws::GameLift::Endpoints::ListCompute.build(context)
|
203
|
+
when :list_container_group_definitions
|
204
|
+
Aws::GameLift::Endpoints::ListContainerGroupDefinitions.build(context)
|
197
205
|
when :list_fleets
|
198
206
|
Aws::GameLift::Endpoints::ListFleets.build(context)
|
199
207
|
when :list_game_server_groups
|