aws-sdk-robomaker 1.8.0 → 1.9.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ca14fe390f39eff0d0fe07c575a56873ecd351b
4
- data.tar.gz: 58a27fb46c049da16da5ff3b6caa746467db8296
3
+ metadata.gz: a54fe4c710dad35d824b798246c3072108ba1140
4
+ data.tar.gz: 7d9ab70132ea4761a83bf6d39f2928ab81421b9b
5
5
  SHA512:
6
- metadata.gz: be97ba4dac86645462ceb778032677a8f6b950d010dbda13ab5a7edefe346df37576444fe734c38b1f7526b8ece9afc10eacb1fdbea4843142ed1209edfa0975
7
- data.tar.gz: 9946c1564f410d49eba56ea1a209fb36df7962193ab89d7be633d3b5ac514e836cdf4ba488def0959c3952a92e887ec45ce8d2c038b40c74245fd8efc826e48f
6
+ metadata.gz: 4c767ea782dd3a71bc58dfdbb729c9926594e5153e2d130646fdb62695e067a859d3bd4e0cbdcdabdbab03ff705ac8497e48da613287628ef86ebb1e09715e63
7
+ data.tar.gz: 26d5d6aa8a2dd5a372c23c545252db348620b2f4e0b9291b4049ca8f5595d89adb1d36f9010e6b5bed1a1abc0e53ad52c5b04778942f773be3b0867209df1a80
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-robomaker/customizations'
42
42
  # @service
43
43
  module Aws::RoboMaker
44
44
 
45
- GEM_VERSION = '1.8.0'
45
+ GEM_VERSION = '1.9.0'
46
46
 
47
47
  end
@@ -272,6 +272,7 @@ module Aws::RoboMaker
272
272
  # resp.jobs[0].arn #=> String
273
273
  # resp.jobs[0].name #=> String
274
274
  # resp.jobs[0].status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
275
+ # resp.jobs[0].last_started_at #=> Time
275
276
  # resp.jobs[0].last_updated_at #=> Time
276
277
  # resp.jobs[0].failure_behavior #=> String, one of "Fail", "Continue"
277
278
  # resp.jobs[0].failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
@@ -316,6 +317,28 @@ module Aws::RoboMaker
316
317
  req.send_request(options)
317
318
  end
318
319
 
320
+ # Cancels the specified deployment job.
321
+ #
322
+ # @option params [required, String] :job
323
+ # The deployment job ARN to cancel.
324
+ #
325
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
326
+ #
327
+ # @example Request syntax with placeholder values
328
+ #
329
+ # resp = client.cancel_deployment_job({
330
+ # job: "Arn", # required
331
+ # })
332
+ #
333
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelDeploymentJob AWS API Documentation
334
+ #
335
+ # @overload cancel_deployment_job(params = {})
336
+ # @param [Hash] params ({})
337
+ def cancel_deployment_job(params = {}, options = {})
338
+ req = build_request(:cancel_deployment_job, params)
339
+ req.send_request(options)
340
+ end
341
+
319
342
  # Cancels the specified simulation job.
320
343
  #
321
344
  # @option params [required, String] :job
@@ -420,7 +443,7 @@ module Aws::RoboMaker
420
443
  #
421
444
  # resp.arn #=> String
422
445
  # resp.fleet #=> String
423
- # resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded"
446
+ # resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
424
447
  # resp.deployment_application_configs #=> Array
425
448
  # resp.deployment_application_configs[0].application #=> String
426
449
  # resp.deployment_application_configs[0].application_version #=> String
@@ -874,6 +897,7 @@ module Aws::RoboMaker
874
897
  #
875
898
  # * {Types::CreateSimulationJobResponse#arn #arn} => String
876
899
  # * {Types::CreateSimulationJobResponse#status #status} => String
900
+ # * {Types::CreateSimulationJobResponse#last_started_at #last_started_at} => Time
877
901
  # * {Types::CreateSimulationJobResponse#last_updated_at #last_updated_at} => Time
878
902
  # * {Types::CreateSimulationJobResponse#failure_behavior #failure_behavior} => String
879
903
  # * {Types::CreateSimulationJobResponse#failure_code #failure_code} => String
