aws-sdk-gamelift 1.96.0 → 1.97.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -54,7 +54,7 @@ module Aws::GameLift
54
54
  autoload :EndpointProvider, 'aws-sdk-gamelift/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-gamelift/endpoints'
56
56
 
57
- GEM_VERSION = '1.96.0'
57
+ GEM_VERSION = '1.97.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1630,6 +1630,17 @@ module Aws
1630
1630
  ) -> _TagResourceResponseSuccess
1631
1631
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1632
1632
 
1633
+ interface _TerminateGameSessionResponseSuccess
1634
+ include ::Seahorse::Client::_ResponseSuccess[Types::TerminateGameSessionOutput]
1635
+ def game_session: () -> Types::GameSession
1636
+ end
1637
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GameLift/Client.html#terminate_game_session-instance_method
1638
+ def terminate_game_session: (
1639
+ game_session_id: ::String,
1640
+ termination_mode: ("TRIGGER_ON_PROCESS_TERMINATE" | "FORCE_TERMINATE")
1641
+ ) -> _TerminateGameSessionResponseSuccess
1642
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TerminateGameSessionResponseSuccess
1643
+
1633
1644
  interface _UntagResourceResponseSuccess
1634
1645
  include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1635
1646
  end
data/sig/types.rbs CHANGED
@@ -1240,7 +1240,7 @@ module Aws::GameLift
1240
1240
  attr_accessor current_player_session_count: ::Integer
1241
1241
  attr_accessor maximum_player_session_count: ::Integer
1242
1242
  attr_accessor status: ("ACTIVE" | "ACTIVATING" | "TERMINATED" | "TERMINATING" | "ERROR")
1243
- attr_accessor status_reason: ("INTERRUPTED")
1243
+ attr_accessor status_reason: ("INTERRUPTED" | "TRIGGERED_ON_PROCESS_TERMINATE" | "FORCE_TERMINATED")
1244
1244
  attr_accessor game_properties: ::Array[Types::GameProperty]
1245
1245
  attr_accessor ip_address: ::String
1246
1246
  attr_accessor dns_name: ::String
@@ -2096,6 +2096,17 @@ module Aws::GameLift
2096
2096
  SENSITIVE: []
2097
2097
  end
2098
2098
 
2099
+ class TerminateGameSessionInput
2100
+ attr_accessor game_session_id: ::String
2101
+ attr_accessor termination_mode: ("TRIGGER_ON_PROCESS_TERMINATE" | "FORCE_TERMINATE")
2102
+ SENSITIVE: []
2103
+ end
2104
+
2105
+ class TerminateGameSessionOutput
2106
+ attr_accessor game_session: Types::GameSession
2107
+ SENSITIVE: []
2108
+ end
2109
+
2099
2110
  class UnauthorizedException
2100
2111
  attr_accessor message: ::String
2101
2112
  SENSITIVE: []
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.96.0
4
+ version: 1.97.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-18 00:00:00.000000000 Z
11
+ date: 2025-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core