aws-sdk-robomaker 1.38.0 → 1.42.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: 97c69de2cd2affed3b85e1905e29b01261a8d2fcba9d43418f7ad831c7dbc639
4
- data.tar.gz: d5a8522ee1375c1c296642cd14e01e2a466ec5703222b7182febdf409414c07a
3
+ metadata.gz: 5cfb5e43deee5fb8dfeca909564b5d3d341048d12e6b56ba75be59cc6a1a47d4
4
+ data.tar.gz: e054f8c5f072508877bfaaa6e8fddc22f4deb1b75cf0b3b0788374d90930a1be
5
5
  SHA512:
6
- metadata.gz: 8160caeaed8878fbc6585fdd5940be71f640358f39671d6e0efd940b1ec42ee5486ec2fc2f99add0cf05e67c77164cb2c374e4cec256ec3efefd5b49320f37bc
7
- data.tar.gz: a48eebeff65ca96c9df00f60e513a745f8245cb586fbb7a0bf13b851a0e10bb2f4806653f02c44827a37fbd40622296a4f34d2ad5bf9b6a94d31f947fed63b80
6
+ metadata.gz: 7b9ecb866a7e721a01fd3c94175bdf5fead21854144757a0d36e839fe7bf6c48d4132cd7c085fd148aed19a88fddbe1f391f3492bfe02d60b353dfce90991e5a
7
+ data.tar.gz: 404ec858eaf18f29becd24371e5f8dc2cdf39bf1e3ee107f2fcab1b0ba77c35b0e3a47d70cea80c6f2b304f06dadfcb7b60bf968ed75236d1cf230898932c450
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2021-09-16)
5
+ ------------------
6
+
7
+ * Feature - Adding support to create container based Robot and Simulation applications by introducing an environment field
8
+
9
+ 1.41.0 (2021-09-01)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.40.0 (2021-08-20)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for RoboMaker
18
+
19
+ 1.39.0 (2021-07-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.38.0 (2021-07-28)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.42.0
@@ -804,7 +804,7 @@ module Aws::RoboMaker
804
804
  # @option params [required, String] :name
805
805
  # The name of the robot application.
806
806
  #
807
- # @option params [required, Array<Types::SourceConfig>] :sources
807
+ # @option params [Array<Types::SourceConfig>] :sources
808
808
  # The sources of the robot application.
809
809
  #
810
810
  # @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
@@ -815,6 +815,10 @@ module Aws::RoboMaker
815
815
  # A map that contains tag keys and tag values that are attached to the
816
816
  # robot application.
817
817
  #
818
+ # @option params [Types::Environment] :environment
819
+ # The object that contains that URI of the Docker image that you use for
820
+ # your robot application.
821
+ #
818
822
  # @return [Types::CreateRobotApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
819
823
  #
820
824
  # * {Types::CreateRobotApplicationResponse#arn #arn} => String
@@ -825,12 +829,13 @@ module Aws::RoboMaker
825
829
  # * {Types::CreateRobotApplicationResponse#last_updated_at #last_updated_at} => Time
826
830
  # * {Types::CreateRobotApplicationResponse#revision_id #revision_id} => String
827
831
  # * {Types::CreateRobotApplicationResponse#tags #tags} => Hash&lt;String,String&gt;
832
+ # * {Types::CreateRobotApplicationResponse#environment #environment} => Types::Environment
828
833
  #
829
834
  # @example Request syntax with placeholder values
830
835
  #
831
836
  # resp = client.create_robot_application({
832
837
  # name: "Name", # required
833
- # sources: [ # required
838
+ # sources: [
834
839
  # {
835
840
  # s3_bucket: "S3Bucket",
836
841
  # s3_key: "S3Key",
@@ -844,6 +849,9 @@ module Aws::RoboMaker
844
849
  # tags: {
845
850
  # "TagKey" => "TagValue",
846
851
  # },
852
+ # environment: {
853
+ # uri: "RepositoryUrl",
854
+ # },
847
855
  # })
848
856
  #
849
857
  # @example Response structure
@@ -862,6 +870,7 @@ module Aws::RoboMaker
862
870
  # resp.revision_id #=> String
863
871
  # resp.tags #=> Hash
864
872
  # resp.tags["TagKey"] #=> String
873
+ # resp.environment.uri #=> String
865
874
  #
866
875
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplication AWS API Documentation
867
876
  #
@@ -882,6 +891,14 @@ module Aws::RoboMaker
882
891
  # value and it matches the latest revision ID, a new version will be
883
892
  # created.
884
893
  #
894
+ # @option params [Array<String>] :s3_etags
895
+ # The Amazon S3 identifier for the zip file bundle that you use for your
896
+ # robot application.
897
+ #
898
+ # @option params [String] :image_digest
899
+ # A SHA256 identifier for the Docker image that you use for your robot
900
+ # application.
901
+ #
885
902
  # @return [Types::CreateRobotApplicationVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
886
903
  #
887
904
  # * {Types::CreateRobotApplicationVersionResponse#arn #arn} => String
@@ -891,12 +908,15 @@ module Aws::RoboMaker
891
908
  # * {Types::CreateRobotApplicationVersionResponse#robot_software_suite #robot_software_suite} => Types::RobotSoftwareSuite
892
909
  # * {Types::CreateRobotApplicationVersionResponse#last_updated_at #last_updated_at} => Time
893
910
  # * {Types::CreateRobotApplicationVersionResponse#revision_id #revision_id} => String
911
+ # * {Types::CreateRobotApplicationVersionResponse#environment #environment} => Types::Environment
894
912
  #
895
913
  # @example Request syntax with placeholder values
896
914
  #
897
915
  # resp = client.create_robot_application_version({
898
916
  # application: "Arn", # required
899
917
  # current_revision_id: "RevisionId",
918
+ # s3_etags: ["S3Etag"],
919
+ # image_digest: "ImageDigest",
900
920
  # })
901
921
  #
902
922
  # @example Response structure
@@ -913,6 +933,7 @@ module Aws::RoboMaker
913
933
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
914
934
  # resp.last_updated_at #=> Time
915
935
  # resp.revision_id #=> String
936
+ # resp.environment.uri #=> String
916
937
  #
917
938
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersion AWS API Documentation
918
939
  #
@@ -928,7 +949,7 @@ module Aws::RoboMaker
928
949
  # @option params [required, String] :name
929
950
  # The name of the simulation application.
930
951
  #
931
- # @option params [required, Array<Types::SourceConfig>] :sources
952
+ # @option params [Array<Types::SourceConfig>] :sources
932
953
  # The sources of the simulation application.
933
954
  #
934
955
  # @option params [required, Types::SimulationSoftwareSuite] :simulation_software_suite
@@ -945,6 +966,10 @@ module Aws::RoboMaker
945
966
  # A map that contains tag keys and tag values that are attached to the
946
967
  # simulation application.
947
968
  #
969
+ # @option params [Types::Environment] :environment
970
+ # The object that contains the Docker image URI used to create your
971
+ # simulation application.
972
+ #
948
973
  # @return [Types::CreateSimulationApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
949
974
  #
950
975
  # * {Types::CreateSimulationApplicationResponse#arn #arn} => String
@@ -957,12 +982,13 @@ module Aws::RoboMaker
957
982
  # * {Types::CreateSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
958
983
  # * {Types::CreateSimulationApplicationResponse#revision_id #revision_id} => String
959
984
  # * {Types::CreateSimulationApplicationResponse#tags #tags} => Hash&lt;String,String&gt;
985
+ # * {Types::CreateSimulationApplicationResponse#environment #environment} => Types::Environment
960
986
  #
961
987
  # @example Request syntax with placeholder values
962
988
  #
963
989
  # resp = client.create_simulation_application({
964
990
  # name: "Name", # required
965
- # sources: [ # required
991
+ # sources: [
966
992
  # {
967
993
  # s3_bucket: "S3Bucket",
968
994
  # s3_key: "S3Key",
@@ -984,6 +1010,9 @@ module Aws::RoboMaker
984
1010
  # tags: {
985
1011
  # "TagKey" => "TagValue",
986
1012
  # },
1013
+ # environment: {
1014
+ # uri: "RepositoryUrl",
1015
+ # },
987
1016
  # })
988
1017
  #
989
1018
  # @example Response structure
@@ -1006,6 +1035,7 @@ module Aws::RoboMaker
1006
1035
  # resp.revision_id #=> String
1007
1036
  # resp.tags #=> Hash
1008
1037
  # resp.tags["TagKey"] #=> String
1038
+ # resp.environment.uri #=> String
1009
1039
  #
1010
1040
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplication AWS API Documentation
1011
1041
  #
@@ -1026,6 +1056,14 @@ module Aws::RoboMaker
1026
1056
  # a value and it matches the latest revision ID, a new version will be
1027
1057
  # created.
1028
1058
  #
1059
+ # @option params [Array<String>] :s3_etags
1060
+ # The Amazon S3 eTag identifier for the zip file bundle that you use to
1061
+ # create the simulation application.
1062
+ #
1063
+ # @option params [String] :image_digest
1064
+ # The SHA256 digest used to identify the Docker image URI used to
1065
+ # created the simulation application.
1066
+ #
1029
1067
  # @return [Types::CreateSimulationApplicationVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1030
1068
  #
1031
1069
  # * {Types::CreateSimulationApplicationVersionResponse#arn #arn} => String
@@ -1037,12 +1075,15 @@ module Aws::RoboMaker
1037
1075
  # * {Types::CreateSimulationApplicationVersionResponse#rendering_engine #rendering_engine} => Types::RenderingEngine
1038
1076
  # * {Types::CreateSimulationApplicationVersionResponse#last_updated_at #last_updated_at} => Time
1039
1077
  # * {Types::CreateSimulationApplicationVersionResponse#revision_id #revision_id} => String
1078
+ # * {Types::CreateSimulationApplicationVersionResponse#environment #environment} => Types::Environment
1040
1079
  #
1041
1080
  # @example Request syntax with placeholder values
1042
1081
  #
1043
1082
  # resp = client.create_simulation_application_version({
1044
1083
  # application: "Arn", # required
1045
1084
  # current_revision_id: "RevisionId",
1085
+ # s3_etags: ["S3Etag"],
1086
+ # image_digest: "ImageDigest",
1046
1087
  # })
1047
1088
  #
1048
1089
  # @example Response structure
@@ -1063,6 +1104,7 @@ module Aws::RoboMaker
1063
1104
  # resp.rendering_engine.version #=> String
1064
1105
  # resp.last_updated_at #=> Time
1065
1106
  # resp.revision_id #=> String
1107
+ # resp.environment.uri #=> String
1066
1108
  #
1067
1109
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersion AWS API Documentation
1068
1110
  #
@@ -1108,7 +1150,8 @@ module Aws::RoboMaker
1108
1150
  #
1109
1151
  # Continue
1110
1152
  #
1111
- # : Restart the simulation job in the same host instance.
1153
+ # : Leaves the instance running for its maximum timeout duration after a
1154
+ # `4XX` error code.
1112
1155
  #
1113
1156
  # Fail
1114
1157
  #
@@ -1924,6 +1967,8 @@ module Aws::RoboMaker
1924
1967
  # * {Types::DescribeRobotApplicationResponse#revision_id #revision_id} => String
1925
1968
  # * {Types::DescribeRobotApplicationResponse#last_updated_at #last_updated_at} => Time
1926
1969
  # * {Types::DescribeRobotApplicationResponse#tags #tags} => Hash&lt;String,String&gt;
1970
+ # * {Types::DescribeRobotApplicationResponse#environment #environment} => Types::Environment
1971
+ # * {Types::DescribeRobotApplicationResponse#image_digest #image_digest} => String
1927
1972
  #
1928
1973
  # @example Request syntax with placeholder values
1929
1974
  #
@@ -1948,6 +1993,8 @@ module Aws::RoboMaker
1948
1993
  # resp.last_updated_at #=> Time
1949
1994
  # resp.tags #=> Hash
1950
1995
  # resp.tags["TagKey"] #=> String
1996
+ # resp.environment.uri #=> String
1997
+ # resp.image_digest #=> String
1951
1998
  #
1952
1999
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplication AWS API Documentation
1953
2000
  #
@@ -1978,6 +2025,8 @@ module Aws::RoboMaker
1978
2025
  # * {Types::DescribeSimulationApplicationResponse#revision_id #revision_id} => String
1979
2026
  # * {Types::DescribeSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
1980
2027
  # * {Types::DescribeSimulationApplicationResponse#tags #tags} => Hash&lt;String,String&gt;
2028
+ # * {Types::DescribeSimulationApplicationResponse#environment #environment} => Types::Environment
2029
+ # * {Types::DescribeSimulationApplicationResponse#image_digest #image_digest} => String
1981
2030
  #
1982
2031
  # @example Request syntax with placeholder values
1983
2032
  #
@@ -2006,6 +2055,8 @@ module Aws::RoboMaker
2006
2055
  # resp.last_updated_at #=> Time
2007
2056
  # resp.tags #=> Hash
2008
2057
  # resp.tags["TagKey"] #=> String
2058
+ # resp.environment.uri #=> String
2059
+ # resp.image_digest #=> String
2009
2060
  #
2010
2061
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplication AWS API Documentation
2011
2062
  #
@@ -3893,7 +3944,7 @@ module Aws::RoboMaker
3893
3944
  # @option params [required, String] :application
3894
3945
  # The application information for the robot application.
3895
3946
  #
3896
- # @option params [required, Array<Types::SourceConfig>] :sources
3947
+ # @option params [Array<Types::SourceConfig>] :sources
3897
3948
  # The sources of the robot application.
3898
3949
  #
3899
3950
  # @option params [required, Types::RobotSoftwareSuite] :robot_software_suite
@@ -3903,6 +3954,10 @@ module Aws::RoboMaker
3903
3954
  # @option params [String] :current_revision_id
3904
3955
  # The revision id for the robot application.
3905
3956
  #
3957
+ # @option params [Types::Environment] :environment
3958
+ # The object that contains the Docker image URI for your robot
3959
+ # application.
3960
+ #
3906
3961
  # @return [Types::UpdateRobotApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3907
3962
  #
3908
3963
  # * {Types::UpdateRobotApplicationResponse#arn #arn} => String
@@ -3912,12 +3967,13 @@ module Aws::RoboMaker
3912
3967
  # * {Types::UpdateRobotApplicationResponse#robot_software_suite #robot_software_suite} => Types::RobotSoftwareSuite
3913
3968
  # * {Types::UpdateRobotApplicationResponse#last_updated_at #last_updated_at} => Time
3914
3969
  # * {Types::UpdateRobotApplicationResponse#revision_id #revision_id} => String
3970
+ # * {Types::UpdateRobotApplicationResponse#environment #environment} => Types::Environment
3915
3971
  #
3916
3972
  # @example Request syntax with placeholder values
3917
3973
  #
3918
3974
  # resp = client.update_robot_application({
3919
3975
  # application: "Arn", # required
3920
- # sources: [ # required
3976
+ # sources: [
3921
3977
  # {
3922
3978
  # s3_bucket: "S3Bucket",
3923
3979
  # s3_key: "S3Key",
@@ -3929,6 +3985,9 @@ module Aws::RoboMaker
3929
3985
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
3930
3986
  # },
3931
3987
  # current_revision_id: "RevisionId",
3988
+ # environment: {
3989
+ # uri: "RepositoryUrl",
3990
+ # },
3932
3991
  # })
3933
3992
  #
3934
3993
  # @example Response structure
@@ -3945,6 +4004,7 @@ module Aws::RoboMaker
3945
4004
  # resp.robot_software_suite.version #=> String, one of "Kinetic", "Melodic", "Dashing", "Foxy"
3946
4005
  # resp.last_updated_at #=> Time
3947
4006
  # resp.revision_id #=> String
4007
+ # resp.environment.uri #=> String
3948
4008
  #
3949
4009
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateRobotApplication AWS API Documentation
3950
4010
  #
@@ -3960,7 +4020,7 @@ module Aws::RoboMaker
3960
4020
  # @option params [required, String] :application
3961
4021
  # The application information for the simulation application.
3962
4022
  #
3963
- # @option params [required, Array<Types::SourceConfig>] :sources
4023
+ # @option params [Array<Types::SourceConfig>] :sources
3964
4024
  # The sources of the simulation application.
3965
4025
  #
3966
4026
  # @option params [required, Types::SimulationSoftwareSuite] :simulation_software_suite
@@ -3975,6 +4035,10 @@ module Aws::RoboMaker
3975
4035
  # @option params [String] :current_revision_id
3976
4036
  # The revision id for the robot application.
3977
4037
  #
4038
+ # @option params [Types::Environment] :environment
4039
+ # The object that contains the Docker image URI for your simulation
4040
+ # application.
4041
+ #
3978
4042
  # @return [Types::UpdateSimulationApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3979
4043
  #
3980
4044
  # * {Types::UpdateSimulationApplicationResponse#arn #arn} => String
@@ -3986,12 +4050,13 @@ module Aws::RoboMaker
3986
4050
  # * {Types::UpdateSimulationApplicationResponse#rendering_engine #rendering_engine} => Types::RenderingEngine
3987
4051
  # * {Types::UpdateSimulationApplicationResponse#last_updated_at #last_updated_at} => Time
3988
4052
  # * {Types::UpdateSimulationApplicationResponse#revision_id #revision_id} => String
4053
+ # * {Types::UpdateSimulationApplicationResponse#environment #environment} => Types::Environment
3989
4054
  #
3990
4055
  # @example Request syntax with placeholder values
3991
4056
  #
3992
4057
  # resp = client.update_simulation_application({
3993
4058
  # application: "Arn", # required
3994
- # sources: [ # required
4059
+ # sources: [
3995
4060
  # {
3996
4061
  # s3_bucket: "S3Bucket",
3997
4062
  # s3_key: "S3Key",
@@ -4011,6 +4076,9 @@ module Aws::RoboMaker
4011
4076
  # version: "RenderingEngineVersionType",
4012
4077
  # },
4013
4078
  # current_revision_id: "RevisionId",
4079
+ # environment: {
4080
+ # uri: "RepositoryUrl",
4081
+ # },
4014
4082
  # })
4015
4083
  #
4016
4084
  # @example Response structure
@@ -4031,6 +4099,7 @@ module Aws::RoboMaker
4031
4099
  # resp.rendering_engine.version #=> String
4032
4100
  # resp.last_updated_at #=> Time
4033
4101
  # resp.revision_id #=> String
4102
+ # resp.environment.uri #=> String
4034
4103
  #
4035
4104
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateSimulationApplication AWS API Documentation
4036
4105
  #
@@ -4103,7 +4172,7 @@ module Aws::RoboMaker
4103
4172
  params: params,
4104
4173
  config: config)