@@ -938,6 +962,7 @@ module Aws::RoboMaker
938
962
  #
939
963
  # resp.arn #=> String
940
964
  # resp.status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
965
+ # resp.last_started_at #=> Time
941
966
  # resp.last_updated_at #=> Time
942
967
  # resp.failure_behavior #=> String, one of "Fail", "Continue"
943
968
  # resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
@@ -1138,7 +1163,7 @@ module Aws::RoboMaker
1138
1163
  #
1139
1164
  # resp.arn #=> String
1140
1165
  # resp.fleet #=> String
1141
- # resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded"
1166
+ # resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
1142
1167
  # resp.deployment_config.concurrent_deployment_percentage #=> Integer
1143
1168
  # resp.deployment_config.failure_threshold_percentage #=> Integer
1144
1169
  # resp.deployment_application_configs #=> Array
@@ -1213,7 +1238,7 @@ module Aws::RoboMaker
1213
1238
  # resp.robots[0].last_deployment_job #=> String
1214
1239
  # resp.robots[0].last_deployment_time #=> Time
1215
1240
  # resp.created_at #=> Time
1216
- # resp.last_deployment_status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded"
1241
+ # resp.last_deployment_status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
1217
1242
  # resp.last_deployment_job #=> String
1218
1243
  # resp.last_deployment_time #=> Time
1219
1244
  # resp.tags #=> Hash
@@ -1395,6 +1420,7 @@ module Aws::RoboMaker
1395
1420
  # * {Types::DescribeSimulationJobResponse#arn #arn} => String
1396
1421
  # * {Types::DescribeSimulationJobResponse#name #name} => String
1397
1422
  # * {Types::DescribeSimulationJobResponse#status #status} => String
1423
+ # * {Types::DescribeSimulationJobResponse#last_started_at #last_started_at} => Time
1398
1424
  # * {Types::DescribeSimulationJobResponse#last_updated_at #last_updated_at} => Time
1399
1425
  # * {Types::DescribeSimulationJobResponse#failure_behavior #failure_behavior} => String
1400
1426
  # * {Types::DescribeSimulationJobResponse#failure_code #failure_code} => String
@@ -1420,6 +1446,7 @@ module Aws::RoboMaker
1420
1446
  # resp.arn #=> String
1421
1447
  # resp.name #=> String
1422
1448
  # resp.status #=> String, one of "Pending", "Preparing", "Running", "Restarting", "Completed", "Failed", "RunningFailed", "Terminating", "Terminated", "Canceled"
1449
+ # resp.last_started_at #=> Time
1423
1450
  # resp.last_updated_at #=> Time
1424
1451
  # resp.failure_behavior #=> String, one of "Fail", "Continue"
1425
1452
  # resp.failure_code #=> String, one of "InternalServiceError", "RobotApplicationCrash", "SimulationApplicationCrash", "BadPermissionsRobotApplication", "BadPermissionsSimulationApplication", "BadPermissionsS3Output", "BadPermissionsCloudwatchLogs", "SubnetIpLimitExceeded", "ENILimitExceeded", "BadPermissionsUserCredentials", "InvalidBundleRobotApplication", "InvalidBundleSimulationApplication", "RobotApplicationVersionMismatchedEtag", "SimulationApplicationVersionMismatchedEtag", "WrongRegionS3Output", "WrongRegionRobotApplication", "WrongRegionSimulationApplication"
@@ -1525,7 +1552,7 @@ module Aws::RoboMaker
1525
1552
  # resp.deployment_jobs #=> Array
1526
1553
  # resp.deployment_jobs[0].arn #=> String
1527
1554
  # resp.deployment_jobs[0].fleet #=> String
1528
- # resp.deployment_jobs[0].status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded"
1555
+ # resp.deployment_jobs[0].status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
1529
1556
  # resp.deployment_jobs[0].deployment_application_configs #=> Array
1530
1557
  # resp.deployment_jobs[0].deployment_application_configs[0].application #=> String
1531
1558
  # resp.deployment_jobs[0].deployment_application_configs[0].application_version #=> String
@@ -1606,7 +1633,7 @@ module Aws::RoboMaker
1606
1633
  # resp.fleet_details[0].name #=> String
1607
1634
  # resp.fleet_details[0].arn #=> String
