aws-sdk-gamelift 1.75.0 → 1.77.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 +1012 -287
- 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 +9 -0
- data/lib/aws-sdk-gamelift/types.rb +1551 -192
- data/lib/aws-sdk-gamelift.rb +1 -1
- data/sig/client.rbs +1743 -0
- data/sig/errors.rbs +64 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +2159 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
@@ -14,6 +14,7 @@ module Aws::GameLift
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::GameLift::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -65,6 +66,8 @@ module Aws::GameLift
|
|
65
66
|
Aws::GameLift::Endpoints::CreateAlias.build(context)
|
66
67
|
when :create_build
|
67
68
|
Aws::GameLift::Endpoints::CreateBuild.build(context)
|
69
|
+
when :create_container_group_definition
|
70
|
+
Aws::GameLift::Endpoints::CreateContainerGroupDefinition.build(context)
|
68
71
|
when :create_fleet
|
69
72
|
Aws::GameLift::Endpoints::CreateFleet.build(context)
|
70
73
|
when :create_fleet_locations
|
@@ -95,6 +98,8 @@ module Aws::GameLift
|
|
95
98
|
Aws::GameLift::Endpoints::DeleteAlias.build(context)
|
96
99
|
when :delete_build
|
97
100
|
Aws::GameLift::Endpoints::DeleteBuild.build(context)
|
101
|
+
when :delete_container_group_definition
|
102
|
+
Aws::GameLift::Endpoints::DeleteContainerGroupDefinition.build(context)
|
98
103
|
when :delete_fleet
|
99
104
|
Aws::GameLift::Endpoints::DeleteFleet.build(context)
|
100
105
|
when :delete_fleet_locations
|
@@ -127,6 +132,8 @@ module Aws::GameLift
|
|
127
132
|
Aws::GameLift::Endpoints::DescribeBuild.build(context)
|
128
133
|
when :describe_compute
|
129
134
|
Aws::GameLift::Endpoints::DescribeCompute.build(context)
|
135
|
+
when :describe_container_group_definition
|
136
|
+
Aws::GameLift::Endpoints::DescribeContainerGroupDefinition.build(context)
|
130
137
|
when :describe_ec2_instance_limits
|
131
138
|
Aws::GameLift::Endpoints::DescribeEC2InstanceLimits.build(context)
|
132
139
|
when :describe_fleet_attributes
|
@@ -193,6 +200,8 @@ module Aws::GameLift
|
|
193
200
|
Aws::GameLift::Endpoints::ListBuilds.build(context)
|
194
201
|
when :list_compute
|
195
202
|
Aws::GameLift::Endpoints::ListCompute.build(context)
|
203
|
+
when :list_container_group_definitions
|
204
|
+
Aws::GameLift::Endpoints::ListContainerGroupDefinitions.build(context)
|
196
205
|
when :list_fleets
|
197
206
|
Aws::GameLift::Endpoints::ListFleets.build(context)
|
198
207
|
when :list_game_server_groups
|