4105
4174
  context[:gem_name] = 'aws-sdk-robomaker'
4106
- context[:gem_version] = '1.38.0'
4175
+ context[:gem_version] = '1.42.0'
4107
4176
  Seahorse::Client::Request.new(handlers, context)
4108
4177
  end
4109
4178
 
@@ -112,6 +112,7 @@ module Aws::RoboMaker
112
112
  DescribeWorldResponse = Shapes::StructureShape.new(name: 'DescribeWorldResponse')
113
113
  DescribeWorldTemplateRequest = Shapes::StructureShape.new(name: 'DescribeWorldTemplateRequest')
114
114
  DescribeWorldTemplateResponse = Shapes::StructureShape.new(name: 'DescribeWorldTemplateResponse')
115
+ Environment = Shapes::StructureShape.new(name: 'Environment')
115
116
  EnvironmentVariableKey = Shapes::StringShape.new(name: 'EnvironmentVariableKey')
116
117
  EnvironmentVariableMap = Shapes::MapShape.new(name: 'EnvironmentVariableMap')
117
118
  EnvironmentVariableValue = Shapes::StringShape.new(name: 'EnvironmentVariableValue')
@@ -135,6 +136,7 @@ module Aws::RoboMaker
135
136
  IamRole = Shapes::StringShape.new(name: 'IamRole')