1608
1635
  # resp.fleet_details[0].created_at #=> Time
1609
- # resp.fleet_details[0].last_deployment_status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded"
1636
+ # resp.fleet_details[0].last_deployment_status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
1610
1637
  # resp.fleet_details[0].last_deployment_job #=> String
1611
1638
  # resp.fleet_details[0].last_deployment_time #=> Time
1612
1639
  # resp.next_token #=> String
@@ -1682,6 +1709,8 @@ module Aws::RoboMaker
1682
1709
  # resp.robot_application_summaries[0].arn #=> String
1683
1710
  # resp.robot_application_summaries[0].version #=> String
1684
1711
  # resp.robot_application_summaries[0].last_updated_at #=> Time
1712
+ # resp.robot_application_summaries[0].robot_software_suite.name #=> String, one of "ROS"
1713
+ # resp.robot_application_summaries[0].robot_software_suite.version #=> String, one of "Kinetic"
1685
1714
  # resp.next_token #=> String
1686
1715
  #
1687
1716
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListRobotApplications AWS API Documentation
@@ -1830,6 +1859,10 @@ module Aws::RoboMaker
1830
1859
  # resp.simulation_application_summaries[0].arn #=> String
1831
1860
  # resp.simulation_application_summaries[0].version #=> String
1832
1861
  # resp.simulation_application_summaries[0].last_updated_at #=> Time
1862
+ # resp.simulation_application_summaries[0].robot_software_suite.name #=> String, one of "ROS"
1863
+ # resp.simulation_application_summaries[0].robot_software_suite.version #=> String, one of "Kinetic"
1864
+ # resp.simulation_application_summaries[0].simulation_software_suite.name #=> String, one of "Gazebo"
1865
+ # resp.simulation_application_summaries[0].simulation_software_suite.version #=> String
1833
1866
  # resp.next_token #=> String
1834
1867
  #
1835
1868
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListSimulationApplications AWS API Documentation
@@ -2037,7 +2070,7 @@ module Aws::RoboMaker
2037
2070
  #
2038
2071
  # resp.arn #=> String
2039
2072
  # resp.fleet #=> String
2040
- # resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded"
2073
+ # resp.status #=> String, one of "Pending", "Preparing", "InProgress", "Failed", "Succeeded", "Canceled"
2041
2074
  # resp.deployment_config.concurrent_deployment_percentage #=> Integer
2042
2075
  # resp.deployment_config.failure_threshold_percentage #=> Integer
2043
2076
  # resp.deployment_application_configs #=> Array
@@ -2303,7 +2336,7 @@ module Aws::RoboMaker
2303
2336
  params: params,
2304
2337
  config: config)
2305
2338
  context[:gem_name] = 'aws-sdk-robomaker'
2306
- context[:gem_version] = '1.8.0'
2339
+ context[:gem_version] = '1.9.0'
2307
2340
  Seahorse::Client::Request.new(handlers, context)
2308
2341
  end
2309
2342
 
@@ -17,6 +17,8 @@ module Aws::RoboMaker
17
17
  BatchDescribeSimulationJobRequest = Shapes::StructureShape.new(name: 'BatchDescribeSimulationJobRequest')
18
18
  BatchDescribeSimulationJobResponse = Shapes::StructureShape.new(name: 'BatchDescribeSimulationJobResponse')
19
19
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
20
+ CancelDeploymentJobRequest = Shapes::StructureShape.new(name: 'CancelDeploymentJobRequest')
21
+ CancelDeploymentJobResponse = Shapes::StructureShape.new(name: 'CancelDeploymentJobResponse')
20
22
  CancelSimulationJobRequest = Shapes::StructureShape.new(name: 'CancelSimulationJobRequest')
21
23
  CancelSimulationJobResponse = Shapes::StructureShape.new(name: 'CancelSimulationJobResponse')
22
24
  ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
@@ -87,6 +89,7 @@ module Aws::RoboMaker
87
89
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
88
90
  InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
89
91
  JobDuration = Shapes::IntegerShape.new(name: 'JobDuration')
92
+ LastStartedAt = Shapes::TimestampShape.new(name: 'LastStartedAt')
90
93
  LastUpdatedAt = Shapes::TimestampShape.new(name: 'LastUpdatedAt')
