aws-sdk-gamelift 1.105.0 → 1.106.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-gamelift/client.rb +743 -676
- data/lib/aws-sdk-gamelift/client_api.rb +10 -0
- data/lib/aws-sdk-gamelift/types.rb +830 -723
- data/lib/aws-sdk-gamelift.rb +1 -1
- data/sig/types.rbs +12 -0
- metadata +1 -1
@@ -454,6 +454,7 @@ module Aws::GameLift
|
|
454
454
|
NotReadyException = Shapes::StructureShape.new(name: 'NotReadyException')
|
455
455
|
OperatingSystem = Shapes::StringShape.new(name: 'OperatingSystem')
|
456
456
|
OutOfCapacityException = Shapes::StructureShape.new(name: 'OutOfCapacityException')
|
457
|
+
PingBeacon = Shapes::StructureShape.new(name: 'PingBeacon')
|
457
458
|
PlacedPlayerSession = Shapes::StructureShape.new(name: 'PlacedPlayerSession')
|
458
459
|
PlacedPlayerSessionList = Shapes::ListShape.new(name: 'PlacedPlayerSessionList')
|
459
460
|
PlacementFallbackStrategy = Shapes::StringShape.new(name: 'PlacementFallbackStrategy')
|
@@ -563,6 +564,7 @@ module Aws::GameLift
|
|
563
564
|
TerminateGameSessionOutput = Shapes::StructureShape.new(name: 'TerminateGameSessionOutput')
|
564
565
|
TerminationMode = Shapes::StringShape.new(name: 'TerminationMode')
|
565
566
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
567
|
+
UDPEndpoint = Shapes::StructureShape.new(name: 'UDPEndpoint')
|
566
568
|
UnauthorizedException = Shapes::StructureShape.new(name: 'UnauthorizedException')
|
567
569
|
UnsupportedRegionException = Shapes::StructureShape.new(name: 'UnsupportedRegionException')
|
568
570
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
@@ -1885,6 +1887,7 @@ module Aws::GameLift
|
|
1885
1887
|
|
1886
1888
|
LocationModel.add_member(:location_name, Shapes::ShapeRef.new(shape: LocationStringModel, location_name: "LocationName"))
|
1887
1889
|
LocationModel.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArnModel, location_name: "LocationArn"))
|
1890
|
+
LocationModel.add_member(:ping_beacon, Shapes::ShapeRef.new(shape: PingBeacon, location_name: "PingBeacon"))
|
1888
1891
|
LocationModel.struct_class = Types::LocationModel
|
1889
1892
|
|
1890
1893
|
LocationModelList.member = Shapes::ShapeRef.new(shape: LocationModel)
|
@@ -1975,6 +1978,9 @@ module Aws::GameLift
|
|
1975
1978
|
OutOfCapacityException.add_member(:message, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Message"))
|
1976
1979
|
OutOfCapacityException.struct_class = Types::OutOfCapacityException
|
1977
1980
|
|
1981
|
+
PingBeacon.add_member(:udp_endpoint, Shapes::ShapeRef.new(shape: UDPEndpoint, location_name: "UDPEndpoint"))
|
1982
|
+
PingBeacon.struct_class = Types::PingBeacon
|
1983
|
+
|
1978
1984
|
PlacedPlayerSession.add_member(:player_id, Shapes::ShapeRef.new(shape: PlayerId, location_name: "PlayerId"))
|
1979
1985
|
PlacedPlayerSession.add_member(:player_session_id, Shapes::ShapeRef.new(shape: PlayerSessionId, location_name: "PlayerSessionId"))
|
1980
1986
|
PlacedPlayerSession.struct_class = Types::PlacedPlayerSession
|
@@ -2302,6 +2308,10 @@ module Aws::GameLift
|
|
2302
2308
|
TerminateGameSessionOutput.add_member(:game_session, Shapes::ShapeRef.new(shape: GameSession, location_name: "GameSession"))
|
2303
2309
|
TerminateGameSessionOutput.struct_class = Types::TerminateGameSessionOutput
|
2304
2310
|
|
2311
|
+
UDPEndpoint.add_member(:domain, Shapes::ShapeRef.new(shape: NonZeroAndMaxString, location_name: "Domain"))
|
2312
|
+
UDPEndpoint.add_member(:port, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "Port"))
|
2313
|
+
UDPEndpoint.struct_class = Types::UDPEndpoint
|
2314
|
+
|
2305
2315
|
UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "Message"))
|
2306
2316
|
UnauthorizedException.struct_class = Types::UnauthorizedException
|
2307
2317
|
|