136
137
  Id = Shapes::StringShape.new(name: 'Id')
137
138
  IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
139
+ ImageDigest = Shapes::StringShape.new(name: 'ImageDigest')
138
140
  Integer = Shapes::IntegerShape.new(name: 'Integer')
139
141
  InteriorCountPerFloorplan = Shapes::IntegerShape.new(name: 'InteriorCountPerFloorplan')
140
142
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
@@ -191,6 +193,7 @@ module Aws::RoboMaker
191
193
  RenderingEngine = Shapes::StructureShape.new(name: 'RenderingEngine')
192
194
  RenderingEngineType = Shapes::StringShape.new(name: 'RenderingEngineType')
193
195
  RenderingEngineVersionType = Shapes::StringShape.new(name: 'RenderingEngineVersionType')
196
+ RepositoryUrl = Shapes::StringShape.new(name: 'RepositoryUrl')
194
197
  ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
195
198
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
196
199
  RestartSimulationJobRequest = Shapes::StructureShape.new(name: 'RestartSimulationJobRequest')
@@ -212,6 +215,7 @@ module Aws::RoboMaker
212
215
  Robots = Shapes::ListShape.new(name: 'Robots')
213
216
  S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
214
217
  S3Etag = Shapes::StringShape.new(name: 'S3Etag')