91
94
  LaunchConfig = Shapes::StructureShape.new(name: 'LaunchConfig')
92
95
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
@@ -190,6 +193,11 @@ module Aws::RoboMaker
190
193
  BatchDescribeSimulationJobResponse.add_member(:unprocessed_jobs, Shapes::ShapeRef.new(shape: Arns, location_name: "unprocessedJobs"))
191
194
  BatchDescribeSimulationJobResponse.struct_class = Types::BatchDescribeSimulationJobResponse
192
195
 
196
+ CancelDeploymentJobRequest.add_member(:job, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "job"))
197
+ CancelDeploymentJobRequest.struct_class = Types::CancelDeploymentJobRequest
198
+
199
+ CancelDeploymentJobResponse.struct_class = Types::CancelDeploymentJobResponse
200
+
193
201
  CancelSimulationJobRequest.add_member(:job, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "job"))
194
202
  CancelSimulationJobRequest.struct_class = Types::CancelSimulationJobRequest
195
203
 
@@ -317,6 +325,7 @@ module Aws::RoboMaker
317
325
 
318
326
  CreateSimulationJobResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
319
327
  CreateSimulationJobResponse.add_member(:status, Shapes::ShapeRef.new(shape: SimulationJobStatus, location_name: "status"))
328
+ CreateSimulationJobResponse.add_member(:last_started_at, Shapes::ShapeRef.new(shape: LastStartedAt, location_name: "lastStartedAt"))
320
329
  CreateSimulationJobResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
321
330
  CreateSimulationJobResponse.add_member(:failure_behavior, Shapes::ShapeRef.new(shape: FailureBehavior, location_name: "failureBehavior"))
322
331
  CreateSimulationJobResponse.add_member(:failure_code, Shapes::ShapeRef.new(shape: SimulationJobErrorCode, location_name: "failureCode"))
@@ -470,6 +479,7 @@ module Aws::RoboMaker
470
479
  DescribeSimulationJobResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
471
480
  DescribeSimulationJobResponse.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
472
481
  DescribeSimulationJobResponse.add_member(:status, Shapes::ShapeRef.new(shape: SimulationJobStatus, location_name: "status"))
482
+ DescribeSimulationJobResponse.add_member(:last_started_at, Shapes::ShapeRef.new(shape: LastStartedAt, location_name: "lastStartedAt"))
473
483
  DescribeSimulationJobResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
474
484
  DescribeSimulationJobResponse.add_member(:failure_behavior, Shapes::ShapeRef.new(shape: FailureBehavior, location_name: "failureBehavior"))
475
485
  DescribeSimulationJobResponse.add_member(:failure_code, Shapes::ShapeRef.new(shape: SimulationJobErrorCode, location_name: "failureCode"))
@@ -644,6 +654,7 @@ module Aws::RoboMaker
644
654
  RobotApplicationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
645
655
  RobotApplicationSummary.add_member(:version, Shapes::ShapeRef.new(shape: Version, location_name: "version"))
646
656
  RobotApplicationSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
657
+ RobotApplicationSummary.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, location_name: "robotSoftwareSuite"))
647
658
  RobotApplicationSummary.struct_class = Types::RobotApplicationSummary
648
659
 
649
660
  RobotDeployment.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
@@ -680,11 +691,14 @@ module Aws::RoboMaker
680
691
  SimulationApplicationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
681
692
  SimulationApplicationSummary.add_member(:version, Shapes::ShapeRef.new(shape: Version, location_name: "version"))
682
693
  SimulationApplicationSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
694
+ SimulationApplicationSummary.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, location_name: "robotSoftwareSuite"))
695
+ SimulationApplicationSummary.add_member(:simulation_software_suite, Shapes::ShapeRef.new(shape: SimulationSoftwareSuite, location_name: "simulationSoftwareSuite"))
683
696
  SimulationApplicationSummary.struct_class = Types::SimulationApplicationSummary
684
697
 
685
698
  SimulationJob.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
686
699
  SimulationJob.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "name"))
687
700
  SimulationJob.add_member(:status, Shapes::ShapeRef.new(shape: SimulationJobStatus, location_name: "status"))
