Skip to content

Commit f79e252

Browse files
author
AWS
committed
AWS RoboMaker Update: RoboMaker Fleet Management launch a feature to verify your robot is ready to download and install the new robot application using a download condition file, which is a script run on the robot prior to downloading the new deployment.
1 parent be6229e commit f79e252

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS RoboMaker",
4+
"description": "RoboMaker Fleet Management launch a feature to verify your robot is ready to download and install the new robot application using a download condition file, which is a script run on the robot prior to downloading the new deployment."
5+
}

services/robomaker/src/main/resources/codegen-resources/service-2.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1401,6 +1401,10 @@
14011401
"robotDeploymentTimeoutInSeconds":{
14021402
"shape":"DeploymentTimeout",
14031403
"documentation":"<p>The amount of time, in seconds, to wait for deployment to a single robot to complete. Choose a time between 1 minute and 7 days. The default is 5 hours.</p>"
1404+
},
1405+
"downloadConditionFile":{
1406+
"shape":"S3Object",
1407+
"documentation":"<p>The download condition file.</p>"
14041408
}
14051409
},
14061410
"documentation":"<p>Information about a deployment configuration.</p>"
@@ -1462,6 +1466,7 @@
14621466
"PreLaunchFileFailure",
14631467
"PostLaunchFileFailure",
14641468
"BadPermissionError",
1469+
"DownloadConditionFailed",
14651470
"InternalServerError"
14661471
]
14671472
},
@@ -2670,6 +2675,7 @@
26702675
"enum":[
26712676
"Validating",
26722677
"DownloadingExtracting",
2678+
"ExecutingDownloadCondition",
26732679
"ExecutingPreLaunch",
26742680
"Launching",
26752681
"ExecutingPostLaunch",
@@ -2764,6 +2770,28 @@
27642770
"max":100,
27652771
"min":1
27662772
},
2773+
"S3Object":{
2774+
"type":"structure",
2775+
"required":[
2776+
"bucket",
2777+
"key"
2778+
],
2779+
"members":{
2780+
"bucket":{
2781+
"shape":"S3Bucket",
2782+
"documentation":"<p>The bucket containing the object.</p>"
2783+
},
2784+
"key":{
2785+
"shape":"S3Key",
2786+
"documentation":"<p>The key of the object.</p>"
2787+
},
2788+
"etag":{
2789+
"shape":"S3Etag",
2790+
"documentation":"<p>The etag of the object.</p>"
2791+
}
2792+
},
2793+
"documentation":"<p>Information about an S3 object.</p>"
2794+
},
27672795
"SecurityGroups":{
27682796
"type":"list",
27692797
"member":{"shape":"NonEmptyString"},
@@ -2928,7 +2956,7 @@
29282956
},
29292957
"networkInterface":{
29302958
"shape":"NetworkInterface",
2931-
"documentation":"<p/>"
2959+
"documentation":"<p>Information about a network interface.</p>"
29322960
}
29332961
},
29342962
"documentation":"<p>Information about a simulation job.</p>"

0 commit comments

Comments
 (0)