218
+ S3Etags = Shapes::ListShape.new(name: 'S3Etags')
215
219
  S3Key = Shapes::StringShape.new(name: 'S3Key')
216
220
  S3KeyOutput = Shapes::StructureShape.new(name: 'S3KeyOutput')
217
221
  S3KeyOutputs = Shapes::ListShape.new(name: 'S3KeyOutputs')
@@ -377,9 +381,10 @@ module Aws::RoboMaker
377
381
  CreateFleetResponse.struct_class = Types::CreateFleetResponse
378
382
 
379
383
  CreateRobotApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
380
- CreateRobotApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
384
+ CreateRobotApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, location_name: "sources"))
381
385
  CreateRobotApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
382
386
  CreateRobotApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
387
+ CreateRobotApplicationRequest.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
383
388
  CreateRobotApplicationRequest.struct_class = Types::CreateRobotApplicationRequest
384
389
 
385
390
  CreateRobotApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
@@ -390,10 +395,13 @@ module Aws::RoboMaker
390
395
  CreateRobotApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
391
396
  CreateRobotApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
392
397
  CreateRobotApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
398
+ CreateRobotApplicationResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
393
399
  CreateRobotApplicationResponse.struct_class = Types::CreateRobotApplicationResponse
394
400
 
395
401
  CreateRobotApplicationVersionRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
396
402
  CreateRobotApplicationVersionRequest.add_member(:current_revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "currentRevisionId"))
403
+ CreateRobotApplicationVersionRequest.add_member(:s3_etags, Shapes::ShapeRef.new(shape: S3Etags, location_name: "s3Etags"))
404
+ CreateRobotApplicationVersionRequest.add_member(:image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "imageDigest"))
397
405
  CreateRobotApplicationVersionRequest.struct_class = Types::CreateRobotApplicationVersionRequest
398
406
 
399
407
  CreateRobotApplicationVersionResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
@@ -403,6 +411,7 @@ module Aws::RoboMaker
403
411
  CreateRobotApplicationVersionResponse.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, location_name: "robotSoftwareSuite"))
404
412
  CreateRobotApplicationVersionResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
405
413
  CreateRobotApplicationVersionResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
414
+ CreateRobotApplicationVersionResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
406
415
  CreateRobotApplicationVersionResponse.struct_class = Types::CreateRobotApplicationVersionResponse
407
416
 
408
417
  CreateRobotRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
@@ -420,11 +429,12 @@ module Aws::RoboMaker
420
429
  CreateRobotResponse.struct_class = Types::CreateRobotResponse
421
430
 
422
431
  CreateSimulationApplicationRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
423
- CreateSimulationApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
432
+ CreateSimulationApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, location_name: "sources"))
424
433
  CreateSimulationApplicationRequest.add_member(:simulation_software_suite, Shapes::ShapeRef.new(shape: SimulationSoftwareSuite, required: true, location_name: "simulationSoftwareSuite"))
425
434
  CreateSimulationApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
426
435
  CreateSimulationApplicationRequest.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
427
436
  CreateSimulationApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
437
+ CreateSimulationApplicationRequest.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
428
438
  CreateSimulationApplicationRequest.struct_class = Types::CreateSimulationApplicationRequest
429
439
 
430
440
  CreateSimulationApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
@@ -437,10 +447,13 @@ module Aws::RoboMaker
437
447
  CreateSimulationApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
438
448
  CreateSimulationApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
439
449
  CreateSimulationApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
450
+ CreateSimulationApplicationResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
440
451
  CreateSimulationApplicationResponse.struct_class = Types::CreateSimulationApplicationResponse
441
452
 
442
453
  CreateSimulationApplicationVersionRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
