aws-sdk-robomaker 1.47.0 → 1.51.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
  SHA256:
3
- metadata.gz: 3d83c47d36e348414847c277ed5958f91cddcaeceb9ca8b6e84b4f4e9bee35f1
4
- data.tar.gz: b906c88cbf8b30cc9f937e000df0139c21ae68c77f15dbb7990aebb2b9658497
3
+ metadata.gz: 74a5f3a0217f80298fe868d0c9f49b1d702c6f0e5e822c1cfaf27a7f4cb9c793
4
+ data.tar.gz: d2661fd5048a89ae2eafc5c6f51b71b4eea1c5dcc89bb74b0e18c9b6763864c3
5
5
  SHA512:
6
- metadata.gz: d65446ef24cbff90a9aa8effe427d23804dffc93ace318f335e666a4ffb203330bdd81d03ca64c41fcae581d22255cf4ea5d99324b97b58a7514ca6dfac9b6ca
7
- data.tar.gz: cff03c3c14057faf5fc503b136390ae7bf9c1fee3bf177cbe34deb4a1d672249b54be2532a14b1bbc1070783d627f44b0ec2e170f3fc59e62bf319a82f4ca8ef
6
+ metadata.gz: 97e0fa19a229ce28d1ad454c5b842642745de663a9cbebcde55fe36cfb42c70b968433834523a7566a69ac4d93adef3306a96425187b717c4113fb66074b823d
7
+ data.tar.gz: ca60641c4183c0364177f5f9f68d18a911f65241a45893f8d19f90c4ab2917883c67bc95c0607027b05d50ebbd9ecc856989b4a3dbc936e3d34b05485a94674b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2022-03-15)
5
+ ------------------
6
+
7
+ * Feature - This release deprecates ROS, Ubuntu and Gazbeo from RoboMaker Simulation Service Software Suites in favor of user-supplied containers and Relaxed Software Suites.
8
+
9
+ 1.50.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.49.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - The release deprecates the use various APIs of RoboMaker Deployment Service in favor of AWS IoT GreenGrass v2.0.
18
+
19
+ 1.48.0 (2022-02-03)
20
+ ------------------
21
+
22
+ * Feature - The release deprecates the use various APIs of RoboMaker Deployment Service in favor of AWS IoT GreenGrass v2.0.
23
+
4
24
  1.47.0 (2021-12-21)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.51.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::RoboMaker
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -501,6 +505,9 @@ module Aws::RoboMaker
501
505
 
502
506
  # Cancels the specified deployment job.
503
507
  #
508
+ # This API will no longer be supported as of May 2, 2022. Use it to
509
+ # remove resources that were created for Deployment Service.
510
+ #
504
511
  # @option params [required, String] :job
505
512
  # The deployment job ARN to cancel.
506
513
  #
@@ -614,6 +621,8 @@ module Aws::RoboMaker
614
621
  # Deploys a specific version of a robot application to robots in a
615
622
  # fleet.
616
623
  #
624
+ # This API is no longer supported and will throw an error if used.
625
+ #
617
626
  # The robot application must have a numbered `applicationVersion` for
618
627
  # consistency reasons. To create a new version, use
619
628
  # `CreateRobotApplicationVersion` or see [Creating a Robot Application
@@ -733,6 +742,8 @@ module Aws::RoboMaker
733
742
  # Creates a fleet, a logical group of robots running the same robot
734
743
  # application.
735
744
  #
745
+ # This API is no longer supported and will throw an error if used.
746
+ #
736
747
  # @option params [required, String] :name
737
748
  # The name of the fleet.
738
749
  #
@@ -775,6 +786,8 @@ module Aws::RoboMaker
775
786
 
776
787
  # Creates a robot.
777
788
  #
789
+ # This API is no longer supported and will throw an error if used.
790
+ #
778
791
  # @option params [required, String] :name
779
792
  # The name for the robot.
780
793
  #
@@ -1244,7 +1257,7 @@ module Aws::RoboMaker
1244
1257
  # s3_prefix: "S3Key",