701
+ SimulationJob.add_member(:last_started_at, Shapes::ShapeRef.new(shape: LastStartedAt, location_name: "lastStartedAt"))
688
702
  SimulationJob.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
689
703
  SimulationJob.add_member(:failure_behavior, Shapes::ShapeRef.new(shape: FailureBehavior, location_name: "failureBehavior"))
690
704
  SimulationJob.add_member(:failure_code, Shapes::ShapeRef.new(shape: SimulationJobErrorCode, location_name: "failureCode"))
@@ -843,6 +857,18 @@ module Aws::RoboMaker
843
857
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
844
858
  end)
845
859
 
860
+ api.add_operation(:cancel_deployment_job, Seahorse::Model::Operation.new.tap do |o|
861
+ o.name = "CancelDeploymentJob"
862
+ o.http_method = "POST"
863
+ o.http_request_uri = "/cancelDeploymentJob"
864
+ o.input = Shapes::ShapeRef.new(shape: CancelDeploymentJobRequest)
865
+ o.output = Shapes::ShapeRef.new(shape: CancelDeploymentJobResponse)
866
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
867
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
868
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
869
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
870
+ end)
871
+
846
872
  api.add_operation(:cancel_simulation_job, Seahorse::Model::Operation.new.tap do |o|
847
873
  o.name = "CancelSimulationJob"
848
874
  o.http_method = "POST"
@@ -43,6 +43,28 @@ module Aws::RoboMaker
43
43
  include Aws::Structure
44
44
  end
45
45
 
46
+ # @note When making an API call, you may pass CancelDeploymentJobRequest
47
+ # data as a hash:
48
+ #
49
+ # {
50
+ # job: "Arn", # required
51
+ # }
52
+ #
53
+ # @!attribute [rw] job
54
+ # The deployment job ARN to cancel.
55
+ # @return [String]
56
+ #
57
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelDeploymentJobRequest AWS API Documentation
58
+ #
59
+ class CancelDeploymentJobRequest < Struct.new(
60
+ :job)
61
+ include Aws::Structure
62
+ end
63
+
64
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CancelDeploymentJobResponse AWS API Documentation
65
+ #
66
+ class CancelDeploymentJobResponse < Aws::EmptyStructure; end
67
+
46
68
  # @note When making an API call, you may pass CancelSimulationJobRequest
47
69
  # data as a hash:
48
70
  #
@@ -880,6 +902,11 @@ module Aws::RoboMaker
880
902
  # The status of the simulation job.
881
903
  # @return [String]
882
904
  #
905
+ # @!attribute [rw] last_started_at
906
+ # The time, in milliseconds since the epoch, when the simulation job
907
+ # was last started.
908
+ # @return [Time]
909
+ #
883
910
  # @!attribute [rw] last_updated_at
884
911
  # The time, in milliseconds since the epoch, when the simulation job
885
912
  # was last updated.
@@ -997,6 +1024,7 @@ module Aws::RoboMaker
997
1024
  class CreateSimulationJobResponse < Struct.new(
998
1025
  :arn,
999
1026
  :status,
1027
+ :last_started_at,
1000
1028
  :last_updated_at,
1001
1029
  :failure_behavior,
1002
1030
  :failure_code,
@@ -1716,6 +1744,11 @@ module Aws::RoboMaker
1716
1744
  # The status of the simulation job.
1717
1745
  # @return [String]
1718
1746
  #
1747
+ # @!attribute [rw] last_started_at
1748
+ # The time, in milliseconds since the epoch, when the simulation job
1749
+ # was last started.
1750
+ # @return [Time]
1751
+ #
1719
1752
  # @!attribute [rw] last_updated_at
1720
1753
  # The time, in milliseconds since the epoch, when the simulation job
1721
1754
  # was last updated.
@@ -1844,6 +1877,7 @@ module Aws::RoboMaker
1844
1877
  :arn,
1845
1878
  :name,
1846
1879
  :status,
1880
+ :last_started_at,
1847
1881
  :last_updated_at,
1848
1882
  :failure_behavior,
1849
1883
  :failure_code,
@@ -2556,11 +2590,11 @@ module Aws::RoboMaker
2556
2590
  #
2557
2591
  # : Validating the deployment.
2558
2592
  #
2559
- # Downloading/Extracting
2593
+ # DownloadingExtracting
2560
2594
  #
2561
2595
  # : Downloading and extracting the bundle on the robot.
2562
2596
  #
2563
- # Executing pre-launch script(s)
2597
+ # ExecutingPreLaunch
2564
2598
  #
2565
2599
  # : Executing pre-launch script(s) if provided.
2566
2600
  #
@@ -2568,7 +2602,7 @@ module Aws::RoboMaker
2568
2602
  #
2569
2603
  # : Launching the robot application.
2570
2604
  #
2571
- # Executing post-launch script(s)
2605
+ # ExecutingPostLaunch
2572
2606
  #
2573
2607
  # : Executing post-launch script(s) if provided.
2574
2608
  #
@@ -2827,13 +2861,18 @@ module Aws::RoboMaker
2827
2861
  # application was last updated.
2828
2862
  # @return [Time]
2829
2863
  #
2864
+ # @!attribute [rw] robot_software_suite
2865
+ # Information about a robot software suite.
2866
+ # @return [Types::RobotSoftwareSuite]
2867
+ #
2830
2868
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/RobotApplicationSummary AWS API Documentation
2831
2869
  #
2832
2870
  class RobotApplicationSummary < Struct.new(
2833
2871
  :name,
2834
2872
  :arn,
2835
2873
  :version,
2836
- :last_updated_at)
2874
+ :last_updated_at,
2875
+ :robot_software_suite)
2837
2876
  include Aws::Structure
2838
2877
  end
2839
2878
 
@@ -2965,13 +3004,23 @@ module Aws::RoboMaker
2965
3004
  # application was last updated.
2966
3005
  # @return [Time]
2967
3006
  #
3007
+ # @!attribute [rw] robot_software_suite
3008
+ # Information about a robot software suite.
3009
+ # @return [Types::RobotSoftwareSuite]
3010
+ #
3011
+ # @!attribute [rw] simulation_software_suite
3012
+ # Information about a simulation software suite.
3013
+ # @return [Types::SimulationSoftwareSuite]
3014
+ #
2968
3015
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationApplicationSummary AWS API Documentation
2969
3016
  #
2970
3017
  class SimulationApplicationSummary < Struct.new(
2971
3018
  :name,
2972
3019
  :arn,
2973
3020
  :version,
2974
- :last_updated_at)
3021
+ :last_updated_at,
3022
+ :robot_software_suite,
3023
+ :simulation_software_suite)
2975
3024
  include Aws::Structure