443
454
  CreateSimulationApplicationVersionRequest.add_member(:current_revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "currentRevisionId"))
455
+ CreateSimulationApplicationVersionRequest.add_member(:s3_etags, Shapes::ShapeRef.new(shape: S3Etags, location_name: "s3Etags"))
456
+ CreateSimulationApplicationVersionRequest.add_member(:image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "imageDigest"))
444
457
  CreateSimulationApplicationVersionRequest.struct_class = Types::CreateSimulationApplicationVersionRequest
445
458
 
446
459
  CreateSimulationApplicationVersionResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
@@ -452,6 +465,7 @@ module Aws::RoboMaker
452
465
  CreateSimulationApplicationVersionResponse.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
453
466
  CreateSimulationApplicationVersionResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
454
467
  CreateSimulationApplicationVersionResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
468
+ CreateSimulationApplicationVersionResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
455
469
  CreateSimulationApplicationVersionResponse.struct_class = Types::CreateSimulationApplicationVersionResponse
456
470
 
457
471
  CreateSimulationJobRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
@@ -662,6 +676,8 @@ module Aws::RoboMaker
662
676
  DescribeRobotApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
663
677
  DescribeRobotApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
664
678
  DescribeRobotApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
679
+ DescribeRobotApplicationResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
680
+ DescribeRobotApplicationResponse.add_member(:image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "imageDigest"))
665
681
  DescribeRobotApplicationResponse.struct_class = Types::DescribeRobotApplicationResponse
666
682
 
667
683
  DescribeRobotRequest.add_member(:robot, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "robot"))
@@ -693,6 +709,8 @@ module Aws::RoboMaker
693
709
  DescribeSimulationApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
694
710
  DescribeSimulationApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
695
711
  DescribeSimulationApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
712
+ DescribeSimulationApplicationResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
713
+ DescribeSimulationApplicationResponse.add_member(:image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "imageDigest"))
696
714
  DescribeSimulationApplicationResponse.struct_class = Types::DescribeSimulationApplicationResponse
697
715
 
698
716
  DescribeSimulationJobBatchRequest.add_member(:batch, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "batch"))
@@ -792,6 +810,9 @@ module Aws::RoboMaker
792
810
  DescribeWorldTemplateResponse.add_member(:version, Shapes::ShapeRef.new(shape: GenericString, location_name: "version"))
793
811
  DescribeWorldTemplateResponse.struct_class = Types::DescribeWorldTemplateResponse
794
812
 
813
+ Environment.add_member(:uri, Shapes::ShapeRef.new(shape: RepositoryUrl, location_name: "uri"))
814
+ Environment.struct_class = Types::Environment
815
+
795
816
  EnvironmentVariableMap.key = Shapes::ShapeRef.new(shape: EnvironmentVariableKey)
796
817
  EnvironmentVariableMap.value = Shapes::ShapeRef.new(shape: EnvironmentVariableValue)
797
818
 
@@ -1063,6 +1084,8 @@ module Aws::RoboMaker
1063
1084
 
1064
1085
  Robots.member = Shapes::ShapeRef.new(shape: Robot)
1065
1086
 
1087
+ S3Etags.member = Shapes::ShapeRef.new(shape: S3Etag)
1088
+
1066
1089
  S3KeyOutput.add_member(:s3_key, Shapes::ShapeRef.new(shape: S3Key, location_name: "s3Key"))
1067
1090
  S3KeyOutput.add_member(:etag, Shapes::ShapeRef.new(shape: S3Etag, location_name: "etag"))
1068
1091
  S3KeyOutput.struct_class = Types::S3KeyOutput
@@ -1263,9 +1286,10 @@ module Aws::RoboMaker
1263
1286
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
1264
1287
 
1265
1288
  UpdateRobotApplicationRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
1266
- UpdateRobotApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
1289
+ UpdateRobotApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, location_name: "sources"))
1267
1290
  UpdateRobotApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
1268
1291
  UpdateRobotApplicationRequest.add_member(:current_revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "currentRevisionId"))
1292
+ UpdateRobotApplicationRequest.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
1269
1293
  UpdateRobotApplicationRequest.struct_class = Types::UpdateRobotApplicationRequest
1270
1294
 
1271
1295
  UpdateRobotApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
@@ -1275,14 +1299,16 @@ module Aws::RoboMaker
1275
1299
  UpdateRobotApplicationResponse.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, location_name: "robotSoftwareSuite"))
1276
1300
  UpdateRobotApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
1277
1301
  UpdateRobotApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
1302
+ UpdateRobotApplicationResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
1278
1303
  UpdateRobotApplicationResponse.struct_class = Types::UpdateRobotApplicationResponse
1279
1304
 
1280
1305
  UpdateSimulationApplicationRequest.add_member(:application, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "application"))
1281
- UpdateSimulationApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, required: true, location_name: "sources"))
1306
+ UpdateSimulationApplicationRequest.add_member(:sources, Shapes::ShapeRef.new(shape: SourceConfigs, location_name: "sources"))
1282
1307
  UpdateSimulationApplicationRequest.add_member(:simulation_software_suite, Shapes::ShapeRef.new(shape: SimulationSoftwareSuite, required: true, location_name: "simulationSoftwareSuite"))
1283
1308
  UpdateSimulationApplicationRequest.add_member(:robot_software_suite, Shapes::ShapeRef.new(shape: RobotSoftwareSuite, required: true, location_name: "robotSoftwareSuite"))
1284
1309
  UpdateSimulationApplicationRequest.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
1285
1310
  UpdateSimulationApplicationRequest.add_member(:current_revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "currentRevisionId"))
1311
+ UpdateSimulationApplicationRequest.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
1286
1312
  UpdateSimulationApplicationRequest.struct_class = Types::UpdateSimulationApplicationRequest
1287
1313
 
1288
1314
  UpdateSimulationApplicationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "arn"))
@@ -1294,6 +1320,7 @@ module Aws::RoboMaker
1294
1320
  UpdateSimulationApplicationResponse.add_member(:rendering_engine, Shapes::ShapeRef.new(shape: RenderingEngine, location_name: "renderingEngine"))
1295
1321
  UpdateSimulationApplicationResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: LastUpdatedAt, location_name: "lastUpdatedAt"))