1245
1258
  # },
1246
1259
  # logging_config: {
1247
- # record_all_ros_topics: false, # required
1260
+ # record_all_ros_topics: false,
1248
1261
  # },
1249
1262
  # max_job_duration_in_seconds: 1, # required
1250
1263
  # iam_role: "IamRole", # required
@@ -1671,6 +1684,9 @@ module Aws::RoboMaker
1671
1684
 
1672
1685
  # Deletes a fleet.
1673
1686
  #
1687
+ # This API will no longer be supported as of May 2, 2022. Use it to
1688
+ # remove resources that were created for Deployment Service.
1689
+ #
1674
1690
  # @option params [required, String] :fleet
1675
1691
  # The Amazon Resource Name (ARN) of the fleet.
1676
1692
  #
@@ -1693,6 +1709,9 @@ module Aws::RoboMaker
1693
1709
 
1694
1710
  # Deletes a robot.
1695
1711
  #
1712
+ # This API will no longer be supported as of May 2, 2022. Use it to
1713
+ # remove resources that were created for Deployment Service.
1714
+ #
1696
1715
  # @option params [required, String] :robot
1697
1716
  # The Amazon Resource Name (ARN) of the robot.
1698
1717
  #
@@ -1790,6 +1809,9 @@ module Aws::RoboMaker
1790
1809
 
1791
1810
  # Deregisters a robot.
1792
1811
  #
1812
+ # This API will no longer be supported as of May 2, 2022. Use it to
1813
+ # remove resources that were created for Deployment Service.
1814
+ #
1793
1815
  # @option params [required, String] :fleet
1794
1816
  # The Amazon Resource Name (ARN) of the fleet.
1795
1817
  #
@@ -1824,6 +1846,9 @@ module Aws::RoboMaker
1824
1846
 
1825
1847
  # Describes a deployment job.
1826
1848
  #
1849
+ # This API will no longer be supported as of May 2, 2022. Use it to
1850
+ # remove resources that were created for Deployment Service.
1851
+ #
1827
1852
  # @option params [required, String] :job
1828
1853
  # The Amazon Resource Name (ARN) of the deployment job.
1829
1854
  #
@@ -1894,6 +1919,9 @@ module Aws::RoboMaker
1894
1919
 
1895
1920
  # Describes a fleet.
1896
1921
  #
1922
+ # This API will no longer be supported as of May 2, 2022. Use it to
1923
+ # remove resources that were created for Deployment Service.
1924
+ #
1897
1925
  # @option params [required, String] :fleet
1898
1926
  # The Amazon Resource Name (ARN) of the fleet.
1899
1927
  #
@@ -1946,6 +1974,9 @@ module Aws::RoboMaker
1946
1974
 
1947
1975
  # Describes a robot.
1948
1976
  #
1977
+ # This API will no longer be supported as of May 2, 2022. Use it to
1978
+ # remove resources that were created for Deployment Service.
1979
+ #
1949
1980
  # @option params [required, String] :robot
1950
1981
  # The Amazon Resource Name (ARN) of the robot to be described.
1951
1982
  #
@@ -2693,6 +2724,9 @@ module Aws::RoboMaker
2693
2724
  # Returns a list of deployment jobs for a fleet. You can optionally
2694
2725
  # provide filters to retrieve specific deployment jobs.
2695
2726
  #
2727
+ # This API will no longer be supported as of May 2, 2022. Use it to
2728
+ # remove resources that were created for Deployment Service.
2729
+ #
2696
2730
  # @option params [Array<Types::Filter>] :filters
2697
2731
  # Optional filters to limit results.
2698
2732
  #
@@ -2777,6 +2811,9 @@ module Aws::RoboMaker
2777
2811
  # Returns a list of fleets. You can optionally provide filters to
2778
2812
  # retrieve specific fleets.
2779
2813
  #
2814
+ # This API will no longer be supported as of May 2, 2022. Use it to
2815
+ # remove resources that were created for Deployment Service.
2816
+ #
2780
2817
  # @option params [String] :next_token
