aws-sdk-gamesparks 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5db3948e0ed5f2c6e0fef92fc61280e62f378ff4a45bf5aec5a103164037e400
4
- data.tar.gz: 5d71426a9fdccc215e6ec0564ec10ecd4c78781e9efe7145bd884a57c30888f2
3
+ metadata.gz: a65bfce83059099bb7357a09c112d8139d860955e1ec42a7e319fe7aa56454d2
4
+ data.tar.gz: 45457c7ea06cbda657011e06c0b2821df677227ac7f3de0e2921260a79c6891e
5
5
  SHA512:
6
- metadata.gz: 97b97cb0ebc9c144d6d4abb39513a910b6c37a1ad0abcfb2103afcf59519880563a8efb4614544bd799cad1a55fefe3f69d1e5796a5007b6e9026db229e89291
7
- data.tar.gz: 7055591208e572f701e368c742e8a62948e0859766cef142df404019663ae9a19f843a206a5e31d22d84d206a997254ea37a719becc34fafd695399d94346b7e
6
+ metadata.gz: 5795a5490c7e1b4c4984da025b2484e6bb348ff22d5e5e78c3da5fcebe5ef33635a3dbe65ab88c9621971c259e76df2b6187e9d9af415c6c326df1420d77ea90
7
+ data.tar.gz: 764262a185d11a3bea09e6e0ffcadb01c3f646be885038defd9ce2250fd02cd7959327652af4b7e12d4f9d01bf3200fc65167f88ebefc1a28805910785af3c6e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.1.0 (2022-05-19)
5
+ ------------------
6
+
7
+ * Feature - This release adds an optional DeploymentResult field in the responses of GetStageDeploymentIntegrationTests and ListStageDeploymentIntegrationTests APIs.
8
+
4
9
  1.0.0 (2022-03-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -969,6 +969,8 @@ module Aws::GameSparks
969
969
  # resp.stage_deployment.created #=> Time
970
970
  # resp.stage_deployment.deployment_action #=> String, one of "DEPLOY", "UNDEPLOY"
971
971
  # resp.stage_deployment.deployment_id #=> String
972
+ # resp.stage_deployment.deployment_result.message #=> String
973
+ # resp.stage_deployment.deployment_result.result_code #=> String, one of "SUCCESS", "INVALID_ROLE_FAILURE", "UNSPECIFIED_FAILURE"
972
974
  # resp.stage_deployment.deployment_state #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED"
973
975
  # resp.stage_deployment.last_updated #=> Time
974
976
  # resp.stage_deployment.snapshot_id #=> String
@@ -1330,6 +1332,8 @@ module Aws::GameSparks
1330
1332
  # resp.stage_deployments #=> Array
1331
1333
  # resp.stage_deployments[0].deployment_action #=> String, one of "DEPLOY", "UNDEPLOY"
1332
1334
  # resp.stage_deployments[0].deployment_id #=> String
1335
+ # resp.stage_deployments[0].deployment_result.message #=> String
1336
+ # resp.stage_deployments[0].deployment_result.result_code #=> String, one of "SUCCESS", "INVALID_ROLE_FAILURE", "UNSPECIFIED_FAILURE"
1333
1337
  # resp.stage_deployments[0].deployment_state #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED"
1334
1338
  # resp.stage_deployments[0].last_updated #=> Time
1335
1339
  # resp.stage_deployments[0].snapshot_id #=> String
@@ -1509,6 +1513,8 @@ module Aws::GameSparks
1509
1513
  # resp.stage_deployment.created #=> Time
1510
1514
  # resp.stage_deployment.deployment_action #=> String, one of "DEPLOY", "UNDEPLOY"
1511
1515
  # resp.stage_deployment.deployment_id #=> String
1516
+ # resp.stage_deployment.deployment_result.message #=> String
1517
+ # resp.stage_deployment.deployment_result.result_code #=> String, one of "SUCCESS", "INVALID_ROLE_FAILURE", "UNSPECIFIED_FAILURE"
1512
1518
  # resp.stage_deployment.deployment_state #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED"
1513
1519
  # resp.stage_deployment.last_updated #=> Time
1514
1520
  # resp.stage_deployment.snapshot_id #=> String
@@ -1767,7 +1773,7 @@ module Aws::GameSparks
1767
1773
  params: params,
1768
1774
  config: config)