1296
1322
  UpdateSimulationApplicationResponse.add_member(:revision_id, Shapes::ShapeRef.new(shape: RevisionId, location_name: "revisionId"))
1323
+ UpdateSimulationApplicationResponse.add_member(:environment, Shapes::ShapeRef.new(shape: Environment, location_name: "environment"))
1297
1324
  UpdateSimulationApplicationResponse.struct_class = Types::UpdateSimulationApplicationResponse
1298
1325
 
1299
1326
  UpdateWorldTemplateRequest.add_member(:template, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "template"))
@@ -539,7 +539,7 @@ module Aws::RoboMaker
539
539
  #
540
540
  # {
541
541
  # name: "Name", # required
542
- # sources: [ # required
542
+ # sources: [
543
543
  # {
544
544
  # s3_bucket: "S3Bucket",
545
545
  # s3_key: "S3Key",
@@ -553,6 +553,9 @@ module Aws::RoboMaker
553
553
  # tags: {
554
554
  # "TagKey" => "TagValue",
555
555
  # },
556
+ # environment: {
557
+ # uri: "RepositoryUrl",
558
+ # },
556
559
  # }
557
560
  #
558
561
  # @!attribute [rw] name
@@ -573,13 +576,19 @@ module Aws::RoboMaker
573
576
  # robot application.
574
577
  # @return [Hash<String,String>]
575
578
  #
579
+ # @!attribute [rw] environment
580
+ # The object that contains that URI of the Docker image that you use
581
+ # for your robot application.
582
+ # @return [Types::Environment]
583
+ #
576
584
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationRequest AWS API Documentation
577
585
  #
578
586
  class CreateRobotApplicationRequest < Struct.new(
579
587
  :name,
580
588
  :sources,
581
589
  :robot_software_suite,
582
- :tags)
590
+ :tags,
591
+ :environment)
583
592
  SENSITIVE = []
584
593
  include Aws::Structure
585
594
  end
@@ -618,6 +627,11 @@ module Aws::RoboMaker
618
627
  # The list of all tags added to the robot application.
619
628
  # @return [Hash<String,String>]
620
629
  #
630
+ # @!attribute [rw] environment
631
+ # An object that contains the Docker image URI used to a create your
632
+ # robot application.
633
+ # @return [Types::Environment]
634
+ #
621
635
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationResponse AWS API Documentation
622
636
  #
623
637
  class CreateRobotApplicationResponse < Struct.new(
@@ -628,7 +642,8 @@ module Aws::RoboMaker
628
642
  :robot_software_suite,
629
643
  :last_updated_at,
630
644
  :revision_id,
631
- :tags)
645
+ :tags,
646
+ :environment)
632
647
  SENSITIVE = []
633
648
  include Aws::Structure
634
649
  end
@@ -639,6 +654,8 @@ module Aws::RoboMaker
639
654
  # {
640
655
  # application: "Arn", # required
641
656
  # current_revision_id: "RevisionId",
657
+ # s3_etags: ["S3Etag"],
658
+ # image_digest: "ImageDigest",
642
659
  # }
643
660
  #
644
661
  # @!attribute [rw] application
@@ -651,11 +668,23 @@ module Aws::RoboMaker
651
668
  # created.
652
669
  # @return [String]
653
670
  #
671
+ # @!attribute [rw] s3_etags
672
+ # The Amazon S3 identifier for the zip file bundle that you use for
673
+ # your robot application.
674
+ # @return [Array<String>]
675
+ #
676
+ # @!attribute [rw] image_digest
677
+ # A SHA256 identifier for the Docker image that you use for your robot
678
+ # application.
679
+ # @return [String]
680
+ #
654
681
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersionRequest AWS API Documentation
655
682
  #
656
683
  class CreateRobotApplicationVersionRequest < Struct.new(
657
684
  :application,
658
- :current_revision_id)
685
+ :current_revision_id,
686
+ :s3_etags,
687
+ :image_digest)
659
688
  SENSITIVE = []
660
689
  include Aws::Structure
661
690
  end
@@ -690,6 +719,11 @@ module Aws::RoboMaker
690
719
  # The revision id of the robot application.
691
720
  # @return [String]
692
721
  #
722
+ # @!attribute [rw] environment
723
+ # The object that contains the Docker image URI used to create your
724
+ # robot application.
725
+ # @return [Types::Environment]
726
+ #
693
727
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersionResponse AWS API Documentation
694
728
  #
695
729
  class CreateRobotApplicationVersionResponse < Struct.new(
@@ -699,7 +733,8 @@ module Aws::RoboMaker
699
733
  :sources,
700
734
  :robot_software_suite,
701
735
  :last_updated_at,
702
- :revision_id)
736
+ :revision_id,
737
+ :environment)
703
738
  SENSITIVE = []
704
739
  include Aws::Structure
705
740
  end
@@ -788,7 +823,7 @@ module Aws::RoboMaker
788
823
  #
789
824
  # {
790
825
  # name: "Name", # required
791
- # sources: [ # required
826
+ # sources: [
792
827
  # {
793
828
  # s3_bucket: "S3Bucket",
794
829
  # s3_key: "S3Key",
@@ -810,6 +845,9 @@ module Aws::RoboMaker
810
845
  # tags: {
811
846
  # "TagKey" => "TagValue",
812
847
  # },
848
+ # environment: {
849
+ # uri: "RepositoryUrl",
850
+ # },
813
851
  # }
814
852
  #
815
853
  # @!attribute [rw] name
@@ -838,6 +876,11 @@ module Aws::RoboMaker
838
876
  # simulation application.
839
877
  # @return [Hash<String,String>]
840
878
  #
879
+ # @!attribute [rw] environment
880
+ # The object that contains the Docker image URI used to create your
881
+ # simulation application.
882
+ # @return [Types::Environment]
883
+ #
841
884
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationRequest AWS API Documentation
842
885
  #
843
886
  class CreateSimulationApplicationRequest < Struct.new(
@@ -846,7 +889,8 @@ module Aws::RoboMaker
846
889
  :simulation_software_suite,
847
890
  :robot_software_suite,
848
891
  :rendering_engine,
849
- :tags)
892
+ :tags,
893
+ :environment)
850
894
  SENSITIVE = []
851
895
  include Aws::Structure
852
896
  end
@@ -892,6 +936,11 @@ module Aws::RoboMaker
892
936
  # The list of all tags added to the simulation application.