2976
3025
  end
2977
3026
 
@@ -2989,6 +3038,11 @@ module Aws::RoboMaker
2989
3038
  # Status of the simulation job.
2990
3039
  # @return [String]
2991
3040
  #
3041
+ # @!attribute [rw] last_started_at
3042
+ # The time, in milliseconds since the epoch, when the simulation job
3043
+ # was last started.
3044
+ # @return [Time]
3045
+ #
2992
3046
  # @!attribute [rw] last_updated_at
2993
3047
  # The time, in milliseconds since the epoch, when the simulation job
2994
3048
  # was last updated.
@@ -3034,12 +3088,7 @@ module Aws::RoboMaker
3034
3088
  # @!attribute [rw] iam_role
3035
3089
  # The IAM role that allows the simulation instance to call the AWS
3036
3090
  # APIs that are specified in its associated policies on your behalf.
3037
- # This is how credentials are passed in to your simulation job. See
3038
- # how to [specify AWS security credentials for your application][1].
3039
- #
3040
- #
3041
- #
3042
- # [1]: https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/deployment-ecs-specify-credentials
3091
+ # This is how credentials are passed in to your simulation job.
3043
3092
  # @return [String]
3044
3093
  #
3045
3094
  # @!attribute [rw] robot_applications
@@ -3065,6 +3114,7 @@ module Aws::RoboMaker
3065
3114
  :arn,
3066
3115
  :name,
3067
3116
  :status,
3117
+ :last_started_at,
3068
3118
  :last_updated_at,
3069
3119
  :failure_behavior,
3070
3120
  :failure_code,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-robomaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.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: 2019-05-21 00:00:00.000000000 Z
11
+ date: 2019-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core