1769
1775
  context[:gem_name] = 'aws-sdk-gamesparks'
1770
- context[:gem_version] = '1.0.0'
1776
+ context[:gem_version] = '1.1.0'
1771
1777
  Seahorse::Client::Request.new(handlers, context)
1772
1778
  end
1773
1779
 
@@ -35,6 +35,7 @@ module Aws::GameSparks
35
35
  DeleteStageResult = Shapes::StructureShape.new(name: 'DeleteStageResult')
36
36
  DeploymentAction = Shapes::StringShape.new(name: 'DeploymentAction')
37
37
  DeploymentId = Shapes::StringShape.new(name: 'DeploymentId')
38
+ DeploymentResult = Shapes::StructureShape.new(name: 'DeploymentResult')
38
39
  DeploymentState = Shapes::StringShape.new(name: 'DeploymentState')
39
40
  DisconnectPlayerRequest = Shapes::StructureShape.new(name: 'DisconnectPlayerRequest')
40
41
  DisconnectPlayerResult = Shapes::StructureShape.new(name: 'DisconnectPlayerResult')
@@ -108,6 +109,7 @@ module Aws::GameSparks
108
109
  ListTagsForResourceResult = Shapes::StructureShape.new(name: 'ListTagsForResourceResult')
109
110
  LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
110
111
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
112
+ Message = Shapes::StringShape.new(name: 'Message')
111
113
  NextToken = Shapes::StringShape.new(name: 'NextToken')
112
114
  Operation = Shapes::StringShape.new(name: 'Operation')
113
115
  Path = Shapes::StringShape.new(name: 'Path')
@@ -115,6 +117,7 @@ module Aws::GameSparks
115
117
  RawGameConfigurationData = Shapes::BlobShape.new(name: 'RawGameConfigurationData')
116
118
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
117
119
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
120
+ ResultCode = Shapes::StringShape.new(name: 'ResultCode')
118
121
  RoleARN = Shapes::StringShape.new(name: 'RoleARN')
119
122
  S3PresignedUrl = Shapes::StringShape.new(name: 'S3PresignedUrl')
120
123
  Section = Shapes::StructureShape.new(name: 'Section')
@@ -214,6 +217,10 @@ module Aws::GameSparks
214
217
 
215
218
  DeleteStageResult.struct_class = Types::DeleteStageResult
216
219
 
220
+ DeploymentResult.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
221
+ DeploymentResult.add_member(:result_code, Shapes::ShapeRef.new(shape: ResultCode, location_name: "ResultCode"))
222
+ DeploymentResult.struct_class = Types::DeploymentResult
223
+
217
224
  DisconnectPlayerRequest.add_member(:game_name, Shapes::ShapeRef.new(shape: GameName, required: true, location: "uri", location_name: "GameName"))
218
225
  DisconnectPlayerRequest.add_member(:player_id, Shapes::ShapeRef.new(shape: PlayerId, required: true, location: "uri", location_name: "PlayerId"))
219
226
  DisconnectPlayerRequest.add_member(:stage_name, Shapes::ShapeRef.new(shape: StageName, required: true, location: "uri", location_name: "StageName"))
@@ -474,6 +481,7 @@ module Aws::GameSparks
474
481
  StageDeploymentDetails.add_member(:created, Shapes::ShapeRef.new(shape: DateTime, location_name: "Created"))
475
482
  StageDeploymentDetails.add_member(:deployment_action, Shapes::ShapeRef.new(shape: DeploymentAction, location_name: "DeploymentAction"))
476
483
  StageDeploymentDetails.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "DeploymentId"))
484
+ StageDeploymentDetails.add_member(:deployment_result, Shapes::ShapeRef.new(shape: DeploymentResult, location_name: "DeploymentResult"))
477
485
  StageDeploymentDetails.add_member(:deployment_state, Shapes::ShapeRef.new(shape: DeploymentState, location_name: "DeploymentState"))