893
937
  # @return [Hash<String,String>]
894
938
  #
939
+ # @!attribute [rw] environment
940
+ # The object that contains the Docker image URI that you used to
941
+ # create your simulation application.
942
+ # @return [Types::Environment]
943
+ #
895
944
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationResponse AWS API Documentation
896
945
  #
897
946
  class CreateSimulationApplicationResponse < Struct.new(
@@ -904,7 +953,8 @@ module Aws::RoboMaker
904
953
  :rendering_engine,
905
954
  :last_updated_at,
906
955
  :revision_id,
907
- :tags)
956
+ :tags,
957
+ :environment)
908
958
  SENSITIVE = []
909
959
  include Aws::Structure
910
960
  end
@@ -915,6 +965,8 @@ module Aws::RoboMaker
915
965
  # {
916
966
  # application: "Arn", # required
917
967
  # current_revision_id: "RevisionId",
968
+ # s3_etags: ["S3Etag"],
969
+ # image_digest: "ImageDigest",
918
970
  # }
919
971
  #
920
972
  # @!attribute [rw] application
@@ -927,11 +979,23 @@ module Aws::RoboMaker
927
979
  # will be created.
928
980
  # @return [String]
929
981
  #
982
+ # @!attribute [rw] s3_etags
983
+ # The Amazon S3 eTag identifier for the zip file bundle that you use
984
+ # to create the simulation application.
985
+ # @return [Array<String>]
986
+ #
987
+ # @!attribute [rw] image_digest
988
+ # The SHA256 digest used to identify the Docker image URI used to
989
+ # created the simulation application.
990
+ # @return [String]
991
+ #
930
992
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersionRequest AWS API Documentation
931
993
  #
932
994
  class CreateSimulationApplicationVersionRequest < Struct.new(
933
995
  :application,
934
- :current_revision_id)
996
+ :current_revision_id,
997
+ :s3_etags,
998
+ :image_digest)
935
999
  SENSITIVE = []
936
1000
  include Aws::Structure
937
1001
  end
@@ -973,6 +1037,11 @@ module Aws::RoboMaker
973
1037
  # The revision ID of the simulation application.
974
1038
  # @return [String]
975
1039
  #
1040
+ # @!attribute [rw] environment
1041
+ # The object that contains the Docker image URI used to create the
1042
+ # simulation application.
1043
+ # @return [Types::Environment]
1044
+ #
976
1045
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersionResponse AWS API Documentation
977
1046
  #
978
1047
  class CreateSimulationApplicationVersionResponse < Struct.new(
@@ -984,7 +1053,8 @@ module Aws::RoboMaker
984
1053
  :robot_software_suite,
985
1054
  :rendering_engine,
986
1055
  :last_updated_at,
987
- :revision_id)
1056
+ :revision_id,
1057
+ :environment)
988
1058
  SENSITIVE = []
989
1059
  include Aws::Structure
990
1060
  end
@@ -1145,7 +1215,8 @@ module Aws::RoboMaker
1145
1215
  #
1146
1216
  # Continue
1147
1217
  #
1148
- # : Restart the simulation job in the same host instance.
1218
+ # : Leaves the instance running for its maximum timeout duration after
1219
+ # a `4XX` error code.
1149
1220
  #
1150
1221
  # Fail
1151
1222
  #
@@ -2400,6 +2471,16 @@ module Aws::RoboMaker
2400
2471
  # The list of all tags added to the specified robot application.
2401
2472
  # @return [Hash<String,String>]
2402
2473
  #
2474
+ # @!attribute [rw] environment
2475
+ # The object that contains the Docker image URI used to create the
2476
+ # robot application.
2477
+ # @return [Types::Environment]
2478
+ #
2479
+ # @!attribute [rw] image_digest
2480
+ # A SHA256 identifier for the Docker image that you use for your robot
2481
+ # application.
2482
+ # @return [String]
2483
+ #
2403
2484
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationResponse AWS API Documentation
2404
2485
  #
2405
2486
  class DescribeRobotApplicationResponse < Struct.new(
@@ -2410,7 +2491,9 @@ module Aws::RoboMaker
2410
2491
  :robot_software_suite,
2411
2492
  :revision_id,
2412
2493
  :last_updated_at,
2413
- :tags)
2494
+ :tags,
2495
+ :environment,
2496
+ :image_digest)
2414
2497
  SENSITIVE = []
2415
2498
  include Aws::Structure
2416
2499
  end
@@ -2558,6 +2641,16 @@ module Aws::RoboMaker
2558
2641
  # The list of all tags added to the specified simulation application.
2559
2642
  # @return [Hash<String,String>]
2560
2643
  #
2644
+ # @!attribute [rw] environment
2645
+ # The object that contains the Docker image URI used to create the
2646
+ # simulation application.
2647
+ # @return [Types::Environment]
2648
+ #
2649
+ # @!attribute [rw] image_digest
2650
+ # A SHA256 identifier for the Docker image that you use for your
2651
+ # simulation application.
2652
+ # @return [String]
2653
+ #
2561
2654
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplicationResponse AWS API Documentation
2562
2655
  #
2563
2656
  class DescribeSimulationApplicationResponse < Struct.new(
@@ -2570,7 +2663,9 @@ module Aws::RoboMaker
2570
2663
  :rendering_engine,
2571
2664
  :revision_id,
2572
2665
  :last_updated_at,
2573
- :tags)
2666
+ :tags,
2667
+ :environment,
2668
+ :image_digest)
2574
2669
  SENSITIVE = []
2575
2670
  include Aws::Structure
2576
2671
  end
@@ -3311,6 +3406,29 @@ module Aws::RoboMaker
3311
3406
  include Aws::Structure
3312
3407
  end
3313
3408
 
3409
+ # The object that contains the Docker image URI for either your robot or
3410
+ # simulation applications.
3411
+ #
3412
+ # @note When making an API call, you may pass Environment
3413
+ # data as a hash:
3414
+ #
3415
+ # {
3416
+ # uri: "RepositoryUrl",
3417
+ # }
3418
+ #
3419
+ # @!attribute [rw] uri
3420
+ # The Docker image URI for either your robot or simulation
3421
+ # applications.
3422
+ # @return [String]
3423
+ #
3424
+ # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Environment AWS API Documentation
3425
+ #
3426
+ class Environment < Struct.new(
3427
+ :uri)
3428
+ SENSITIVE = []
3429
+ include Aws::Structure
3430
+ end
3431
+
3314
3432
  # Information about a failed create simulation job request.