2781
2818
  # If the previous paginated request did not return all of the remaining
2782
2819
  # results, the response object's `nextToken` parameter value is set to
@@ -2919,6 +2956,9 @@ module Aws::RoboMaker
2919
2956
  # Returns a list of robots. You can optionally provide filters to
2920
2957
  # retrieve specific robots.
2921
2958
  #
2959
+ # This API will no longer be supported as of May 2, 2022. Use it to
2960
+ # remove resources that were created for Deployment Service.
2961
+ #
2922
2962
  # @option params [String] :next_token
2923
2963
  # If the previous paginated request did not return all of the remaining
2924
2964
  # results, the response object's `nextToken` parameter value is set to
@@ -3277,6 +3317,8 @@ module Aws::RoboMaker
3277
3317
  # resp.world_export_job_summaries[0].created_at #=> Time
3278
3318
  # resp.world_export_job_summaries[0].worlds #=> Array
3279
3319
  # resp.world_export_job_summaries[0].worlds[0] #=> String
3320
+ # resp.world_export_job_summaries[0].output_location.s3_bucket #=> String
3321
+ # resp.world_export_job_summaries[0].output_location.s3_prefix #=> String
3280
3322
  # resp.next_token #=> String
3281
3323
  #
3282
3324
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ListWorldExportJobs AWS API Documentation
@@ -3468,6 +3510,8 @@ module Aws::RoboMaker
3468
3510
 
3469
3511
  # Registers a robot with a fleet.
3470
3512
  #
3513
+ # This API is no longer supported and will throw an error if used.
3514
+ #
3471
3515
  # @option params [required, String] :fleet
3472
3516
  # The Amazon Resource Name (ARN) of the fleet.
3473
3517
  #
@@ -3571,7 +3615,7 @@ module Aws::RoboMaker
3571
3615
  # s3_prefix: "S3Key",
3572
3616
  # },
3573
3617
  # logging_config: {
3574
- # record_all_ros_topics: false, # required
3618
+ # record_all_ros_topics: false,
3575
3619
  # },
3576
3620
  # max_job_duration_in_seconds: 1, # required
3577
3621
  # iam_role: "IamRole",
@@ -3893,6 +3937,9 @@ module Aws::RoboMaker
3893
3937
  # Syncrhonizes robots in a fleet to the latest deployment. This is
3894
3938
  # helpful if robots were added after a deployment.
3895
3939
  #
3940
+ # This API will no longer be supported as of May 2, 2022. Use it to
3941
+ # remove resources that were created for Deployment Service.
3942
+ #
3896
3943
  # @option params [required, String] :client_request_token
3897
3944
  # Unique, case-sensitive identifier that you provide to ensure the
3898
3945
  # idempotency of the request.
@@ -4263,7 +4310,7 @@ module Aws::RoboMaker
4263
4310
  params: params,
4264
4311
  config: config)
4265
4312
  context[:gem_name] = 'aws-sdk-robomaker'
4266
- context[:gem_version] = '1.47.0'
4313
+ context[:gem_version] = '1.51.0'
4267
4314
  Seahorse::Client::Request.new(handlers, context)
4268
4315
  end
4269
4316
 
@@ -999,7 +999,7 @@ module Aws::RoboMaker
999
999
  ListWorldsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
1000
1000
  ListWorldsResponse.struct_class = Types::ListWorldsResponse
1001
1001
 
1002
- LoggingConfig.add_member(:record_all_ros_topics, Shapes::ShapeRef.new(shape: BoxedBoolean, required: true, location_name: "recordAllRosTopics"))
1002
+ LoggingConfig.add_member(:record_all_ros_topics, Shapes::ShapeRef.new(shape: BoxedBoolean, deprecated: true, location_name: "recordAllRosTopics", metadata: {"deprecatedMessage"=>"AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html."}))
1003
1003
  LoggingConfig.struct_class = Types::LoggingConfig
1004
1004
 
1005
1005
  NetworkInterface.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "networkInterfaceId"))
