aws-sdk-gamelift 1.93.0 → 1.95.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 +2050 -644
- data/lib/aws-sdk-gamelift/client_api.rb +495 -122
- data/lib/aws-sdk-gamelift/types.rb +2089 -1033
- data/lib/aws-sdk-gamelift.rb +1 -1
- data/sig/client.rbs +346 -48
- data/sig/types.rbs +311 -97
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -92,7 +92,7 @@ module Aws::GameLift
|
|
92
92
|
attr_accessor compute_arn: ::String
|
93
93
|
attr_accessor ip_address: ::String
|
94
94
|
attr_accessor dns_name: ::String
|
95
|
-
attr_accessor compute_status: ("PENDING" | "ACTIVE" | "TERMINATING")
|
95
|
+
attr_accessor compute_status: ("PENDING" | "ACTIVE" | "TERMINATING" | "IMPAIRED")
|
96
96
|
attr_accessor location: ::String
|
97
97
|
attr_accessor creation_time: ::Time
|
98
98
|
attr_accessor operating_system: ("WINDOWS_2012" | "AMAZON_LINUX" | "AMAZON_LINUX_2" | "WINDOWS_2016" | "AMAZON_LINUX_2023")
|
@@ -100,7 +100,8 @@ module Aws::GameLift
|
|
100
100
|
attr_accessor game_lift_service_sdk_endpoint: ::String
|
101
101
|
attr_accessor game_lift_agent_endpoint: ::String
|
102
102
|
attr_accessor instance_id: ::String
|
103
|
-
attr_accessor container_attributes: Types::
|
103
|
+
attr_accessor container_attributes: ::Array[Types::ContainerAttribute]
|
104
|
+
attr_accessor game_server_container_group_definition_arn: ::String
|
104
105
|
SENSITIVE: [:ip_address]
|
105
106
|
end
|
106
107
|
|
@@ -115,41 +116,9 @@ module Aws::GameLift
|
|
115
116
|
SENSITIVE: [:from_port, :to_port]
|
116
117
|
end
|
117
118
|
|
118
|
-
class
|
119
|
-
attr_accessor container_port_mappings: ::Array[Types::ContainerPortMapping]
|
120
|
-
SENSITIVE: []
|
121
|
-
end
|
122
|
-
|
123
|
-
class ContainerDefinition
|
119
|
+
class ContainerAttribute
|
124
120
|
attr_accessor container_name: ::String
|
125
|
-
attr_accessor
|
126
|
-
attr_accessor resolved_image_digest: ::String
|
127
|
-
attr_accessor memory_limits: Types::ContainerMemoryLimits
|
128
|
-
attr_accessor port_configuration: Types::ContainerPortConfiguration
|
129
|
-
attr_accessor cpu: ::Integer
|
130
|
-
attr_accessor health_check: Types::ContainerHealthCheck
|
131
|
-
attr_accessor command: ::Array[::String]
|
132
|
-
attr_accessor essential: bool
|
133
|
-
attr_accessor entry_point: ::Array[::String]
|
134
|
-
attr_accessor working_directory: ::String
|
135
|
-
attr_accessor environment: ::Array[Types::ContainerEnvironment]
|
136
|
-
attr_accessor depends_on: ::Array[Types::ContainerDependency]
|
137
|
-
SENSITIVE: []
|
138
|
-
end
|
139
|
-
|
140
|
-
class ContainerDefinitionInput
|
141
|
-
attr_accessor container_name: ::String
|
142
|
-
attr_accessor image_uri: ::String
|
143
|
-
attr_accessor memory_limits: Types::ContainerMemoryLimits
|
144
|
-
attr_accessor port_configuration: Types::ContainerPortConfiguration
|
145
|
-
attr_accessor cpu: ::Integer
|
146
|
-
attr_accessor health_check: Types::ContainerHealthCheck
|
147
|
-
attr_accessor command: ::Array[::String]
|
148
|
-
attr_accessor essential: bool
|
149
|
-
attr_accessor entry_point: ::Array[::String]
|
150
|
-
attr_accessor working_directory: ::String
|
151
|
-
attr_accessor environment: ::Array[Types::ContainerEnvironment]
|
152
|
-
attr_accessor depends_on: ::Array[Types::ContainerDependency]
|
121
|
+
attr_accessor container_runtime_id: ::String
|
153
122
|
SENSITIVE: []
|
154
123
|
end
|
155
124
|
|
@@ -165,71 +134,80 @@ module Aws::GameLift
|
|
165
134
|
SENSITIVE: []
|
166
135
|
end
|
167
136
|
|
168
|
-
class
|
169
|
-
attr_accessor
|
137
|
+
class ContainerFleet
|
138
|
+
attr_accessor fleet_id: ::String
|
139
|
+
attr_accessor fleet_arn: ::String
|
140
|
+
attr_accessor fleet_role_arn: ::String
|
141
|
+
attr_accessor game_server_container_group_definition_name: ::String
|
142
|
+
attr_accessor game_server_container_group_definition_arn: ::String
|
143
|
+
attr_accessor per_instance_container_group_definition_name: ::String
|
144
|
+
attr_accessor per_instance_container_group_definition_arn: ::String
|
145
|
+
attr_accessor instance_connection_port_range: Types::ConnectionPortRange
|
146
|
+
attr_accessor instance_inbound_permissions: ::Array[Types::IpPermission]
|
147
|
+
attr_accessor game_server_container_groups_per_instance: ::Integer
|
148
|
+
attr_accessor maximum_game_server_container_groups_per_instance: ::Integer
|
149
|
+
attr_accessor instance_type: ::String
|
150
|
+
attr_accessor billing_type: ("ON_DEMAND" | "SPOT")
|
151
|
+
attr_accessor description: ::String
|
170
152
|
attr_accessor creation_time: ::Time
|
171
|
-
attr_accessor
|
172
|
-
attr_accessor
|
173
|
-
attr_accessor
|
174
|
-
attr_accessor
|
175
|
-
attr_accessor
|
176
|
-
attr_accessor
|
177
|
-
attr_accessor
|
178
|
-
attr_accessor status_reason: ::String
|
179
|
-
SENSITIVE: []
|
180
|
-
end
|
181
|
-
|
182
|
-
class ContainerGroupDefinitionProperty
|
183
|
-
attr_accessor scheduling_strategy: ("REPLICA" | "DAEMON")
|
184
|
-
attr_accessor container_group_definition_name: ::String
|
185
|
-
SENSITIVE: []
|
186
|
-
end
|
187
|
-
|
188
|
-
class ContainerGroupsAttributes
|
189
|
-
attr_accessor container_group_definition_properties: ::Array[Types::ContainerGroupDefinitionProperty]
|
190
|
-
attr_accessor connection_port_range: Types::ConnectionPortRange
|
191
|
-
attr_accessor container_groups_per_instance: Types::ContainerGroupsPerInstance
|
153
|
+
attr_accessor metric_groups: ::Array[::String]
|
154
|
+
attr_accessor new_game_session_protection_policy: ("NoProtection" | "FullProtection")
|
155
|
+
attr_accessor game_session_creation_limit_policy: Types::GameSessionCreationLimitPolicy
|
156
|
+
attr_accessor status: ("PENDING" | "CREATING" | "CREATED" | "ACTIVATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
157
|
+
attr_accessor deployment_details: Types::DeploymentDetails
|
158
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
159
|
+
attr_accessor location_attributes: ::Array[Types::ContainerFleetLocationAttributes]
|
192
160
|
SENSITIVE: []
|
193
161
|
end
|
194
162
|
|
195
|
-
class
|
196
|
-
attr_accessor
|
197
|
-
attr_accessor
|
198
|
-
attr_accessor desired_replica_container_groups_per_instance: ::Integer
|
163
|
+
class ContainerFleetLocationAttributes
|
164
|
+
attr_accessor location: ::String
|
165
|
+
attr_accessor status: ("PENDING" | "CREATING" | "CREATED" | "ACTIVATING" | "ACTIVE" | "UPDATING" | "DELETING")
|
199
166
|
SENSITIVE: []
|
200
167
|
end
|
201
168
|
|
202
|
-
class
|
203
|
-
attr_accessor
|
204
|
-
attr_accessor
|
169
|
+
class ContainerGroupDefinition
|
170
|
+
attr_accessor container_group_definition_arn: ::String
|
171
|
+
attr_accessor creation_time: ::Time
|
172
|
+
attr_accessor operating_system: ("AMAZON_LINUX_2023")
|
173
|
+
attr_accessor name: ::String
|
174
|
+
attr_accessor container_group_type: ("GAME_SERVER" | "PER_INSTANCE")
|
175
|
+
attr_accessor total_memory_limit_mebibytes: ::Integer
|
176
|
+
attr_accessor total_vcpu_limit: ::Float
|
177
|
+
attr_accessor game_server_container_definition: Types::GameServerContainerDefinition
|
178
|
+
attr_accessor support_container_definitions: ::Array[Types::SupportContainerDefinition]
|
179
|
+
attr_accessor version_number: ::Integer
|
180
|
+
attr_accessor version_description: ::String
|
181
|
+
attr_accessor status: ("READY" | "COPYING" | "FAILED")
|
182
|
+
attr_accessor status_reason: ::String
|
205
183
|
SENSITIVE: []
|
206
184
|
end
|
207
185
|
|
208
186
|
class ContainerHealthCheck
|
209
187
|
attr_accessor command: ::Array[::String]
|
210
188
|
attr_accessor interval: ::Integer
|
211
|
-
attr_accessor timeout: ::Integer
|
212
189
|
attr_accessor retries: ::Integer
|
213
190
|
attr_accessor start_period: ::Integer
|
191
|
+
attr_accessor timeout: ::Integer
|
214
192
|
SENSITIVE: []
|
215
193
|
end
|
216
194
|
|
217
|
-
class
|
218
|
-
attr_accessor
|
219
|
-
attr_accessor
|
195
|
+
class ContainerIdentifier
|
196
|
+
attr_accessor container_name: ::String
|
197
|
+
attr_accessor container_runtime_id: ::String
|
220
198
|
SENSITIVE: []
|
221
199
|
end
|
222
200
|
|
223
|
-
class
|
224
|
-
attr_accessor
|
201
|
+
class ContainerMountPoint
|
202
|
+
attr_accessor instance_path: ::String
|
203
|
+
attr_accessor container_path: ::String
|
204
|
+
attr_accessor access_level: ("READ_ONLY" | "READ_AND_WRITE")
|
225
205
|
SENSITIVE: []
|
226
206
|
end
|
227
207
|
|
228
|
-
class
|
229
|
-
attr_accessor
|
230
|
-
|
231
|
-
attr_accessor protocol: ("TCP" | "UDP")
|
232
|
-
SENSITIVE: [:container_port, :connection_port]
|
208
|
+
class ContainerPortConfiguration
|
209
|
+
attr_accessor container_port_ranges: ::Array[Types::ContainerPortRange]
|
210
|
+
SENSITIVE: []
|
233
211
|
end
|
234
212
|
|
235
213
|
class ContainerPortRange
|
@@ -269,13 +247,39 @@ module Aws::GameLift
|
|
269
247
|
SENSITIVE: [:upload_credentials]
|
270
248
|
end
|
271
249
|
|
250
|
+
class CreateContainerFleetInput
|
251
|
+
attr_accessor fleet_role_arn: ::String
|
252
|
+
attr_accessor description: ::String
|
253
|
+
attr_accessor game_server_container_group_definition_name: ::String
|
254
|
+
attr_accessor per_instance_container_group_definition_name: ::String
|
255
|
+
attr_accessor instance_connection_port_range: Types::ConnectionPortRange
|
256
|
+
attr_accessor instance_inbound_permissions: ::Array[Types::IpPermission]
|
257
|
+
attr_accessor game_server_container_groups_per_instance: ::Integer
|
258
|
+
attr_accessor instance_type: ::String
|
259
|
+
attr_accessor billing_type: ("ON_DEMAND" | "SPOT")
|
260
|
+
attr_accessor locations: ::Array[Types::LocationConfiguration]
|
261
|
+
attr_accessor metric_groups: ::Array[::String]
|
262
|
+
attr_accessor new_game_session_protection_policy: ("NoProtection" | "FullProtection")
|
263
|
+
attr_accessor game_session_creation_limit_policy: Types::GameSessionCreationLimitPolicy
|
264
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
265
|
+
attr_accessor tags: ::Array[Types::Tag]
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class CreateContainerFleetOutput
|
270
|
+
attr_accessor container_fleet: Types::ContainerFleet
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
272
274
|
class CreateContainerGroupDefinitionInput
|
273
275
|
attr_accessor name: ::String
|
274
|
-
attr_accessor
|
275
|
-
attr_accessor
|
276
|
-
attr_accessor
|
277
|
-
attr_accessor
|
276
|
+
attr_accessor container_group_type: ("GAME_SERVER" | "PER_INSTANCE")
|
277
|
+
attr_accessor total_memory_limit_mebibytes: ::Integer
|
278
|
+
attr_accessor total_vcpu_limit: ::Float
|
279
|
+
attr_accessor game_server_container_definition: Types::GameServerContainerDefinitionInput
|
280
|
+
attr_accessor support_container_definitions: ::Array[Types::SupportContainerDefinitionInput]
|
278
281
|
attr_accessor operating_system: ("AMAZON_LINUX_2023")
|
282
|
+
attr_accessor version_description: ::String
|
279
283
|
attr_accessor tags: ::Array[Types::Tag]
|
280
284
|
SENSITIVE: []
|
281
285
|
end
|
@@ -306,10 +310,9 @@ module Aws::GameLift
|
|
306
310
|
attr_accessor certificate_configuration: Types::CertificateConfiguration
|
307
311
|
attr_accessor locations: ::Array[Types::LocationConfiguration]
|
308
312
|
attr_accessor tags: ::Array[Types::Tag]
|
309
|
-
attr_accessor compute_type: ("EC2" | "ANYWHERE"
|
313
|
+
attr_accessor compute_type: ("EC2" | "ANYWHERE")
|
310
314
|
attr_accessor anywhere_configuration: Types::AnywhereConfiguration
|
311
315
|
attr_accessor instance_role_credentials_provider: ("SHARED_CREDENTIAL_FILE")
|
312
|
-
attr_accessor container_groups_configuration: Types::ContainerGroupsConfiguration
|
313
316
|
SENSITIVE: []
|
314
317
|
end
|
315
318
|
|
@@ -505,11 +508,24 @@ module Aws::GameLift
|
|
505
508
|
SENSITIVE: []
|
506
509
|
end
|
507
510
|
|
511
|
+
class DeleteContainerFleetInput
|
512
|
+
attr_accessor fleet_id: ::String
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
516
|
+
class DeleteContainerFleetOutput < Aws::EmptyStructure
|
517
|
+
end
|
518
|
+
|
508
519
|
class DeleteContainerGroupDefinitionInput
|
509
520
|
attr_accessor name: ::String
|
521
|
+
attr_accessor version_number: ::Integer
|
522
|
+
attr_accessor version_count_to_retain: ::Integer
|
510
523
|
SENSITIVE: []
|
511
524
|
end
|
512
525
|
|
526
|
+
class DeleteContainerGroupDefinitionOutput < Aws::EmptyStructure
|
527
|
+
end
|
528
|
+
|
513
529
|
class DeleteFleetInput
|
514
530
|
attr_accessor fleet_id: ::String
|
515
531
|
SENSITIVE: []
|
@@ -600,6 +616,18 @@ module Aws::GameLift
|
|
600
616
|
class DeleteVpcPeeringConnectionOutput < Aws::EmptyStructure
|
601
617
|
end
|
602
618
|
|
619
|
+
class DeploymentConfiguration
|
620
|
+
attr_accessor protection_strategy: ("WITH_PROTECTION" | "IGNORE_PROTECTION")
|
621
|
+
attr_accessor minimum_healthy_percentage: ::Integer
|
622
|
+
attr_accessor impairment_strategy: ("MAINTAIN" | "ROLLBACK")
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class DeploymentDetails
|
627
|
+
attr_accessor latest_deployment_id: ::String
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
603
631
|
class DeregisterComputeInput
|
604
632
|
attr_accessor fleet_id: ::String
|
605
633
|
attr_accessor compute_name: ::String
|
@@ -646,8 +674,19 @@ module Aws::GameLift
|
|
646
674
|
SENSITIVE: []
|
647
675
|
end
|
648
676
|
|
677
|
+
class DescribeContainerFleetInput
|
678
|
+
attr_accessor fleet_id: ::String
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class DescribeContainerFleetOutput
|
683
|
+
attr_accessor container_fleet: Types::ContainerFleet
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
649
687
|
class DescribeContainerGroupDefinitionInput
|
650
688
|
attr_accessor name: ::String
|
689
|
+
attr_accessor version_number: ::Integer
|
651
690
|
SENSITIVE: []
|
652
691
|
end
|
653
692
|
|
@@ -693,6 +732,18 @@ module Aws::GameLift
|
|
693
732
|
SENSITIVE: []
|
694
733
|
end
|
695
734
|
|
735
|
+
class DescribeFleetDeploymentInput
|
736
|
+
attr_accessor fleet_id: ::String
|
737
|
+
attr_accessor deployment_id: ::String
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class DescribeFleetDeploymentOutput
|
742
|
+
attr_accessor fleet_deployment: Types::FleetDeployment
|
743
|
+
attr_accessor locational_deployments: ::Hash[::String, Types::LocationalDeployment]
|
744
|
+
SENSITIVE: []
|
745
|
+
end
|
746
|
+
|
696
747
|
class DescribeFleetEventsInput
|
697
748
|
attr_accessor fleet_id: ::String
|
698
749
|
attr_accessor start_time: ::Time
|
@@ -1015,7 +1066,7 @@ module Aws::GameLift
|
|
1015
1066
|
class Event
|
1016
1067
|
attr_accessor event_id: ::String
|
1017
1068
|
attr_accessor resource_id: ::String
|
1018
|
-
attr_accessor event_code: ("GENERIC_EVENT" | "FLEET_CREATED" | "FLEET_DELETED" | "FLEET_SCALING_EVENT" | "FLEET_STATE_DOWNLOADING" | "FLEET_STATE_VALIDATING" | "FLEET_STATE_BUILDING" | "FLEET_STATE_ACTIVATING" | "FLEET_STATE_ACTIVE" | "FLEET_STATE_ERROR" | "FLEET_INITIALIZATION_FAILED" | "FLEET_BINARY_DOWNLOAD_FAILED" | "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND" | "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE" | "FLEET_VALIDATION_TIMED_OUT" | "FLEET_ACTIVATION_FAILED" | "FLEET_ACTIVATION_FAILED_NO_INSTANCES" | "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED" | "SERVER_PROCESS_INVALID_PATH" | "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT" | "SERVER_PROCESS_PROCESS_READY_TIMEOUT" | "SERVER_PROCESS_CRASHED" | "SERVER_PROCESS_TERMINATED_UNHEALTHY" | "SERVER_PROCESS_FORCE_TERMINATED" | "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT" | "GAME_SESSION_ACTIVATION_TIMEOUT" | "FLEET_CREATION_EXTRACTING_BUILD" | "FLEET_CREATION_RUNNING_INSTALLER" | "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG" | "FLEET_VPC_PEERING_SUCCEEDED" | "FLEET_VPC_PEERING_FAILED" | "FLEET_VPC_PEERING_DELETED" | "INSTANCE_INTERRUPTED" | "INSTANCE_RECYCLED" | "FLEET_CREATION_COMPLETED_INSTALLER" | "FLEET_CREATION_FAILED_INSTALLER")
|
1069
|
+
attr_accessor event_code: ("GENERIC_EVENT" | "FLEET_CREATED" | "FLEET_DELETED" | "FLEET_SCALING_EVENT" | "FLEET_STATE_DOWNLOADING" | "FLEET_STATE_VALIDATING" | "FLEET_STATE_BUILDING" | "FLEET_STATE_ACTIVATING" | "FLEET_STATE_ACTIVE" | "FLEET_STATE_ERROR" | "FLEET_STATE_PENDING" | "FLEET_STATE_CREATING" | "FLEET_STATE_CREATED" | "FLEET_STATE_UPDATING" | "FLEET_INITIALIZATION_FAILED" | "FLEET_BINARY_DOWNLOAD_FAILED" | "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND" | "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE" | "FLEET_VALIDATION_TIMED_OUT" | "FLEET_ACTIVATION_FAILED" | "FLEET_ACTIVATION_FAILED_NO_INSTANCES" | "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED" | "SERVER_PROCESS_INVALID_PATH" | "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT" | "SERVER_PROCESS_PROCESS_READY_TIMEOUT" | "SERVER_PROCESS_CRASHED" | "SERVER_PROCESS_TERMINATED_UNHEALTHY" | "SERVER_PROCESS_FORCE_TERMINATED" | "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT" | "SERVER_PROCESS_SDK_INITIALIZATION_FAILED" | "SERVER_PROCESS_MISCONFIGURED_CONTAINER_PORT" | "GAME_SESSION_ACTIVATION_TIMEOUT" | "FLEET_CREATION_EXTRACTING_BUILD" | "FLEET_CREATION_RUNNING_INSTALLER" | "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG" | "FLEET_VPC_PEERING_SUCCEEDED" | "FLEET_VPC_PEERING_FAILED" | "FLEET_VPC_PEERING_DELETED" | "INSTANCE_INTERRUPTED" | "INSTANCE_RECYCLED" | "INSTANCE_REPLACED_UNHEALTHY" | "FLEET_CREATION_COMPLETED_INSTALLER" | "FLEET_CREATION_FAILED_INSTALLER" | "COMPUTE_LOG_UPLOAD_FAILED" | "GAME_SERVER_CONTAINER_GROUP_CRASHED" | "PER_INSTANCE_CONTAINER_GROUP_CRASHED" | "GAME_SERVER_CONTAINER_GROUP_REPLACED_UNHEALTHY" | "LOCATION_STATE_PENDING" | "LOCATION_STATE_CREATING" | "LOCATION_STATE_CREATED" | "LOCATION_STATE_ACTIVATING" | "LOCATION_STATE_ACTIVE" | "LOCATION_STATE_UPDATING" | "LOCATION_STATE_ERROR" | "LOCATION_STATE_DELETING" | "LOCATION_STATE_DELETED")
|
1019
1070
|
attr_accessor message: ::String
|
1020
1071
|
attr_accessor event_time: ::Time
|
1021
1072
|
attr_accessor pre_signed_log_url: ::String
|
@@ -1052,10 +1103,9 @@ module Aws::GameLift
|
|
1052
1103
|
attr_accessor stopped_actions: ::Array[("AUTO_SCALING")]
|
1053
1104
|
attr_accessor instance_role_arn: ::String
|
1054
1105
|
attr_accessor certificate_configuration: Types::CertificateConfiguration
|
1055
|
-
attr_accessor compute_type: ("EC2" | "ANYWHERE"
|
1106
|
+
attr_accessor compute_type: ("EC2" | "ANYWHERE")
|
1056
1107
|
attr_accessor anywhere_configuration: Types::AnywhereConfiguration
|
1057
1108
|
attr_accessor instance_role_credentials_provider: ("SHARED_CREDENTIAL_FILE")
|
1058
|
-
attr_accessor container_groups_attributes: Types::ContainerGroupsAttributes
|
1059
1109
|
SENSITIVE: []
|
1060
1110
|
end
|
1061
1111
|
|
@@ -1065,7 +1115,7 @@ module Aws::GameLift
|
|
1065
1115
|
attr_accessor instance_type: ("t2.micro" | "t2.small" | "t2.medium" | "t2.large" | "c3.large" | "c3.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c4.large" | "c4.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c5.large" | "c5.xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5a.large" | "c5a.xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "r3.large" | "r3.xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r4.large" | "r4.xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.16xlarge" | "r5.large" | "r5.xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5a.large" | "r5a.xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "m3.medium" | "m3.large" | "m3.xlarge" | "m3.2xlarge" | "m4.large" | "m4.xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.10xlarge" | "m5.large" | "m5.xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5a.large" | "m5a.xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "c5d.large" | "c5d.xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c6a.large" | "c6a.xlarge" | "c6a.2xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6i.large" | "c6i.xlarge" | "c6i.2xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "r5d.large" | "r5d.xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "m6g.medium" | "m6g.large" | "m6g.xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "c6g.medium" | "c6g.large" | "c6g.xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "r6g.medium" | "r6g.large" | "r6g.xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "c6gn.medium" | "c6gn.large" | "c6gn.xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c7g.medium" | "c7g.large" | "c7g.xlarge" | "c7g.2xlarge" | "c7g.4xlarge" | "c7g.8xlarge" | "c7g.12xlarge" | "c7g.16xlarge" | "r7g.medium" | "r7g.large" | "r7g.xlarge" | "r7g.2xlarge" | "r7g.4xlarge" | "r7g.8xlarge" | "r7g.12xlarge" | "r7g.16xlarge" | "m7g.medium" | "m7g.large" | "m7g.xlarge" | "m7g.2xlarge" | "m7g.4xlarge" | "m7g.8xlarge" | "m7g.12xlarge" | "m7g.16xlarge" | "g5g.xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.16xlarge")
|
1066
1116
|
attr_accessor instance_counts: Types::EC2InstanceCounts
|
1067
1117
|
attr_accessor location: ::String
|
1068
|
-
attr_accessor
|
1118
|
+
attr_accessor game_server_container_group_counts: Types::GameServerContainerGroupCounts
|
1069
1119
|
SENSITIVE: []
|
1070
1120
|
end
|
1071
1121
|
|
@@ -1074,6 +1124,19 @@ module Aws::GameLift
|
|
1074
1124
|
SENSITIVE: []
|
1075
1125
|
end
|
1076
1126
|
|
1127
|
+
class FleetDeployment
|
1128
|
+
attr_accessor deployment_id: ::String
|
1129
|
+
attr_accessor fleet_id: ::String
|
1130
|
+
attr_accessor game_server_binary_arn: ::String
|
1131
|
+
attr_accessor rollback_game_server_binary_arn: ::String
|
1132
|
+
attr_accessor per_instance_binary_arn: ::String
|
1133
|
+
attr_accessor rollback_per_instance_binary_arn: ::String
|
1134
|
+
attr_accessor deployment_status: ("IN_PROGRESS" | "IMPAIRED" | "COMPLETE" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "CANCELLED" | "PENDING")
|
1135
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
1136
|
+
attr_accessor creation_time: ::Time
|
1137
|
+
SENSITIVE: []
|
1138
|
+
end
|
1139
|
+
|
1077
1140
|
class FleetUtilization
|
1078
1141
|
attr_accessor fleet_id: ::String
|
1079
1142
|
attr_accessor fleet_arn: ::String
|
@@ -1106,6 +1169,37 @@ module Aws::GameLift
|
|
1106
1169
|
SENSITIVE: []
|
1107
1170
|
end
|
1108
1171
|
|
1172
|
+
class GameServerContainerDefinition
|
1173
|
+
attr_accessor container_name: ::String
|
1174
|
+
attr_accessor depends_on: ::Array[Types::ContainerDependency]
|
1175
|
+
attr_accessor mount_points: ::Array[Types::ContainerMountPoint]
|
1176
|
+
attr_accessor environment_override: ::Array[Types::ContainerEnvironment]
|
1177
|
+
attr_accessor image_uri: ::String
|
1178
|
+
attr_accessor port_configuration: Types::ContainerPortConfiguration
|
1179
|
+
attr_accessor resolved_image_digest: ::String
|
1180
|
+
attr_accessor server_sdk_version: ::String
|
1181
|
+
SENSITIVE: []
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
class GameServerContainerDefinitionInput
|
1185
|
+
attr_accessor container_name: ::String
|
1186
|
+
attr_accessor depends_on: ::Array[Types::ContainerDependency]
|
1187
|
+
attr_accessor mount_points: ::Array[Types::ContainerMountPoint]
|
1188
|
+
attr_accessor environment_override: ::Array[Types::ContainerEnvironment]
|
1189
|
+
attr_accessor image_uri: ::String
|
1190
|
+
attr_accessor port_configuration: Types::ContainerPortConfiguration
|
1191
|
+
attr_accessor server_sdk_version: ::String
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class GameServerContainerGroupCounts
|
1196
|
+
attr_accessor pending: ::Integer
|
1197
|
+
attr_accessor active: ::Integer
|
1198
|
+
attr_accessor idle: ::Integer
|
1199
|
+
attr_accessor terminating: ::Integer
|
1200
|
+
SENSITIVE: []
|
1201
|
+
end
|
1202
|
+
|
1109
1203
|
class GameServerGroup
|
1110
1204
|
attr_accessor game_server_group_name: ::String
|
1111
1205
|
attr_accessor game_server_group_arn: ::String
|
@@ -1168,6 +1262,12 @@ module Aws::GameLift
|
|
1168
1262
|
SENSITIVE: [:ip_address]
|
1169
1263
|
end
|
1170
1264
|
|
1265
|
+
class GameSessionCreationLimitPolicy
|
1266
|
+
attr_accessor new_game_sessions_per_creator: ::Integer
|
1267
|
+
attr_accessor policy_period_in_minutes: ::Integer
|
1268
|
+
SENSITIVE: []
|
1269
|
+
end
|
1270
|
+
|
1171
1271
|
class GameSessionDetail
|
1172
1272
|
attr_accessor game_session: Types::GameSession
|
1173
1273
|
attr_accessor protection_policy: ("NoProtection" | "FullProtection")
|
@@ -1232,6 +1332,7 @@ module Aws::GameLift
|
|
1232
1332
|
attr_accessor compute_arn: ::String
|
1233
1333
|
attr_accessor credentials: Types::AwsCredentials
|
1234
1334
|
attr_accessor target: ::String
|
1335
|
+
attr_accessor container_identifiers: ::Array[Types::ContainerIdentifier]
|
1235
1336
|
SENSITIVE: [:credentials]
|
1236
1337
|
end
|
1237
1338
|
|
@@ -1382,6 +1483,8 @@ module Aws::GameLift
|
|
1382
1483
|
class ListComputeInput
|
1383
1484
|
attr_accessor fleet_id: ::String
|
1384
1485
|
attr_accessor location: ::String
|
1486
|
+
attr_accessor container_group_definition_name: ::String
|
1487
|
+
attr_accessor compute_status: ("ACTIVE" | "IMPAIRED")
|
1385
1488
|
attr_accessor limit: ::Integer
|
1386
1489
|
attr_accessor next_token: ::String
|
1387
1490
|
SENSITIVE: []
|
@@ -1393,8 +1496,34 @@ module Aws::GameLift
|
|
1393
1496
|
SENSITIVE: []
|
1394
1497
|
end
|
1395
1498
|
|
1499
|
+
class ListContainerFleetsInput
|
1500
|
+
attr_accessor container_group_definition_name: ::String
|
1501
|
+
attr_accessor limit: ::Integer
|
1502
|
+
attr_accessor next_token: ::String
|
1503
|
+
SENSITIVE: []
|
1504
|
+
end
|
1505
|
+
|
1506
|
+
class ListContainerFleetsOutput
|
1507
|
+
attr_accessor container_fleets: ::Array[Types::ContainerFleet]
|
1508
|
+
attr_accessor next_token: ::String
|
1509
|
+
SENSITIVE: []
|
1510
|
+
end
|
1511
|
+
|
1512
|
+
class ListContainerGroupDefinitionVersionsInput
|
1513
|
+
attr_accessor name: ::String
|
1514
|
+
attr_accessor limit: ::Integer
|
1515
|
+
attr_accessor next_token: ::String
|
1516
|
+
SENSITIVE: []
|
1517
|
+
end
|
1518
|
+
|
1519
|
+
class ListContainerGroupDefinitionVersionsOutput
|
1520
|
+
attr_accessor container_group_definitions: ::Array[Types::ContainerGroupDefinition]
|
1521
|
+
attr_accessor next_token: ::String
|
1522
|
+
SENSITIVE: []
|
1523
|
+
end
|
1524
|
+
|
1396
1525
|
class ListContainerGroupDefinitionsInput
|
1397
|
-
attr_accessor
|
1526
|
+
attr_accessor container_group_type: ("GAME_SERVER" | "PER_INSTANCE")
|
1398
1527
|
attr_accessor limit: ::Integer
|
1399
1528
|
attr_accessor next_token: ::String
|
1400
1529
|
SENSITIVE: []
|
@@ -1406,10 +1535,22 @@ module Aws::GameLift
|
|
1406
1535
|
SENSITIVE: []
|
1407
1536
|
end
|
1408
1537
|
|
1538
|
+
class ListFleetDeploymentsInput
|
1539
|
+
attr_accessor fleet_id: ::String
|
1540
|
+
attr_accessor limit: ::Integer
|
1541
|
+
attr_accessor next_token: ::String
|
1542
|
+
SENSITIVE: []
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
class ListFleetDeploymentsOutput
|
1546
|
+
attr_accessor fleet_deployments: ::Array[Types::FleetDeployment]
|
1547
|
+
attr_accessor next_token: ::String
|
1548
|
+
SENSITIVE: []
|
1549
|
+
end
|
1550
|
+
|
1409
1551
|
class ListFleetsInput
|
1410
1552
|
attr_accessor build_id: ::String
|
1411
1553
|
attr_accessor script_id: ::String
|
1412
|
-
attr_accessor container_group_definition_name: ::String
|
1413
1554
|
attr_accessor limit: ::Integer
|
1414
1555
|
attr_accessor next_token: ::String
|
1415
1556
|
SENSITIVE: []
|
@@ -1506,6 +1647,18 @@ module Aws::GameLift
|
|
1506
1647
|
SENSITIVE: []
|
1507
1648
|
end
|
1508
1649
|
|
1650
|
+
class LocationalDeployment
|
1651
|
+
attr_accessor deployment_status: ("IN_PROGRESS" | "IMPAIRED" | "COMPLETE" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "CANCELLED" | "PENDING")
|
1652
|
+
SENSITIVE: []
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
class LogConfiguration
|
1656
|
+
attr_accessor log_destination: ("NONE" | "CLOUDWATCH" | "S3")
|
1657
|
+
attr_accessor s3_bucket_name: ::String
|
1658
|
+
attr_accessor log_group_arn: ::String
|
1659
|
+
SENSITIVE: []
|
1660
|
+
end
|
1661
|
+
|
1509
1662
|
class MatchedPlayerSession
|
1510
1663
|
attr_accessor player_id: ::String
|
1511
1664
|
attr_accessor player_session_id: ::String
|
@@ -1668,14 +1821,6 @@ module Aws::GameLift
|
|
1668
1821
|
SENSITIVE: []
|
1669
1822
|
end
|
1670
1823
|
|
1671
|
-
class ReplicaContainerGroupCounts
|
1672
|
-
attr_accessor pending: ::Integer
|
1673
|
-
attr_accessor active: ::Integer
|
1674
|
-
attr_accessor idle: ::Integer
|
1675
|
-
attr_accessor terminating: ::Integer
|
1676
|
-
SENSITIVE: []
|
1677
|
-
end
|
1678
|
-
|
1679
1824
|
class RequestUploadCredentialsInput
|
1680
1825
|
attr_accessor build_id: ::String
|
1681
1826
|
SENSITIVE: []
|
@@ -1876,6 +2021,35 @@ module Aws::GameLift
|
|
1876
2021
|
class StopMatchmakingOutput < Aws::EmptyStructure
|
1877
2022
|
end
|
1878
2023
|
|
2024
|
+
class SupportContainerDefinition
|
2025
|
+
attr_accessor container_name: ::String
|
2026
|
+
attr_accessor depends_on: ::Array[Types::ContainerDependency]
|
2027
|
+
attr_accessor mount_points: ::Array[Types::ContainerMountPoint]
|
2028
|
+
attr_accessor environment_override: ::Array[Types::ContainerEnvironment]
|
2029
|
+
attr_accessor essential: bool
|
2030
|
+
attr_accessor health_check: Types::ContainerHealthCheck
|
2031
|
+
attr_accessor image_uri: ::String
|
2032
|
+
attr_accessor memory_hard_limit_mebibytes: ::Integer
|
2033
|
+
attr_accessor port_configuration: Types::ContainerPortConfiguration
|
2034
|
+
attr_accessor resolved_image_digest: ::String
|
2035
|
+
attr_accessor vcpu: ::Float
|
2036
|
+
SENSITIVE: []
|
2037
|
+
end
|
2038
|
+
|
2039
|
+
class SupportContainerDefinitionInput
|
2040
|
+
attr_accessor container_name: ::String
|
2041
|
+
attr_accessor depends_on: ::Array[Types::ContainerDependency]
|
2042
|
+
attr_accessor mount_points: ::Array[Types::ContainerMountPoint]
|
2043
|
+
attr_accessor environment_override: ::Array[Types::ContainerEnvironment]
|
2044
|
+
attr_accessor essential: bool
|
2045
|
+
attr_accessor health_check: Types::ContainerHealthCheck
|
2046
|
+
attr_accessor image_uri: ::String
|
2047
|
+
attr_accessor memory_hard_limit_mebibytes: ::Integer
|
2048
|
+
attr_accessor port_configuration: Types::ContainerPortConfiguration
|
2049
|
+
attr_accessor vcpu: ::Float
|
2050
|
+
SENSITIVE: []
|
2051
|
+
end
|
2052
|
+
|
1879
2053
|
class SuspendGameServerGroupInput
|
1880
2054
|
attr_accessor game_server_group_name: ::String
|
1881
2055
|
attr_accessor suspend_actions: ::Array[("REPLACE_INSTANCE_TYPES")]
|
@@ -1966,6 +2140,46 @@ module Aws::GameLift
|
|
1966
2140
|
SENSITIVE: []
|
1967
2141
|
end
|
1968
2142
|
|
2143
|
+
class UpdateContainerFleetInput
|
2144
|
+
attr_accessor fleet_id: ::String
|
2145
|
+
attr_accessor game_server_container_group_definition_name: ::String
|
2146
|
+
attr_accessor per_instance_container_group_definition_name: ::String
|
2147
|
+
attr_accessor game_server_container_groups_per_instance: ::Integer
|
2148
|
+
attr_accessor instance_connection_port_range: Types::ConnectionPortRange
|
2149
|
+
attr_accessor instance_inbound_permission_authorizations: ::Array[Types::IpPermission]
|
2150
|
+
attr_accessor instance_inbound_permission_revocations: ::Array[Types::IpPermission]
|
2151
|
+
attr_accessor deployment_configuration: Types::DeploymentConfiguration
|
2152
|
+
attr_accessor description: ::String
|
2153
|
+
attr_accessor metric_groups: ::Array[::String]
|
2154
|
+
attr_accessor new_game_session_protection_policy: ("NoProtection" | "FullProtection")
|
2155
|
+
attr_accessor game_session_creation_limit_policy: Types::GameSessionCreationLimitPolicy
|
2156
|
+
attr_accessor log_configuration: Types::LogConfiguration
|
2157
|
+
attr_accessor remove_attributes: ::Array[("PER_INSTANCE_CONTAINER_GROUP_DEFINITION")]
|
2158
|
+
SENSITIVE: []
|
2159
|
+
end
|
2160
|
+
|
2161
|
+
class UpdateContainerFleetOutput
|
2162
|
+
attr_accessor container_fleet: Types::ContainerFleet
|
2163
|
+
SENSITIVE: []
|
2164
|
+
end
|
2165
|
+
|
2166
|
+
class UpdateContainerGroupDefinitionInput
|
2167
|
+
attr_accessor name: ::String
|
2168
|
+
attr_accessor game_server_container_definition: Types::GameServerContainerDefinitionInput
|
2169
|
+
attr_accessor support_container_definitions: ::Array[Types::SupportContainerDefinitionInput]
|
2170
|
+
attr_accessor total_memory_limit_mebibytes: ::Integer
|
2171
|
+
attr_accessor total_vcpu_limit: ::Float
|
2172
|
+
attr_accessor version_description: ::String
|
2173
|
+
attr_accessor source_version_number: ::Integer
|
2174
|
+
attr_accessor operating_system: ("AMAZON_LINUX_2023")
|
2175
|
+
SENSITIVE: []
|
2176
|
+
end
|
2177
|
+
|
2178
|
+
class UpdateContainerGroupDefinitionOutput
|
2179
|
+
attr_accessor container_group_definition: Types::ContainerGroupDefinition
|
2180
|
+
SENSITIVE: []
|
2181
|
+
end
|
2182
|
+
|
1969
2183
|
class UpdateFleetAttributesInput
|
1970
2184
|
attr_accessor fleet_id: ::String
|
1971
2185
|
attr_accessor name: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-gamelift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.95.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|