3315
3433
  #
3316
3434
  # @!attribute [rw] request
@@ -5248,7 +5366,8 @@ module Aws::RoboMaker
5248
5366
  #
5249
5367
  # Continue
5250
5368
  #
5251
- # : Restart the simulation job in the same host instance.
5369
+ # : Leaves the host running for its maximum timeout duration after a
5370
+ # `4XX` error code.
5252
5371
  #
5253
5372
  # Fail
5254
5373
  #
@@ -5591,7 +5710,8 @@ module Aws::RoboMaker
5591
5710
  #
5592
5711
  # Continue
5593
5712
  #
5594
- # : Restart the simulation job in the same host instance.
5713
+ # : Leaves the host running for its maximum timeout duration after a
5714
+ # `4XX` error code.
5595
5715
  #
5596
5716
  # Fail
5597
5717
  #
@@ -6412,7 +6532,7 @@ module Aws::RoboMaker
6412
6532
  #
6413
6533
  # {
6414
6534
  # application: "Arn", # required
6415
- # sources: [ # required
6535
+ # sources: [
6416
6536
  # {
6417
6537
  # s3_bucket: "S3Bucket",
6418
6538
  # s3_key: "S3Key",
@@ -6424,6 +6544,9 @@ module Aws::RoboMaker
6424
6544
  # version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
6425
6545
  # },
6426
6546
  # current_revision_id: "RevisionId",
6547
+ # environment: {
6548
+ # uri: "RepositoryUrl",
6549
+ # },
6427
6550
  # }
6428
6551
  #
6429
6552
  # @!attribute [rw] application
@@ -6443,13 +6566,19 @@ module Aws::RoboMaker
6443
6566
  # The revision id for the robot application.
6444
6567
  # @return [String]
6445
6568
  #
6569
+ # @!attribute [rw] environment
6570
+ # The object that contains the Docker image URI for your robot
6571
+ # application.
6572
+ # @return [Types::Environment]
6573
+ #
6446
6574
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateRobotApplicationRequest AWS API Documentation
6447
6575
  #
6448
6576
  class UpdateRobotApplicationRequest < Struct.new(
6449
6577
  :application,
6450
6578
  :sources,
6451
6579
  :robot_software_suite,
6452
- :current_revision_id)
6580
+ :current_revision_id,
6581
+ :environment)
6453
6582
  SENSITIVE = []
6454
6583
  include Aws::Structure
6455
6584
  end
@@ -6484,6 +6613,11 @@ module Aws::RoboMaker
6484
6613
  # The revision id of the robot application.
6485
6614
  # @return [String]
6486
6615
  #
6616
+ # @!attribute [rw] environment
6617
+ # The object that contains the Docker image URI for your robot
6618
+ # application.
6619
+ # @return [Types::Environment]
6620
+ #
6487
6621
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateRobotApplicationResponse AWS API Documentation
6488
6622
  #
6489
6623
  class UpdateRobotApplicationResponse < Struct.new(
@@ -6493,7 +6627,8 @@ module Aws::RoboMaker
6493
6627
  :sources,
6494
6628
  :robot_software_suite,
6495
6629
  :last_updated_at,
6496
- :revision_id)
6630
+ :revision_id,
6631
+ :environment)
6497
6632
  SENSITIVE = []
6498
6633
  include Aws::Structure
6499
6634
  end
@@ -6503,7 +6638,7 @@ module Aws::RoboMaker
6503
6638
  #
6504
6639
  # {
6505
6640
  # application: "Arn", # required
6506
- # sources: [ # required
6641
+ # sources: [
6507
6642
  # {
6508
6643
  # s3_bucket: "S3Bucket",
6509
6644
  # s3_key: "S3Key",
@@ -6523,6 +6658,9 @@ module Aws::RoboMaker
6523
6658
  # version: "RenderingEngineVersionType",
6524
6659
  # },
6525
6660
  # current_revision_id: "RevisionId",
6661
+ # environment: {
6662
+ # uri: "RepositoryUrl",
6663
+ # },
6526
6664
  # }
6527
6665
  #
6528
6666
  # @!attribute [rw] application
@@ -6549,6 +6687,11 @@ module Aws::RoboMaker
6549
6687
  # The revision id for the robot application.
6550
6688
  # @return [String]
6551
6689
  #
6690
+ # @!attribute [rw] environment
6691
+ # The object that contains the Docker image URI for your simulation
6692
+ # application.
6693
+ # @return [Types::Environment]
6694
+ #
6552
6695
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateSimulationApplicationRequest AWS API Documentation
6553
6696
  #
6554
6697
  class UpdateSimulationApplicationRequest < Struct.new(
@@ -6557,7 +6700,8 @@ module Aws::RoboMaker
6557
6700
  :simulation_software_suite,
6558
6701
  :robot_software_suite,
6559
6702
  :rendering_engine,
6560
- :current_revision_id)
6703
+ :current_revision_id,
6704
+ :environment)
6561
6705
  SENSITIVE = []
6562
6706
  include Aws::Structure
6563
6707
  end
@@ -6600,6 +6744,11 @@ module Aws::RoboMaker
6600
6744
  # The revision id of the simulation application.
6601
6745
  # @return [String]
6602
6746
  #
6747
+ # @!attribute [rw] environment
6748
+ # The object that contains the Docker image URI used for your
6749
+ # simulation application.
6750
+ # @return [Types::Environment]
6751
+ #
6603
6752
  # @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateSimulationApplicationResponse AWS API Documentation
6604
6753
  #
6605
6754
  class UpdateSimulationApplicationResponse < Struct.new(
@@ -6611,7 +6760,8 @@ module Aws::RoboMaker
6611
6760
  :robot_software_suite,
6612
6761
  :rendering_engine,
6613
6762
  :last_updated_at,
6614
- :revision_id)
6763
+ :revision_id,
6764
+ :environment)
6615
6765
  SENSITIVE = []
6616
6766
  include Aws::Structure
6617
6767
  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.38.0'
51
+ GEM_VERSION = '1.42.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.38.0
4
+ version: 1.42.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-07-28 00:00:00.000000000 Z
11
+ date: 2021-09-16 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.118.0
22
+ version: 3.120.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.118.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="