@@ -1065,9 +1065,9 @@ module Aws::RoboMaker
1065
1065
  RobotApplicationConfig.add_member(:application_version, Shapes::ShapeRef.new(shape: Version, location_name: "applicationVersion"))
1066
1066
  RobotApplicationConfig.add_member(:launch_config, Shapes::ShapeRef.new(shape: LaunchConfig, required: true, location_name: "launchConfig"))
1067
1067
  RobotApplicationConfig.add_member(:upload_configurations, Shapes::ShapeRef.new(shape: UploadConfigurations, location_name: "uploadConfigurations"))
1068
- RobotApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultUploadConfigurations"))
1068
+ RobotApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, deprecated: true, location_name: "useDefaultUploadConfigurations", metadata: {"deprecatedMessage"=>"AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html."}))
1069
1069
  RobotApplicationConfig.add_member(:tools, Shapes::ShapeRef.new(shape: Tools, location_name: "tools"))
1070
- RobotApplicationConfig.add_member(:use_default_tools, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultTools"))
1070
+ RobotApplicationConfig.add_member(:use_default_tools, Shapes::ShapeRef.new(shape: BoxedBoolean, deprecated: true, location_name: "useDefaultTools", metadata: {"deprecatedMessage"=>"AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html."}))
1071
1071
  RobotApplicationConfig.struct_class = Types::RobotApplicationConfig
1072
1072
 
1073
1073
  RobotApplicationConfigs.member = Shapes::ShapeRef.new(shape: RobotApplicationConfig)
@@ -1125,9 +1125,9 @@ module Aws::RoboMaker
1125
1125
  SimulationApplicationConfig.add_member(:launch_config, Shapes::ShapeRef.new(shape: LaunchConfig, required: true, location_name: "launchConfig"))
1126
1126
  SimulationApplicationConfig.add_member(:upload_configurations, Shapes::ShapeRef.new(shape: UploadConfigurations, location_name: "uploadConfigurations"))
1127
1127
  SimulationApplicationConfig.add_member(:world_configs, Shapes::ShapeRef.new(shape: WorldConfigs, location_name: "worldConfigs"))
1128
- SimulationApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultUploadConfigurations"))
1128
+ SimulationApplicationConfig.add_member(:use_default_upload_configurations, Shapes::ShapeRef.new(shape: BoxedBoolean, deprecated: true, location_name: "useDefaultUploadConfigurations", metadata: {"deprecatedMessage"=>"AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html."}))
1129
1129
  SimulationApplicationConfig.add_member(:tools, Shapes::ShapeRef.new(shape: Tools, location_name: "tools"))
1130
- SimulationApplicationConfig.add_member(:use_default_tools, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "useDefaultTools"))
1130
+ SimulationApplicationConfig.add_member(:use_default_tools, Shapes::ShapeRef.new(shape: BoxedBoolean, deprecated: true, location_name: "useDefaultTools", metadata: {"deprecatedMessage"=>"AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html."}))
1131
1131
  SimulationApplicationConfig.struct_class = Types::SimulationApplicationConfig
1132
1132
 
1133
1133
  SimulationApplicationConfigs.member = Shapes::ShapeRef.new(shape: SimulationApplicationConfig)
@@ -1385,6 +1385,7 @@ module Aws::RoboMaker
1385
1385
  WorldExportJobSummary.add_member(:status, Shapes::ShapeRef.new(shape: WorldExportJobStatus, location_name: "status"))
1386
1386
  WorldExportJobSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
1387
1387
  WorldExportJobSummary.add_member(:worlds, Shapes::ShapeRef.new(shape: Arns, location_name: "worlds"))
1388
+ WorldExportJobSummary.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "outputLocation"))
1388
1389
  WorldExportJobSummary.struct_class = Types::WorldExportJobSummary
1389
1390
 
1390
1391
  WorldFailure.add_member(:failure_code, Shapes::ShapeRef.new(shape: WorldGenerationJobErrorCode, location_name: "failureCode"))
@@ -1459,6 +1460,7 @@ module Aws::RoboMaker
1459
1460
  o.name = "CancelDeploymentJob"