478
486
  StageDeploymentDetails.add_member(:last_updated, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastUpdated"))
479
487
  StageDeploymentDetails.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "SnapshotId"))
@@ -483,6 +491,7 @@ module Aws::GameSparks
483
491
 
484
492
  StageDeploymentSummary.add_member(:deployment_action, Shapes::ShapeRef.new(shape: DeploymentAction, location_name: "DeploymentAction"))
485
493
  StageDeploymentSummary.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "DeploymentId"))
494
+ StageDeploymentSummary.add_member(:deployment_result, Shapes::ShapeRef.new(shape: DeploymentResult, location_name: "DeploymentResult"))
486
495
  StageDeploymentSummary.add_member(:deployment_state, Shapes::ShapeRef.new(shape: DeploymentState, location_name: "DeploymentState"))
487
496
  StageDeploymentSummary.add_member(:last_updated, Shapes::ShapeRef.new(shape: DateTime, location_name: "LastUpdated"))
488
497
  StageDeploymentSummary.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "SnapshotId"))
@@ -262,6 +262,25 @@ module Aws::GameSparks
262
262
  #
263
263
  class DeleteStageResult < Aws::EmptyStructure; end
264
264
 
265
+ # The result of the deployment.
266
+ #
267
+ # @!attribute [rw] message
268
+ # Details about the deployment result.
269
+ # @return [String]
270
+ #
271
+ # @!attribute [rw] result_code
272
+ # The type of deployment result.
273
+ # @return [String]
274
+ #
275
+ # @see http://docs.aws.amazon.com/goto/WebAPI/gamesparks-2021-08-17/DeploymentResult AWS API Documentation
276
+ #
277
+ class DeploymentResult < Struct.new(
278
+ :message,
279
+ :result_code)
280
+ SENSITIVE = []
281
+ include Aws::Structure
282
+ end
283
+
265
284
  # @note When making an API call, you may pass DisconnectPlayerRequest
266
285
  # data as a hash:
267
286
  #
@@ -1649,6 +1668,10 @@ module Aws::GameSparks
1649
1668
  # The identifier of the deployment.
1650
1669
  # @return [String]
1651
1670
  #
1671
+ # @!attribute [rw] deployment_result
1672
+ # The result of the deployment.
1673
+ # @return [Types::DeploymentResult]
1674
+ #
1652
1675
  # @!attribute [rw] deployment_state
1653
1676
  # The state of the deployment.
1654
1677
  # @return [String]
@@ -1667,6 +1690,7 @@ module Aws::GameSparks
1667
1690
  :created,
1668
1691
  :deployment_action,
1669
1692
  :deployment_id,
1693
+ :deployment_result,
1670
1694
  :deployment_state,
1671
1695
  :last_updated,
1672
1696
  :snapshot_id)
@@ -1684,6 +1708,10 @@ module Aws::GameSparks
1684
1708
  # The identifier of the deployment.
1685
1709
  # @return [String]
1686
1710
  #
1711
+ # @!attribute [rw] deployment_result
1712
+ # The result of the deployment.
1713
+ # @return [Types::DeploymentResult]
1714
+ #
1687
1715
  # @!attribute [rw] deployment_state
1688
1716
  # The state of the deployment.
1689
1717
  # @return [String]
@@ -1701,6 +1729,7 @@ module Aws::GameSparks
1701
1729
  class StageDeploymentSummary < Struct.new(
1702
1730
  :deployment_action,
1703
1731
  :deployment_id,
1732
+ :deployment_result,
1704
1733
  :deployment_state,
1705
1734
  :last_updated,
1706
1735
  :snapshot_id)
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-gamesparks/customizations'
48
48
  # @!group service
49
49
  module Aws::GameSparks
50
50
 
51
- GEM_VERSION = '1.0.0'
51
+ GEM_VERSION = '1.1.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-gamesparks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.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: 2022-03-23 00:00:00.000000000 Z
11
+ date: 2022-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core