1460
1461
  o.http_method = "POST"
1461
1462
  o.http_request_uri = "/cancelDeploymentJob"
1463
+ o.deprecated = true
1462
1464
  o.input = Shapes::ShapeRef.new(shape: CancelDeploymentJobRequest)
1463
1465
  o.output = Shapes::ShapeRef.new(shape: CancelDeploymentJobResponse)
1464
1466
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1519,6 +1521,7 @@ module Aws::RoboMaker
1519
1521
  o.name = "CreateDeploymentJob"
1520
1522
  o.http_method = "POST"
1521
1523
  o.http_request_uri = "/createDeploymentJob"
1524
+ o.deprecated = true
1522
1525
  o.input = Shapes::ShapeRef.new(shape: CreateDeploymentJobRequest)
1523
1526
  o.output = Shapes::ShapeRef.new(shape: CreateDeploymentJobResponse)
1524
1527
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1534,6 +1537,7 @@ module Aws::RoboMaker
1534
1537
  o.name = "CreateFleet"
1535
1538
  o.http_method = "POST"
1536
1539
  o.http_request_uri = "/createFleet"
1540
+ o.deprecated = true
1537
1541
  o.input = Shapes::ShapeRef.new(shape: CreateFleetRequest)
1538
1542
  o.output = Shapes::ShapeRef.new(shape: CreateFleetResponse)
1539
1543
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -1546,6 +1550,7 @@ module Aws::RoboMaker
1546
1550
  o.name = "CreateRobot"
1547
1551
  o.http_method = "POST"
1548
1552
  o.http_request_uri = "/createRobot"
1553
+ o.deprecated = true
1549
1554
  o.input = Shapes::ShapeRef.new(shape: CreateRobotRequest)
1550
1555
  o.output = Shapes::ShapeRef.new(shape: CreateRobotResponse)
1551
1556
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -1671,6 +1676,7 @@ module Aws::RoboMaker
1671
1676
  o.name = "DeleteFleet"
1672
1677
  o.http_method = "POST"
1673
1678
  o.http_request_uri = "/deleteFleet"
1679
+ o.deprecated = true
1674
1680
  o.input = Shapes::ShapeRef.new(shape: DeleteFleetRequest)
1675
1681
  o.output = Shapes::ShapeRef.new(shape: DeleteFleetResponse)
1676
1682
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -1682,6 +1688,7 @@ module Aws::RoboMaker
1682
1688
  o.name = "DeleteRobot"
1683
1689
  o.http_method = "POST"
1684
1690
  o.http_request_uri = "/deleteRobot"
1691
+ o.deprecated = true
1685
1692
  o.input = Shapes::ShapeRef.new(shape: DeleteRobotRequest)
1686
1693
  o.output = Shapes::ShapeRef.new(shape: DeleteRobotResponse)
1687
1694
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -1727,6 +1734,7 @@ module Aws::RoboMaker
1727
1734
  o.name = "DeregisterRobot"
1728
1735
  o.http_method = "POST"
1729
1736
  o.http_request_uri = "/deregisterRobot"
1737
+ o.deprecated = true
1730
1738
  o.input = Shapes::ShapeRef.new(shape: DeregisterRobotRequest)
1731
1739
  o.output = Shapes::ShapeRef.new(shape: DeregisterRobotResponse)
1732
1740
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -1739,6 +1747,7 @@ module Aws::RoboMaker
1739
1747
  o.name = "DescribeDeploymentJob"
1740
1748
  o.http_method = "POST"
1741
1749
  o.http_request_uri = "/describeDeploymentJob"
1750
+ o.deprecated = true
1742
1751
  o.input = Shapes::ShapeRef.new(shape: DescribeDeploymentJobRequest)
1743
1752
  o.output = Shapes::ShapeRef.new(shape: DescribeDeploymentJobResponse)
1744
1753
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1751,6 +1760,7 @@ module Aws::RoboMaker
1751
1760
  o.name = "DescribeFleet"
1752
1761
  o.http_method = "POST"
1753
1762
  o.http_request_uri = "/describeFleet"
1763
+ o.deprecated = true
1754
1764
  o.input = Shapes::ShapeRef.new(shape: DescribeFleetRequest)
1755
1765
  o.output = Shapes::ShapeRef.new(shape: DescribeFleetResponse)
1756
1766
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1763,6 +1773,7 @@ module Aws::RoboMaker
1763
1773
  o.name = "DescribeRobot"
1764
1774
  o.http_method = "POST"
1765
1775
  o.http_request_uri = "/describeRobot"
1776
+ o.deprecated = true
1766
1777
  o.input = Shapes::ShapeRef.new(shape: DescribeRobotRequest)
1767
1778
  o.output = Shapes::ShapeRef.new(shape: DescribeRobotResponse)
1768
1779
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1882,6 +1893,7 @@ module Aws::RoboMaker
1882
1893
  o.name = "ListDeploymentJobs"
1883
1894
  o.http_method = "POST"
1884
1895
  o.http_request_uri = "/listDeploymentJobs"
1896
+ o.deprecated = true
1885
1897
  o.input = Shapes::ShapeRef.new(shape: ListDeploymentJobsRequest)
1886
1898
  o.output = Shapes::ShapeRef.new(shape: ListDeploymentJobsResponse)
1887
1899
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1900,6 +1912,7 @@ module Aws::RoboMaker
1900
1912
  o.name = "ListFleets"
1901
1913
  o.http_method = "POST"
1902
1914
  o.http_request_uri = "/listFleets"
1915
+ o.deprecated = true
1903
1916
  o.input = Shapes::ShapeRef.new(shape: ListFleetsRequest)
1904
1917
  o.output = Shapes::ShapeRef.new(shape: ListFleetsResponse)
1905
1918
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1935,6 +1948,7 @@ module Aws::RoboMaker
1935
1948
  o.name = "ListRobots"
1936
1949
  o.http_method = "POST"
1937
1950
  o.http_request_uri = "/listRobots"
1951
+ o.deprecated = true
1938
1952
  o.input = Shapes::ShapeRef.new(shape: ListRobotsRequest)
1939
1953
  o.output = Shapes::ShapeRef.new(shape: ListRobotsResponse)
1940
1954
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -2083,6 +2097,7 @@ module Aws::RoboMaker
2083
2097
  o.name = "RegisterRobot"
2084
2098
  o.http_method = "POST"
2085
2099
  o.http_request_uri = "/registerRobot"
2100
+ o.deprecated = true
2086
2101
  o.input = Shapes::ShapeRef.new(shape: RegisterRobotRequest)
2087
2102
  o.output = Shapes::ShapeRef.new(shape: RegisterRobotResponse)
2088
2103
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
@@ -2122,6 +2137,7 @@ module Aws::RoboMaker
2122
2137
  o.name = "SyncDeploymentJob"
2123
2138
  o.http_method = "POST"
2124
2139
  o.http_request_uri = "/syncDeploymentJob"
2140
+ o.deprecated = true
2125
2141
  o.input = Shapes::ShapeRef.new(shape: SyncDeploymentJobRequest)
2126
2142
  o.output = Shapes::ShapeRef.new(shape: SyncDeploymentJobResponse)
2127
2143
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1093,7 +1093,7 @@ module Aws::RoboMaker
1093
1093
  # s3_prefix: "S3Key",
1094
1094
  # },
1095
1095
  # logging_config: {
1096
- # record_all_ros_topics: false, # required
1096
+ # record_all_ros_topics: false,
1097
1097
  # },
1098
1098
  # max_job_duration_in_seconds: 1, # required
1099
1099
  # iam_role: "IamRole", # required
@@ -4666,11 +4666,13 @@ module Aws::RoboMaker
4666
4666
  # data as a hash:
4667
4667
  #
4668
4668
  # {
4669
- # record_all_ros_topics: false, # required
4669
+ # record_all_ros_topics: false,
4670
4670
  # }
4671
4671
  #
4672
4672
  # @!attribute [rw] record_all_ros_topics
4673
4673
  # A boolean indicating whether to record all ROS topics.
4674
+ #
4675
+ # This API is no longer supported and will throw an error if used.
4674
4676
  # @return [Boolean]
4675
4677
  #
4676
4678
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LoggingConfig AWS API Documentation
@@ -5093,6 +5095,8 @@ module Aws::RoboMaker
5093
5095
  # application terminates and all ROS topics will be recorded.
5094
5096
  #
5095
5097
  # If you set this value, you must specify an `outputLocation`.
5098
+ #
5099
+ # This API is no longer supported and will throw an error if used.
5096
5100
  # @return [Boolean]
5097
5101
  #
5098
5102
  # @!attribute [rw] tools
@@ -5103,6 +5107,8 @@ module Aws::RoboMaker
5103
5107
  # A Boolean indicating whether to use default robot application tools.
5104
5108
  # The default tools are rviz, rqt, terminal and rosbag record. The
5105
5109
  # default is `False`.
5110
+ #
5111
+ # This API is no longer supported and will throw an error if used.
5106
5112
  # @return [Boolean]
5107
5113
  #
5108
5114
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/RobotApplicationConfig AWS API Documentation
@@ -5370,6 +5376,8 @@ module Aws::RoboMaker
5370
5376
  # application terminates and all ROS topics will be recorded.
5371
5377
  #
5372
5378
  # If you set this value, you must specify an `outputLocation`.
5379
+ #
5380
+ # This API is no longer supported and will throw an error if used.
5373
5381
  # @return [Boolean]
5374
5382
  #
5375
5383
  # @!attribute [rw] tools
@@ -5380,6 +5388,8 @@ module Aws::RoboMaker
5380
5388
  # A Boolean indicating whether to use default simulation application
5381
5389
  # tools. The default tools are rviz, rqt, terminal and rosbag record.
5382
5390
  # The default is `False`.
5391
+ #
5392
+ # This API is no longer supported and will throw an error if used.
5383
5393
  # @return [Boolean]
5384
5394
  #
5385
5395
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationApplicationConfig AWS API Documentation
@@ -5672,7 +5682,7 @@ module Aws::RoboMaker
5672
5682
  # s3_prefix: "S3Key",
5673
5683
  # },
5674
5684
  # logging_config: {
5675
- # record_all_ros_topics: false, # required
5685
+ # record_all_ros_topics: false,
5676
5686
  # },
5677
5687
  # max_job_duration_in_seconds: 1, # required
5678
5688
  # iam_role: "IamRole",
@@ -6039,7 +6049,7 @@ module Aws::RoboMaker
6039
6049
  # s3_prefix: "S3Key",
6040
6050
  # },
6041
6051
  # logging_config: {
6042
- # record_all_ros_topics: false, # required
6052
+ # record_all_ros_topics: false,
6043
6053
  # },
6044
6054
  # max_job_duration_in_seconds: 1, # required
6045
6055
  # iam_role: "IamRole",
@@ -7181,13 +7191,18 @@ module Aws::RoboMaker
7181
7191
  # A list of worlds.
7182
7192
  # @return [Array<String>]
7183
7193
  #
7194
+ # @!attribute [rw] output_location
7195
+ # The output location.
7196
+ # @return [Types::OutputLocation]
7197
+ #
7184
7198
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/WorldExportJobSummary AWS API Documentation
7185
7199
  #
7186
7200
  class WorldExportJobSummary < Struct.new(
7187
7201
  :arn,
7188
7202
  :status,
7189
7203
  :created_at,
7190
- :worlds)
7204
+ :worlds,
7205
+ :output_location)
7191
7206
  SENSITIVE = []
7192
7207
  include Aws::Structure
7193
7208
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-robomaker/customizations'
48
48
  # @!group service
49
49
  module Aws::RoboMaker
50
50
 
51
- GEM_VERSION = '1.47.0'
51
+ GEM_VERSION = '1.51.0'
52
52
 
53
53
  end
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.47.0
4
+ version: 1.51.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement