From bc47ba418711f6218b683ba2c94a41300eab2188 Mon Sep 17 00:00:00 2001 From: awstools Date: Fri, 11 Oct 2024 18:28:31 +0000 Subject: [PATCH] docs(client-robomaker): Documentation update: added support notices to each API action. --- .../src/commands/BatchDeleteWorldsCommand.ts | 10 +- .../BatchDescribeSimulationJobCommand.ts | 10 +- .../commands/CancelDeploymentJobCommand.ts | 6 +- .../CancelSimulationJobBatchCommand.ts | 10 +- .../commands/CancelSimulationJobCommand.ts | 10 +- .../commands/CancelWorldExportJobCommand.ts | 10 +- .../CancelWorldGenerationJobCommand.ts | 10 +- .../commands/CreateDeploymentJobCommand.ts | 17 +- .../src/commands/CreateFleetCommand.ts | 12 +- .../commands/CreateRobotApplicationCommand.ts | 10 +- .../CreateRobotApplicationVersionCommand.ts | 10 +- .../src/commands/CreateRobotCommand.ts | 12 +- .../CreateSimulationApplicationCommand.ts | 10 +- ...eateSimulationApplicationVersionCommand.ts | 10 +- .../commands/CreateSimulationJobCommand.ts | 10 +- .../commands/CreateWorldExportJobCommand.ts | 10 +- .../CreateWorldGenerationJobCommand.ts | 10 +- .../commands/CreateWorldTemplateCommand.ts | 10 +- .../src/commands/DeleteFleetCommand.ts | 12 +- .../commands/DeleteRobotApplicationCommand.ts | 10 +- .../src/commands/DeleteRobotCommand.ts | 12 +- .../DeleteSimulationApplicationCommand.ts | 10 +- .../commands/DeleteWorldTemplateCommand.ts | 10 +- .../src/commands/DeregisterRobotCommand.ts | 12 +- .../commands/DescribeDeploymentJobCommand.ts | 12 +- .../src/commands/DescribeFleetCommand.ts | 12 +- .../DescribeRobotApplicationCommand.ts | 10 +- .../src/commands/DescribeRobotCommand.ts | 12 +- .../DescribeSimulationApplicationCommand.ts | 10 +- .../DescribeSimulationJobBatchCommand.ts | 10 +- .../commands/DescribeSimulationJobCommand.ts | 10 +- .../src/commands/DescribeWorldCommand.ts | 10 +- .../commands/DescribeWorldExportJobCommand.ts | 10 +- .../DescribeWorldGenerationJobCommand.ts | 10 +- .../commands/DescribeWorldTemplateCommand.ts | 10 +- .../commands/GetWorldTemplateBodyCommand.ts | 10 +- .../src/commands/ListDeploymentJobsCommand.ts | 14 +- .../src/commands/ListFleetsCommand.ts | 14 +- .../commands/ListRobotApplicationsCommand.ts | 10 +- .../src/commands/ListRobotsCommand.ts | 14 +- .../ListSimulationApplicationsCommand.ts | 10 +- .../ListSimulationJobBatchesCommand.ts | 10 +- .../src/commands/ListSimulationJobsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../commands/ListWorldExportJobsCommand.ts | 10 +- .../ListWorldGenerationJobsCommand.ts | 10 +- .../src/commands/ListWorldTemplatesCommand.ts | 10 +- .../src/commands/ListWorldsCommand.ts | 10 +- .../src/commands/RegisterRobotCommand.ts | 12 +- .../commands/RestartSimulationJobCommand.ts | 10 +- .../StartSimulationJobBatchCommand.ts | 10 +- .../src/commands/SyncDeploymentJobCommand.ts | 14 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateRobotApplicationCommand.ts | 10 +- .../UpdateSimulationApplicationCommand.ts | 10 +- .../commands/UpdateWorldTemplateCommand.ts | 10 +- .../client-robomaker/src/models/models_0.ts | 49 +++--- codegen/sdk-codegen/aws-models/robomaker.json | 162 +++++++++--------- 59 files changed, 639 insertions(+), 179 deletions(-) diff --git a/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts b/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts index d21372a290f5..deca3d7136be 100644 --- a/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts +++ b/clients/client-robomaker/src/commands/BatchDeleteWorldsCommand.ts @@ -28,7 +28,15 @@ export interface BatchDeleteWorldsCommandInput extends BatchDeleteWorldsRequest export interface BatchDeleteWorldsCommandOutput extends BatchDeleteWorldsResponse, __MetadataBearer {} /** - *

Deletes one or more worlds in a batch operation.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Deletes one or more worlds in a batch operation.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts b/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts index 96e8f9d53c2f..d3808100c9ff 100644 --- a/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/BatchDescribeSimulationJobCommand.ts @@ -28,7 +28,15 @@ export interface BatchDescribeSimulationJobCommandInput extends BatchDescribeSim export interface BatchDescribeSimulationJobCommandOutput extends BatchDescribeSimulationJobResponse, __MetadataBearer {} /** - *

Describes one or more simulation jobs.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes one or more simulation jobs.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts index 59a0ca516708..a098b6fcbbf7 100644 --- a/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelDeploymentJobCommand.ts @@ -28,10 +28,10 @@ export interface CancelDeploymentJobCommandInput extends CancelDeploymentJobRequ export interface CancelDeploymentJobCommandOutput extends CancelDeploymentJobResponse, __MetadataBearer {} /** - *

Cancels the specified deployment job.

- * - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ * + *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

Cancels the specified deployment job.

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts b/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts index 314608646f22..b23141a135c0 100644 --- a/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts +++ b/clients/client-robomaker/src/commands/CancelSimulationJobBatchCommand.ts @@ -28,7 +28,15 @@ export interface CancelSimulationJobBatchCommandInput extends CancelSimulationJo export interface CancelSimulationJobBatchCommandOutput extends CancelSimulationJobBatchResponse, __MetadataBearer {} /** - *

Cancels a simulation job batch. When you cancel a simulation job batch, you are also + * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Cancels a simulation job batch. When you cancel a simulation job batch, you are also * cancelling all of the active simulation jobs created as part of the batch.

* @example * Use a bare-bones client and the command you need to make an API call. diff --git a/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts b/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts index 4187eeb6a6d2..e91480f89f93 100644 --- a/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelSimulationJobCommand.ts @@ -28,7 +28,15 @@ export interface CancelSimulationJobCommandInput extends CancelSimulationJobRequ export interface CancelSimulationJobCommandOutput extends CancelSimulationJobResponse, __MetadataBearer {} /** - *

Cancels the specified simulation job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Cancels the specified simulation job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts b/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts index d4ebf31ec9fd..d1144d6d77c3 100644 --- a/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelWorldExportJobCommand.ts @@ -28,7 +28,15 @@ export interface CancelWorldExportJobCommandInput extends CancelWorldExportJobRe export interface CancelWorldExportJobCommandOutput extends CancelWorldExportJobResponse, __MetadataBearer {} /** - *

Cancels the specified export job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Cancels the specified export job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts b/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts index b251e2fed713..b26213bf8618 100644 --- a/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CancelWorldGenerationJobCommand.ts @@ -28,7 +28,15 @@ export interface CancelWorldGenerationJobCommandInput extends CancelWorldGenerat export interface CancelWorldGenerationJobCommandOutput extends CancelWorldGenerationJobResponse, __MetadataBearer {} /** - *

Cancels the specified world generator job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Cancels the specified world generator job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts index 9cb070248829..b374664d00d0 100644 --- a/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateDeploymentJobCommand.ts @@ -28,13 +28,22 @@ export interface CreateDeploymentJobCommandInput extends CreateDeploymentJobRequ export interface CreateDeploymentJobCommandOutput extends CreateDeploymentJobResponse, __MetadataBearer {} /** - *

Deploys a specific version of a robot application to robots in a fleet.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API is no longer supported and will throw an error if used.

+ *

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

*
+ *

Deploys a specific version of a robot application to robots in a fleet.

*

The robot application must have a numbered applicationVersion for - * consistency reasons. To create a new version, use - * CreateRobotApplicationVersion or see Creating a Robot Application Version.

+ * consistency reasons. To create a new version, use CreateRobotApplicationVersion or see + * Creating a Robot Application Version. + *

* *

After 90 days, deployment jobs expire and will be deleted. They will no longer be * accessible.

diff --git a/clients/client-robomaker/src/commands/CreateFleetCommand.ts b/clients/client-robomaker/src/commands/CreateFleetCommand.ts index 6c3c650a8dfc..367f12576d87 100644 --- a/clients/client-robomaker/src/commands/CreateFleetCommand.ts +++ b/clients/client-robomaker/src/commands/CreateFleetCommand.ts @@ -28,10 +28,18 @@ export interface CreateFleetCommandInput extends CreateFleetRequest {} export interface CreateFleetCommandOutput extends CreateFleetResponse, __MetadataBearer {} /** - *

Creates a fleet, a logical group of robots running the same robot application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API is no longer supported and will throw an error if used.

+ *

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

*
+ *

Creates a fleet, a logical group of robots running the same robot application.

* * @deprecated AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts index 983a6b731a3e..cf76785f6085 100644 --- a/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/CreateRobotApplicationCommand.ts @@ -28,7 +28,15 @@ export interface CreateRobotApplicationCommandInput extends CreateRobotApplicati export interface CreateRobotApplicationCommandOutput extends CreateRobotApplicationResponse, __MetadataBearer {} /** - *

Creates a robot application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates a robot application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts b/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts index 61803d25975d..02b1704b7e0e 100644 --- a/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts +++ b/clients/client-robomaker/src/commands/CreateRobotApplicationVersionCommand.ts @@ -33,7 +33,15 @@ export interface CreateRobotApplicationVersionCommandOutput __MetadataBearer {} /** - *

Creates a version of a robot application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates a version of a robot application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CreateRobotCommand.ts b/clients/client-robomaker/src/commands/CreateRobotCommand.ts index ae30c181abab..01bd30f1aebb 100644 --- a/clients/client-robomaker/src/commands/CreateRobotCommand.ts +++ b/clients/client-robomaker/src/commands/CreateRobotCommand.ts @@ -28,10 +28,18 @@ export interface CreateRobotCommandInput extends CreateRobotRequest {} export interface CreateRobotCommandOutput extends CreateRobotResponse, __MetadataBearer {} /** - *

Creates a robot.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API is no longer supported and will throw an error if used.

+ *

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

*
+ *

Creates a robot.

* * @deprecated AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts index 11628f403188..7a21f615dc27 100644 --- a/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/CreateSimulationApplicationCommand.ts @@ -33,7 +33,15 @@ export interface CreateSimulationApplicationCommandOutput __MetadataBearer {} /** - *

Creates a simulation application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates a simulation application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts b/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts index e62a5656f3a4..e17e8dd21135 100644 --- a/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts +++ b/clients/client-robomaker/src/commands/CreateSimulationApplicationVersionCommand.ts @@ -36,7 +36,15 @@ export interface CreateSimulationApplicationVersionCommandOutput __MetadataBearer {} /** - *

Creates a simulation application with a specific revision id.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates a simulation application with a specific revision id.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts b/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts index 8892a936318b..7e68456e563e 100644 --- a/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateSimulationJobCommand.ts @@ -28,7 +28,15 @@ export interface CreateSimulationJobCommandInput extends CreateSimulationJobRequ export interface CreateSimulationJobCommandOutput extends CreateSimulationJobResponse, __MetadataBearer {} /** - *

Creates a simulation job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates a simulation job.

* *

After 90 days, simulation jobs expire and will be deleted. They will no longer be * accessible.

diff --git a/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts b/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts index a12af73b2233..bf5d8a833c20 100644 --- a/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateWorldExportJobCommand.ts @@ -28,7 +28,15 @@ export interface CreateWorldExportJobCommandInput extends CreateWorldExportJobRe export interface CreateWorldExportJobCommandOutput extends CreateWorldExportJobResponse, __MetadataBearer {} /** - *

Creates a world export job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates a world export job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts b/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts index 9d16b4b9da0d..5e29f7cd73d1 100644 --- a/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts +++ b/clients/client-robomaker/src/commands/CreateWorldGenerationJobCommand.ts @@ -28,7 +28,15 @@ export interface CreateWorldGenerationJobCommandInput extends CreateWorldGenerat export interface CreateWorldGenerationJobCommandOutput extends CreateWorldGenerationJobResponse, __MetadataBearer {} /** - *

Creates worlds using the specified template.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates worlds using the specified template.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts index 45526fa1bc12..f432ab44ec00 100644 --- a/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/CreateWorldTemplateCommand.ts @@ -28,7 +28,15 @@ export interface CreateWorldTemplateCommandInput extends CreateWorldTemplateRequ export interface CreateWorldTemplateCommandOutput extends CreateWorldTemplateResponse, __MetadataBearer {} /** - *

Creates a world template.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Creates a world template.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DeleteFleetCommand.ts b/clients/client-robomaker/src/commands/DeleteFleetCommand.ts index 1072e890f037..07231663a61e 100644 --- a/clients/client-robomaker/src/commands/DeleteFleetCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteFleetCommand.ts @@ -28,10 +28,18 @@ export interface DeleteFleetCommandInput extends DeleteFleetRequest {} export interface DeleteFleetCommandOutput extends DeleteFleetResponse, __MetadataBearer {} /** - *

Deletes a fleet.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

Deletes a fleet.

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts index a2d8bf1ff947..1e3e161b120f 100644 --- a/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteRobotApplicationCommand.ts @@ -28,7 +28,15 @@ export interface DeleteRobotApplicationCommandInput extends DeleteRobotApplicati export interface DeleteRobotApplicationCommandOutput extends DeleteRobotApplicationResponse, __MetadataBearer {} /** - *

Deletes a robot application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Deletes a robot application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DeleteRobotCommand.ts b/clients/client-robomaker/src/commands/DeleteRobotCommand.ts index 8499d08445e3..f60342f4549b 100644 --- a/clients/client-robomaker/src/commands/DeleteRobotCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteRobotCommand.ts @@ -28,10 +28,18 @@ export interface DeleteRobotCommandInput extends DeleteRobotRequest {} export interface DeleteRobotCommandOutput extends DeleteRobotResponse, __MetadataBearer {} /** - *

Deletes a robot.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

Deletes a robot.

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts index cd42b28f3437..a74bfb01732d 100644 --- a/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteSimulationApplicationCommand.ts @@ -33,7 +33,15 @@ export interface DeleteSimulationApplicationCommandOutput __MetadataBearer {} /** - *

Deletes a simulation application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Deletes a simulation application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts index ce777ca04be6..73cce9144af8 100644 --- a/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/DeleteWorldTemplateCommand.ts @@ -28,7 +28,15 @@ export interface DeleteWorldTemplateCommandInput extends DeleteWorldTemplateRequ export interface DeleteWorldTemplateCommandOutput extends DeleteWorldTemplateResponse, __MetadataBearer {} /** - *

Deletes a world template.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Deletes a world template.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts b/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts index b7e22ecc3db0..27205722982a 100644 --- a/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts +++ b/clients/client-robomaker/src/commands/DeregisterRobotCommand.ts @@ -28,10 +28,18 @@ export interface DeregisterRobotCommandInput extends DeregisterRobotRequest {} export interface DeregisterRobotCommandOutput extends DeregisterRobotResponse, __MetadataBearer {} /** - *

Deregisters a robot.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

Deregisters a robot.

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts index ad3dcb74e2c6..41787ebbc499 100644 --- a/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeDeploymentJobCommand.ts @@ -28,10 +28,18 @@ export interface DescribeDeploymentJobCommandInput extends DescribeDeploymentJob export interface DescribeDeploymentJobCommandOutput extends DescribeDeploymentJobResponse, __MetadataBearer {} /** - *

Describes a deployment job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

Describes a deployment job.

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/DescribeFleetCommand.ts b/clients/client-robomaker/src/commands/DescribeFleetCommand.ts index 15bcf637c99b..e6e46b0313fc 100644 --- a/clients/client-robomaker/src/commands/DescribeFleetCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeFleetCommand.ts @@ -28,10 +28,18 @@ export interface DescribeFleetCommandInput extends DescribeFleetRequest {} export interface DescribeFleetCommandOutput extends DescribeFleetResponse, __MetadataBearer {} /** - *

Describes a fleet.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

Describes a fleet.

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts index 62228e692993..6a9f9177c8cd 100644 --- a/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeRobotApplicationCommand.ts @@ -28,7 +28,15 @@ export interface DescribeRobotApplicationCommandInput extends DescribeRobotAppli export interface DescribeRobotApplicationCommandOutput extends DescribeRobotApplicationResponse, __MetadataBearer {} /** - *

Describes a robot application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a robot application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DescribeRobotCommand.ts b/clients/client-robomaker/src/commands/DescribeRobotCommand.ts index 8d39b8e742b8..e24e3226a627 100644 --- a/clients/client-robomaker/src/commands/DescribeRobotCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeRobotCommand.ts @@ -28,10 +28,18 @@ export interface DescribeRobotCommandInput extends DescribeRobotRequest {} export interface DescribeRobotCommandOutput extends DescribeRobotResponse, __MetadataBearer {} /** - *

Describes a robot.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

Describes a robot.

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts index 6e99d486daf7..f32c66dc8025 100644 --- a/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeSimulationApplicationCommand.ts @@ -33,7 +33,15 @@ export interface DescribeSimulationApplicationCommandOutput __MetadataBearer {} /** - *

Describes a simulation application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a simulation application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts b/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts index ce4ab8176419..878cfe20ffc2 100644 --- a/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeSimulationJobBatchCommand.ts @@ -28,7 +28,15 @@ export interface DescribeSimulationJobBatchCommandInput extends DescribeSimulati export interface DescribeSimulationJobBatchCommandOutput extends DescribeSimulationJobBatchResponse, __MetadataBearer {} /** - *

Describes a simulation job batch.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a simulation job batch.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts b/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts index 7334f2616d80..51f4c2d33d0f 100644 --- a/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeSimulationJobCommand.ts @@ -28,7 +28,15 @@ export interface DescribeSimulationJobCommandInput extends DescribeSimulationJob export interface DescribeSimulationJobCommandOutput extends DescribeSimulationJobResponse, __MetadataBearer {} /** - *

Describes a simulation job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a simulation job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DescribeWorldCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldCommand.ts index ac3f9788a5f3..f0c9966df5b0 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldCommand.ts @@ -28,7 +28,15 @@ export interface DescribeWorldCommandInput extends DescribeWorldRequest {} export interface DescribeWorldCommandOutput extends DescribeWorldResponse, __MetadataBearer {} /** - *

Describes a world.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a world.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts index 83d0d6e2362f..681533e1e8df 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldExportJobCommand.ts @@ -28,7 +28,15 @@ export interface DescribeWorldExportJobCommandInput extends DescribeWorldExportJ export interface DescribeWorldExportJobCommandOutput extends DescribeWorldExportJobResponse, __MetadataBearer {} /** - *

Describes a world export job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a world export job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts index 9ab93b408c11..8891d82bd396 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldGenerationJobCommand.ts @@ -28,7 +28,15 @@ export interface DescribeWorldGenerationJobCommandInput extends DescribeWorldGen export interface DescribeWorldGenerationJobCommandOutput extends DescribeWorldGenerationJobResponse, __MetadataBearer {} /** - *

Describes a world generation job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a world generation job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts index 82afb84526ad..43133ef3ef2e 100644 --- a/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/DescribeWorldTemplateCommand.ts @@ -28,7 +28,15 @@ export interface DescribeWorldTemplateCommandInput extends DescribeWorldTemplate export interface DescribeWorldTemplateCommandOutput extends DescribeWorldTemplateResponse, __MetadataBearer {} /** - *

Describes a world template.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Describes a world template.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts b/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts index 20bdc3ef32fe..67484dda1108 100644 --- a/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts +++ b/clients/client-robomaker/src/commands/GetWorldTemplateBodyCommand.ts @@ -28,7 +28,15 @@ export interface GetWorldTemplateBodyCommandInput extends GetWorldTemplateBodyRe export interface GetWorldTemplateBodyCommandOutput extends GetWorldTemplateBodyResponse, __MetadataBearer {} /** - *

Gets the world template body.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Gets the world template body.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts b/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts index 49a9536dc95f..2e64d6f844df 100644 --- a/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListDeploymentJobsCommand.ts @@ -28,10 +28,20 @@ export interface ListDeploymentJobsCommandInput extends ListDeploymentJobsReques export interface ListDeploymentJobsCommandOutput extends ListDeploymentJobsResponse, __MetadataBearer {} /** - *

Returns a list of deployment jobs for a fleet. You can optionally provide filters to retrieve specific deployment jobs.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

+ * Returns a list of deployment jobs for a fleet. You can optionally provide filters to retrieve specific deployment jobs. + *

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/ListFleetsCommand.ts b/clients/client-robomaker/src/commands/ListFleetsCommand.ts index 0e1ec309003a..544001ec847f 100644 --- a/clients/client-robomaker/src/commands/ListFleetsCommand.ts +++ b/clients/client-robomaker/src/commands/ListFleetsCommand.ts @@ -28,10 +28,20 @@ export interface ListFleetsCommandInput extends ListFleetsRequest {} export interface ListFleetsCommandOutput extends ListFleetsResponse, __MetadataBearer {} /** - *

Returns a list of fleets. You can optionally provide filters to retrieve specific fleets.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

+ * Returns a list of fleets. You can optionally provide filters to retrieve specific fleets. + *

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts b/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts index 192933ce0308..8289ce1889bb 100644 --- a/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts +++ b/clients/client-robomaker/src/commands/ListRobotApplicationsCommand.ts @@ -28,7 +28,15 @@ export interface ListRobotApplicationsCommandInput extends ListRobotApplications export interface ListRobotApplicationsCommandOutput extends ListRobotApplicationsResponse, __MetadataBearer {} /** - *

Returns a list of robot application. You can optionally provide filters to retrieve + * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ * + *

Returns a list of robot application. You can optionally provide filters to retrieve * specific robot applications.

* @example * Use a bare-bones client and the command you need to make an API call. diff --git a/clients/client-robomaker/src/commands/ListRobotsCommand.ts b/clients/client-robomaker/src/commands/ListRobotsCommand.ts index cf0059c05f64..a5da03f0704b 100644 --- a/clients/client-robomaker/src/commands/ListRobotsCommand.ts +++ b/clients/client-robomaker/src/commands/ListRobotsCommand.ts @@ -28,10 +28,20 @@ export interface ListRobotsCommandInput extends ListRobotsRequest {} export interface ListRobotsCommandOutput extends ListRobotsResponse, __MetadataBearer {} /** - *

Returns a list of robots. You can optionally provide filters to retrieve specific robots.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

+ * Returns a list of robots. You can optionally provide filters to retrieve specific robots. + *

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts b/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts index a0570c3ca170..b02b7a236f07 100644 --- a/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts +++ b/clients/client-robomaker/src/commands/ListSimulationApplicationsCommand.ts @@ -28,7 +28,15 @@ export interface ListSimulationApplicationsCommandInput extends ListSimulationAp export interface ListSimulationApplicationsCommandOutput extends ListSimulationApplicationsResponse, __MetadataBearer {} /** - *

Returns a list of simulation applications. You can optionally provide filters to + * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ * + *

Returns a list of simulation applications. You can optionally provide filters to * retrieve specific simulation applications.

* @example * Use a bare-bones client and the command you need to make an API call. diff --git a/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts b/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts index 1aca9c039b15..53f477905b3f 100644 --- a/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts +++ b/clients/client-robomaker/src/commands/ListSimulationJobBatchesCommand.ts @@ -28,7 +28,15 @@ export interface ListSimulationJobBatchesCommandInput extends ListSimulationJobB export interface ListSimulationJobBatchesCommandOutput extends ListSimulationJobBatchesResponse, __MetadataBearer {} /** - *

Returns a list simulation job batches. You can optionally provide filters to retrieve + * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ * + *

Returns a list simulation job batches. You can optionally provide filters to retrieve * specific simulation batch jobs.

* @example * Use a bare-bones client and the command you need to make an API call. diff --git a/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts b/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts index aa2720c81167..5e8f7c608247 100644 --- a/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListSimulationJobsCommand.ts @@ -28,7 +28,15 @@ export interface ListSimulationJobsCommandInput extends ListSimulationJobsReques export interface ListSimulationJobsCommandOutput extends ListSimulationJobsResponse, __MetadataBearer {} /** - *

Returns a list of simulation jobs. You can optionally provide filters to retrieve + * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ * + *

Returns a list of simulation jobs. You can optionally provide filters to retrieve * specific simulation jobs.

* @example * Use a bare-bones client and the command you need to make an API call. diff --git a/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts b/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts index f438df401a3e..72d046a45dc2 100644 --- a/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-robomaker/src/commands/ListTagsForResourceCommand.ts @@ -28,7 +28,15 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {} /** - *

Lists all tags on a AWS RoboMaker resource.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Lists all tags on a AWS RoboMaker resource.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts b/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts index 85894066ce71..d9dfb27b6d06 100644 --- a/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldExportJobsCommand.ts @@ -28,7 +28,15 @@ export interface ListWorldExportJobsCommandInput extends ListWorldExportJobsRequ export interface ListWorldExportJobsCommandOutput extends ListWorldExportJobsResponse, __MetadataBearer {} /** - *

Lists world export jobs.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Lists world export jobs.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts b/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts index 01fd78957092..9865365f6793 100644 --- a/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldGenerationJobsCommand.ts @@ -28,7 +28,15 @@ export interface ListWorldGenerationJobsCommandInput extends ListWorldGeneration export interface ListWorldGenerationJobsCommandOutput extends ListWorldGenerationJobsResponse, __MetadataBearer {} /** - *

Lists world generator jobs.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Lists world generator jobs.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts b/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts index 0d7b54080a58..351750c5a153 100644 --- a/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldTemplatesCommand.ts @@ -28,7 +28,15 @@ export interface ListWorldTemplatesCommandInput extends ListWorldTemplatesReques export interface ListWorldTemplatesCommandOutput extends ListWorldTemplatesResponse, __MetadataBearer {} /** - *

Lists world templates.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Lists world templates.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/ListWorldsCommand.ts b/clients/client-robomaker/src/commands/ListWorldsCommand.ts index 723da2c6142b..fb17e4925c99 100644 --- a/clients/client-robomaker/src/commands/ListWorldsCommand.ts +++ b/clients/client-robomaker/src/commands/ListWorldsCommand.ts @@ -28,7 +28,15 @@ export interface ListWorldsCommandInput extends ListWorldsRequest {} export interface ListWorldsCommandOutput extends ListWorldsResponse, __MetadataBearer {} /** - *

Lists worlds.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Lists worlds.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/RegisterRobotCommand.ts b/clients/client-robomaker/src/commands/RegisterRobotCommand.ts index 034e3b3fb65a..25397dc8d922 100644 --- a/clients/client-robomaker/src/commands/RegisterRobotCommand.ts +++ b/clients/client-robomaker/src/commands/RegisterRobotCommand.ts @@ -28,9 +28,17 @@ export interface RegisterRobotCommandInput extends RegisterRobotRequest {} export interface RegisterRobotCommandOutput extends RegisterRobotResponse, __MetadataBearer {} /** - *

Registers a robot with a fleet.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Registers a robot with a fleet.

* - *

This API is no longer supported and will throw an error if used.

+ *

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

*
* * @deprecated AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. diff --git a/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts b/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts index d092a2f2a209..39e50b023e08 100644 --- a/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts +++ b/clients/client-robomaker/src/commands/RestartSimulationJobCommand.ts @@ -28,7 +28,15 @@ export interface RestartSimulationJobCommandInput extends RestartSimulationJobRe export interface RestartSimulationJobCommandOutput extends RestartSimulationJobResponse, __MetadataBearer {} /** - *

Restarts a running simulation job.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Restarts a running simulation job.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts b/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts index 2f9b85ba76c9..873aeac35b5f 100644 --- a/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts +++ b/clients/client-robomaker/src/commands/StartSimulationJobBatchCommand.ts @@ -28,7 +28,15 @@ export interface StartSimulationJobBatchCommandInput extends StartSimulationJobB export interface StartSimulationJobBatchCommandOutput extends StartSimulationJobBatchResponse, __MetadataBearer {} /** - *

Starts a new simulation job batch. The batch is defined using one or more + * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ * + *

Starts a new simulation job batch. The batch is defined using one or more * SimulationJobRequest objects.

* @example * Use a bare-bones client and the command you need to make an API call. diff --git a/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts b/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts index a2a28dcc14a4..d45cae54aba3 100644 --- a/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts +++ b/clients/client-robomaker/src/commands/SyncDeploymentJobCommand.ts @@ -28,10 +28,20 @@ export interface SyncDeploymentJobCommandInput extends SyncDeploymentJobRequest export interface SyncDeploymentJobCommandOutput extends SyncDeploymentJobResponse, __MetadataBearer {} /** - *

Syncrhonizes robots in a fleet to the latest deployment. This is helpful if robots were added after a deployment.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
* - *

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

+ *

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

*
+ *

+ * Syncrhonizes robots in a fleet to the latest deployment. This is helpful if robots were added after a deployment. + *

* * @deprecated Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html. * @example diff --git a/clients/client-robomaker/src/commands/TagResourceCommand.ts b/clients/client-robomaker/src/commands/TagResourceCommand.ts index 20db6e6459e9..70e82cdb9421 100644 --- a/clients/client-robomaker/src/commands/TagResourceCommand.ts +++ b/clients/client-robomaker/src/commands/TagResourceCommand.ts @@ -28,7 +28,15 @@ export interface TagResourceCommandInput extends TagResourceRequest {} export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {} /** - *

Adds or edits tags for a AWS RoboMaker resource.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Adds or edits tags for a AWS RoboMaker resource.

*

Each tag consists of a tag key and a tag value. Tag keys and tag values are both * required, but tag values can be empty strings.

*

For information about the rules that apply to tag keys and tag values, see User-Defined Tag Restrictions in the AWS Billing and Cost Management diff --git a/clients/client-robomaker/src/commands/UntagResourceCommand.ts b/clients/client-robomaker/src/commands/UntagResourceCommand.ts index 59d3bf047fbf..a0e96323e0ea 100644 --- a/clients/client-robomaker/src/commands/UntagResourceCommand.ts +++ b/clients/client-robomaker/src/commands/UntagResourceCommand.ts @@ -28,7 +28,15 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {} export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {} /** - *

Removes the specified tags from the specified AWS RoboMaker resource.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Removes the specified tags from the specified AWS RoboMaker resource.

*

To remove a tag, specify the tag key. To change the tag value of an existing tag key, * use * TagResource diff --git a/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts b/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts index b5324f843012..539a6033c333 100644 --- a/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/UpdateRobotApplicationCommand.ts @@ -28,7 +28,15 @@ export interface UpdateRobotApplicationCommandInput extends UpdateRobotApplicati export interface UpdateRobotApplicationCommandOutput extends UpdateRobotApplicationResponse, __MetadataBearer {} /** - *

Updates a robot application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ * + *

Updates a robot application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts b/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts index 80709cb83dd4..d43b274bdb15 100644 --- a/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts +++ b/clients/client-robomaker/src/commands/UpdateSimulationApplicationCommand.ts @@ -33,7 +33,15 @@ export interface UpdateSimulationApplicationCommandOutput __MetadataBearer {} /** - *

Updates a simulation application.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Updates a simulation application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts b/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts index 8c325b9b9642..7c3fe6226ae4 100644 --- a/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts +++ b/clients/client-robomaker/src/commands/UpdateWorldTemplateCommand.ts @@ -28,7 +28,15 @@ export interface UpdateWorldTemplateCommandInput extends UpdateWorldTemplateRequ export interface UpdateWorldTemplateCommandOutput extends UpdateWorldTemplateResponse, __MetadataBearer {} /** - *

Updates a world template.

+ * + *

End of support notice: On September 10, 2025, Amazon Web Services + * will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will + * no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. + * For more information on transitioning to Batch to help run containerized + * simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/. + *

+ *
+ *

Updates a world template.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript diff --git a/clients/client-robomaker/src/models/models_0.ts b/clients/client-robomaker/src/models/models_0.ts index 460be1d05054..88901edfc693 100644 --- a/clients/client-robomaker/src/models/models_0.ts +++ b/clients/client-robomaker/src/models/models_0.ts @@ -513,9 +513,9 @@ export interface UploadConfiguration { /** *

A prefix that specifies where files will be uploaded in Amazon S3. It is appended to the * simulation output location to determine the final path.

- *

For example, if your simulation output location is s3://my-bucket and your + *

For example, if your simulation output location is s3://amzn-s3-demo-bucket and your * upload configuration name is robot-test, your files will be uploaded to - * s3://my-bucket///robot-test.

+ * s3://amzn-s3-demo-bucket///robot-test.

* @public */ name: string | undefined; @@ -657,6 +657,9 @@ export interface SimulationApplicationConfig { /** *

A list of world configurations.

+ * + *

This API is no longer supported and will throw an error if used.

+ *
* @public */ worldConfigs?: WorldConfig[]; @@ -1641,18 +1644,18 @@ export type RobotSoftwareSuiteVersionType = (typeof RobotSoftwareSuiteVersionType)[keyof typeof RobotSoftwareSuiteVersionType]; /** - *

Information about a robot software suite (ROS distribution).

+ *

Information about a robot software suite.

* @public */ export interface RobotSoftwareSuite { /** - *

The name of the robot software suite (ROS distribution).

+ *

The name of the robot software suite. General is the only supported value.

* @public */ name?: RobotSoftwareSuiteType; /** - *

The version of the robot software suite (ROS distribution).

+ *

The version of the robot software suite. Not applicable for General software suite.

* @public */ version?: RobotSoftwareSuiteVersionType; @@ -1699,7 +1702,7 @@ export interface CreateRobotApplicationRequest { sources?: SourceConfig[]; /** - *

The robot software suite (ROS distribuition) used by the robot application.

+ *

The robot software suite used by the robot application.

* @public */ robotSoftwareSuite: RobotSoftwareSuite | undefined; @@ -1778,7 +1781,7 @@ export interface CreateRobotApplicationResponse { sources?: Source[]; /** - *

The robot software suite (ROS distribution) used by the robot application.

+ *

The robot software suite used by the robot application.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -1870,7 +1873,7 @@ export interface CreateRobotApplicationVersionResponse { sources?: Source[]; /** - *

The robot software suite (ROS distribution) used by the robot application.

+ *

The robot software suite used by the robot application.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -1949,13 +1952,13 @@ export type SimulationSoftwareSuiteType = */ export interface SimulationSoftwareSuite { /** - *

The name of the simulation software suite.

+ *

The name of the simulation software suite. SimulationRuntime is the only supported value.

* @public */ name?: SimulationSoftwareSuiteType; /** - *

The version of the simulation software suite.

+ *

The version of the simulation software suite. Not applicable for SimulationRuntime.

* @public */ version?: string; @@ -1984,7 +1987,7 @@ export interface CreateSimulationApplicationRequest { simulationSoftwareSuite: SimulationSoftwareSuite | undefined; /** - *

The robot software suite (ROS distribution) used by the simulation application.

+ *

The robot software suite used by the simulation application.

* @public */ robotSoftwareSuite: RobotSoftwareSuite | undefined; @@ -2045,7 +2048,7 @@ export interface CreateSimulationApplicationResponse { simulationSoftwareSuite?: SimulationSoftwareSuite; /** - *

Information about the robot software suite (ROS distribution).

+ *

Information about the robot software suite.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -2150,7 +2153,7 @@ export interface CreateSimulationApplicationVersionResponse { simulationSoftwareSuite?: SimulationSoftwareSuite; /** - *

Information about the robot software suite (ROS distribution).

+ *

Information about the robot software suite.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -3799,7 +3802,7 @@ export interface DescribeRobotApplicationResponse { sources?: Source[]; /** - *

The robot software suite (ROS distribution) used by the robot application.

+ *

The robot software suite used by the robot application.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -3889,7 +3892,7 @@ export interface DescribeSimulationApplicationResponse { simulationSoftwareSuite?: SimulationSoftwareSuite; /** - *

Information about the robot software suite (ROS distribution).

+ *

Information about the robot software suite.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -5157,7 +5160,7 @@ export interface RobotApplicationSummary { lastUpdatedAt?: Date; /** - *

Information about a robot software suite (ROS distribution).

+ *

Information about a robot software suite.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -5314,7 +5317,7 @@ export interface SimulationApplicationSummary { lastUpdatedAt?: Date; /** - *

Information about a robot software suite (ROS distribution).

+ *

Information about a robot software suite.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -5390,8 +5393,8 @@ export interface SimulationJobBatchSummary { arn?: string; /** - *

The time, in milliseconds since the epoch, when the simulation job batch was last - * updated.

+ *

The time, in milliseconds since the epoch, when the simulation job batch was last updated. + *

* @public */ lastUpdatedAt?: Date; @@ -6401,7 +6404,7 @@ export interface UpdateRobotApplicationRequest { sources?: SourceConfig[]; /** - *

The robot software suite (ROS distribution) used by the robot application.

+ *

The robot software suite used by the robot application.

* @public */ robotSoftwareSuite: RobotSoftwareSuite | undefined; @@ -6448,7 +6451,7 @@ export interface UpdateRobotApplicationResponse { sources?: Source[]; /** - *

The robot software suite (ROS distribution) used by the robot application.

+ *

The robot software suite used by the robot application.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; @@ -6496,7 +6499,7 @@ export interface UpdateSimulationApplicationRequest { simulationSoftwareSuite: SimulationSoftwareSuite | undefined; /** - *

Information about the robot software suite (ROS distribution).

+ *

Information about the robot software suite.

* @public */ robotSoftwareSuite: RobotSoftwareSuite | undefined; @@ -6555,7 +6558,7 @@ export interface UpdateSimulationApplicationResponse { simulationSoftwareSuite?: SimulationSoftwareSuite; /** - *

Information about the robot software suite (ROS distribution).

+ *

Information about the robot software suite.

* @public */ robotSoftwareSuite?: RobotSoftwareSuite; diff --git a/codegen/sdk-codegen/aws-models/robomaker.json b/codegen/sdk-codegen/aws-models/robomaker.json index 7b8d8b1503be..b08f9f00bf4b 100644 --- a/codegen/sdk-codegen/aws-models/robomaker.json +++ b/codegen/sdk-codegen/aws-models/robomaker.json @@ -94,7 +94,7 @@ } ], "traits": { - "smithy.api#documentation": "

Deletes one or more worlds in a batch operation.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Deletes one or more worlds in a batch operation.

", "smithy.api#http": { "method": "POST", "uri": "/batchDeleteWorlds", @@ -154,7 +154,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes one or more simulation jobs.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes one or more simulation jobs.

", "smithy.api#http": { "method": "POST", "uri": "/batchDescribeSimulationJob", @@ -255,7 +255,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Cancels the specified deployment job.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

Cancels the specified deployment job.

", "smithy.api#http": { "method": "POST", "uri": "/cancelDeploymentJob", @@ -314,7 +314,7 @@ } ], "traits": { - "smithy.api#documentation": "

Cancels the specified simulation job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Cancels the specified simulation job.

", "smithy.api#http": { "method": "POST", "uri": "/cancelSimulationJob", @@ -345,7 +345,7 @@ } ], "traits": { - "smithy.api#documentation": "

Cancels a simulation job batch. When you cancel a simulation job batch, you are also\n cancelling all of the active simulation jobs created as part of the batch.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Cancels a simulation job batch. When you cancel a simulation job batch, you are also\n cancelling all of the active simulation jobs created as part of the batch.

", "smithy.api#http": { "method": "POST", "uri": "/cancelSimulationJobBatch", @@ -420,7 +420,7 @@ } ], "traits": { - "smithy.api#documentation": "

Cancels the specified export job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Cancels the specified export job.

", "smithy.api#http": { "method": "POST", "uri": "/cancelWorldExportJob", @@ -473,7 +473,7 @@ } ], "traits": { - "smithy.api#documentation": "

Cancels the specified world generator job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Cancels the specified world generator job.

", "smithy.api#http": { "method": "POST", "uri": "/cancelWorldGenerationJob", @@ -646,7 +646,7 @@ "smithy.api#deprecated": { "message": "AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Deploys a specific version of a robot application to robots in a fleet.

\n \n

This API is no longer supported and will throw an error if used.

\n
\n

The robot application must have a numbered applicationVersion for\n consistency reasons. To create a new version, use\n CreateRobotApplicationVersion or see Creating a Robot Application Version.

\n \n

After 90 days, deployment jobs expire and will be deleted. They will no longer be\n accessible.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

\n
\n

Deploys a specific version of a robot application to robots in a fleet.

\n

The robot application must have a numbered applicationVersion for\n consistency reasons. To create a new version, use CreateRobotApplicationVersion or see \n Creating a Robot Application Version.\n

\n \n

After 90 days, deployment jobs expire and will be deleted. They will no longer be\n accessible.

\n
", "smithy.api#http": { "method": "POST", "uri": "/createDeploymentJob", @@ -790,7 +790,7 @@ "smithy.api#deprecated": { "message": "AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Creates a fleet, a logical group of robots running the same robot application.

\n \n

This API is no longer supported and will throw an error if used.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

\n
\n

Creates a fleet, a logical group of robots running the same robot application.

", "smithy.api#http": { "method": "POST", "uri": "/createFleet", @@ -886,7 +886,7 @@ "smithy.api#deprecated": { "message": "AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Creates a robot.

\n \n

This API is no longer supported and will throw an error if used.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

\n
\n

Creates a robot.

", "smithy.api#http": { "method": "POST", "uri": "/createRobot", @@ -923,7 +923,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates a robot application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates a robot application.

", "smithy.api#http": { "method": "POST", "uri": "/createRobotApplication", @@ -950,7 +950,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

The robot software suite (ROS distribuition) used by the robot application.

", + "smithy.api#documentation": "

The robot software suite used by the robot application.

", "smithy.api#required": {} } }, @@ -1001,7 +1001,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

The robot software suite (ROS distribution) used by the robot application.

" + "smithy.api#documentation": "

The robot software suite used by the robot application.

" } }, "lastUpdatedAt": { @@ -1059,7 +1059,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates a version of a robot application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates a version of a robot application.

", "smithy.api#http": { "method": "POST", "uri": "/createRobotApplicationVersion", @@ -1130,7 +1130,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

The robot software suite (ROS distribution) used by the robot application.

" + "smithy.api#documentation": "

The robot software suite used by the robot application.

" } }, "lastUpdatedAt": { @@ -1270,7 +1270,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates a simulation application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates a simulation application.

", "smithy.api#http": { "method": "POST", "uri": "/createSimulationApplication", @@ -1304,7 +1304,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

The robot software suite (ROS distribution) used by the simulation application.

", + "smithy.api#documentation": "

The robot software suite used by the simulation application.

", "smithy.api#required": {} } }, @@ -1367,7 +1367,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

Information about the robot software suite (ROS distribution).

" + "smithy.api#documentation": "

Information about the robot software suite.

" } }, "renderingEngine": { @@ -1431,7 +1431,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates a simulation application with a specific revision id.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates a simulation application with a specific revision id.

", "smithy.api#http": { "method": "POST", "uri": "/createSimulationApplicationVersion", @@ -1508,7 +1508,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

Information about the robot software suite (ROS distribution).

" + "smithy.api#documentation": "

Information about the robot software suite.

" } }, "renderingEngine": { @@ -1572,7 +1572,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates a simulation job.

\n \n

After 90 days, simulation jobs expire and will be deleted. They will no longer be\n accessible.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates a simulation job.

\n \n

After 90 days, simulation jobs expire and will be deleted. They will no longer be\n accessible.

\n
", "smithy.api#http": { "method": "POST", "uri": "/createSimulationJob", @@ -1823,7 +1823,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates a world export job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates a world export job.

", "smithy.api#http": { "method": "POST", "uri": "/createWorldExportJob", @@ -1957,7 +1957,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates worlds using the specified template.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates worlds using the specified template.

", "smithy.api#http": { "method": "POST", "uri": "/createWorldGenerationJob", @@ -2097,7 +2097,7 @@ } ], "traits": { - "smithy.api#documentation": "

Creates a world template.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Creates a world template.

", "smithy.api#http": { "method": "POST", "uri": "/createWorldTemplate", @@ -2333,7 +2333,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Deletes a fleet.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

Deletes a fleet.

", "smithy.api#http": { "method": "POST", "uri": "/deleteFleet", @@ -2392,7 +2392,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Deletes a robot.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

Deletes a robot.

", "smithy.api#http": { "method": "POST", "uri": "/deleteRobot", @@ -2420,7 +2420,7 @@ } ], "traits": { - "smithy.api#documentation": "

Deletes a robot application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Deletes a robot application.

", "smithy.api#http": { "method": "POST", "uri": "/deleteRobotApplication", @@ -2504,7 +2504,7 @@ } ], "traits": { - "smithy.api#documentation": "

Deletes a simulation application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Deletes a simulation application.

", "smithy.api#http": { "method": "POST", "uri": "/deleteSimulationApplication", @@ -2563,7 +2563,7 @@ } ], "traits": { - "smithy.api#documentation": "

Deletes a world template.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Deletes a world template.

", "smithy.api#http": { "method": "POST", "uri": "/deleteWorldTemplate", @@ -3003,7 +3003,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Deregisters a robot.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

Deregisters a robot.

", "smithy.api#http": { "method": "POST", "uri": "/deregisterRobot", @@ -3085,7 +3085,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Describes a deployment job.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

Describes a deployment job.

", "smithy.api#http": { "method": "POST", "uri": "/describeDeploymentJob", @@ -3208,7 +3208,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Describes a fleet.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

Describes a fleet.

", "smithy.api#http": { "method": "POST", "uri": "/describeFleet", @@ -3319,7 +3319,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Describes a robot.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

Describes a robot.

", "smithy.api#http": { "method": "POST", "uri": "/describeRobot", @@ -3350,7 +3350,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a robot application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a robot application.

", "smithy.api#http": { "method": "POST", "uri": "/describeRobotApplication", @@ -3409,7 +3409,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

The robot software suite (ROS distribution) used by the robot application.

" + "smithy.api#documentation": "

The robot software suite used by the robot application.

" } }, "revisionId": { @@ -3559,7 +3559,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a simulation application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a simulation application.

", "smithy.api#http": { "method": "POST", "uri": "/describeSimulationApplication", @@ -3624,7 +3624,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

Information about the robot software suite (ROS distribution).

" + "smithy.api#documentation": "

Information about the robot software suite.

" } }, "renderingEngine": { @@ -3691,7 +3691,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a simulation job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a simulation job.

", "smithy.api#http": { "method": "POST", "uri": "/describeSimulationJob", @@ -3719,7 +3719,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a simulation job batch.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a simulation job batch.

", "smithy.api#http": { "method": "POST", "uri": "/describeSimulationJobBatch", @@ -3996,7 +3996,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a world.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a world.

", "smithy.api#http": { "method": "POST", "uri": "/describeWorld", @@ -4027,7 +4027,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a world export job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a world export job.

", "smithy.api#http": { "method": "POST", "uri": "/describeWorldExportJob", @@ -4138,7 +4138,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a world generation job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a world generation job.

", "smithy.api#http": { "method": "POST", "uri": "/describeWorldGenerationJob", @@ -4317,7 +4317,7 @@ } ], "traits": { - "smithy.api#documentation": "

Describes a world template.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Describes a world template.

", "smithy.api#http": { "method": "POST", "uri": "/describeWorldTemplate", @@ -4710,7 +4710,7 @@ } ], "traits": { - "smithy.api#documentation": "

Gets the world template body.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Gets the world template body.

", "smithy.api#http": { "method": "POST", "uri": "/getWorldTemplateBody", @@ -4936,7 +4936,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Returns a list of deployment jobs for a fleet. You can optionally provide filters to retrieve specific deployment jobs.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

\n Returns a list of deployment jobs for a fleet. You can optionally provide filters to retrieve specific deployment jobs.\n

", "smithy.api#http": { "method": "POST", "uri": "/listDeploymentJobs", @@ -5028,7 +5028,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Returns a list of fleets. You can optionally provide filters to retrieve specific fleets.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

\n Returns a list of fleets. You can optionally provide filters to retrieve specific fleets.\n

", "smithy.api#http": { "method": "POST", "uri": "/listFleets", @@ -5114,7 +5114,7 @@ } ], "traits": { - "smithy.api#documentation": "

Returns a list of robot application. You can optionally provide filters to retrieve\n specific robot applications.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Returns a list of robot application. You can optionally provide filters to retrieve\n specific robot applications.

", "smithy.api#http": { "method": "POST", "uri": "/listRobotApplications", @@ -5206,7 +5206,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Returns a list of robots. You can optionally provide filters to retrieve specific robots.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

\n Returns a list of robots. You can optionally provide filters to retrieve specific robots.\n

", "smithy.api#http": { "method": "POST", "uri": "/listRobots", @@ -5292,7 +5292,7 @@ } ], "traits": { - "smithy.api#documentation": "

Returns a list of simulation applications. You can optionally provide filters to\n retrieve specific simulation applications.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Returns a list of simulation applications. You can optionally provide filters to\n retrieve specific simulation applications.

", "smithy.api#http": { "method": "POST", "uri": "/listSimulationApplications", @@ -5375,7 +5375,7 @@ } ], "traits": { - "smithy.api#documentation": "

Returns a list simulation job batches. You can optionally provide filters to retrieve\n specific simulation batch jobs.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Returns a list simulation job batches. You can optionally provide filters to retrieve\n specific simulation batch jobs.

", "smithy.api#http": { "method": "POST", "uri": "/listSimulationJobBatches", @@ -5455,7 +5455,7 @@ } ], "traits": { - "smithy.api#documentation": "

Returns a list of simulation jobs. You can optionally provide filters to retrieve\n specific simulation jobs.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Returns a list of simulation jobs. You can optionally provide filters to retrieve\n specific simulation jobs.

", "smithy.api#http": { "method": "POST", "uri": "/listSimulationJobs", @@ -5539,7 +5539,7 @@ } ], "traits": { - "smithy.api#documentation": "

Lists all tags on a AWS RoboMaker resource.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Lists all tags on a AWS RoboMaker resource.

", "smithy.api#http": { "method": "GET", "uri": "/tags/{resourceArn}", @@ -5597,7 +5597,7 @@ } ], "traits": { - "smithy.api#documentation": "

Lists world export jobs.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Lists world export jobs.

", "smithy.api#http": { "method": "POST", "uri": "/listWorldExportJobs", @@ -5678,7 +5678,7 @@ } ], "traits": { - "smithy.api#documentation": "

Lists world generator jobs.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Lists world generator jobs.

", "smithy.api#http": { "method": "POST", "uri": "/listWorldGenerationJobs", @@ -5759,7 +5759,7 @@ } ], "traits": { - "smithy.api#documentation": "

Lists world templates.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Lists world templates.

", "smithy.api#http": { "method": "POST", "uri": "/listWorldTemplates", @@ -5833,7 +5833,7 @@ } ], "traits": { - "smithy.api#documentation": "

Lists worlds.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Lists worlds.

", "smithy.api#http": { "method": "POST", "uri": "/listWorlds", @@ -6015,8 +6015,8 @@ "type": "float", "traits": { "smithy.api#range": { - "min": 0, - "max": 100 + "min": 0.0, + "max": 100.0 } } }, @@ -6154,7 +6154,7 @@ "smithy.api#deprecated": { "message": "AWS RoboMaker is unable to process this request as the support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Registers a robot with a fleet.

\n \n

This API is no longer supported and will throw an error if used.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Registers a robot with a fleet.

\n \n

This API is no longer supported and will throw an error if used. For more information, see the January 31, 2022 update in the Support policy page.

\n
", "smithy.api#http": { "method": "POST", "uri": "/registerRobot", @@ -6313,7 +6313,7 @@ } ], "traits": { - "smithy.api#documentation": "

Restarts a running simulation job.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Restarts a running simulation job.

", "smithy.api#http": { "method": "POST", "uri": "/restartSimulationJob", @@ -6533,7 +6533,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

Information about a robot software suite (ROS distribution).

" + "smithy.api#documentation": "

Information about a robot software suite.

" } } }, @@ -6650,18 +6650,18 @@ "name": { "target": "com.amazonaws.robomaker#RobotSoftwareSuiteType", "traits": { - "smithy.api#documentation": "

The name of the robot software suite (ROS distribution).

" + "smithy.api#documentation": "

The name of the robot software suite. General is the only supported value.

" } }, "version": { "target": "com.amazonaws.robomaker#RobotSoftwareSuiteVersionType", "traits": { - "smithy.api#documentation": "

The version of the robot software suite (ROS distribution).

" + "smithy.api#documentation": "

The version of the robot software suite. Not applicable for General software suite.

" } } }, "traits": { - "smithy.api#documentation": "

Information about a robot software suite (ROS distribution).

" + "smithy.api#documentation": "

Information about a robot software suite.

" } }, "com.amazonaws.robomaker#RobotSoftwareSuiteType": { @@ -6937,7 +6937,7 @@ "worldConfigs": { "target": "com.amazonaws.robomaker#WorldConfigs", "traits": { - "smithy.api#documentation": "

A list of world configurations.

" + "smithy.api#documentation": "

A list of world configurations.

\n \n

This API is no longer supported and will throw an error if used.

\n
" } }, "useDefaultUploadConfigurations": { @@ -7029,7 +7029,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

Information about a robot software suite (ROS distribution).

" + "smithy.api#documentation": "

Information about a robot software suite.

" } }, "simulationSoftwareSuite": { @@ -7267,7 +7267,7 @@ "lastUpdatedAt": { "target": "com.amazonaws.robomaker#LastUpdatedAt", "traits": { - "smithy.api#documentation": "

The time, in milliseconds since the epoch, when the simulation job batch was last\n updated.

" + "smithy.api#documentation": "

The time, in milliseconds since the epoch, when the simulation job batch was last updated.\n

" } }, "createdAt": { @@ -7717,13 +7717,13 @@ "name": { "target": "com.amazonaws.robomaker#SimulationSoftwareSuiteType", "traits": { - "smithy.api#documentation": "

The name of the simulation software suite.

" + "smithy.api#documentation": "

The name of the simulation software suite. SimulationRuntime is the only supported value.

" } }, "version": { "target": "com.amazonaws.robomaker#SimulationSoftwareSuiteVersionType", "traits": { - "smithy.api#documentation": "

The version of the simulation software suite.

" + "smithy.api#documentation": "

The version of the simulation software suite. Not applicable for SimulationRuntime.

" } } }, @@ -7875,7 +7875,7 @@ } ], "traits": { - "smithy.api#documentation": "

Starts a new simulation job batch. The batch is defined using one or more\n SimulationJobRequest objects.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Starts a new simulation job batch. The batch is defined using one or more\n SimulationJobRequest objects.

", "smithy.api#http": { "method": "POST", "uri": "/startSimulationJobBatch", @@ -8038,7 +8038,7 @@ "smithy.api#deprecated": { "message": "Support for the AWS RoboMaker application deployment feature has ended. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/fleets.html." }, - "smithy.api#documentation": "

Syncrhonizes robots in a fleet to the latest deployment. This is helpful if robots were added after a deployment.

\n \n

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

\n
", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n \n

This API is no longer supported. For more information, see the May 2, 2022 update in the Support policy page.

\n
\n

\n Syncrhonizes robots in a fleet to the latest deployment. This is helpful if robots were added after a deployment.\n

", "smithy.api#http": { "method": "POST", "uri": "/syncDeploymentJob", @@ -8185,7 +8185,7 @@ } ], "traits": { - "smithy.api#documentation": "

Adds or edits tags for a AWS RoboMaker resource.

\n

Each tag consists of a tag key and a tag value. Tag keys and tag values are both\n required, but tag values can be empty strings.

\n

For information about the rules that apply to tag keys and tag values, see User-Defined Tag Restrictions in the AWS Billing and Cost Management\n User Guide.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Adds or edits tags for a AWS RoboMaker resource.

\n

Each tag consists of a tag key and a tag value. Tag keys and tag values are both\n required, but tag values can be empty strings.

\n

For information about the rules that apply to tag keys and tag values, see User-Defined Tag Restrictions in the AWS Billing and Cost Management\n User Guide.

", "smithy.api#http": { "method": "POST", "uri": "/tags/{resourceArn}", @@ -8407,7 +8407,7 @@ } ], "traits": { - "smithy.api#documentation": "

Removes the specified tags from the specified AWS RoboMaker resource.

\n

To remove a tag, specify the tag key. To change the tag value of an existing tag key,\n use \n TagResource\n .

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Removes the specified tags from the specified AWS RoboMaker resource.

\n

To remove a tag, specify the tag key. To change the tag value of an existing tag key,\n use \n TagResource\n .

", "smithy.api#http": { "method": "DELETE", "uri": "/tags/{resourceArn}", @@ -8472,7 +8472,7 @@ } ], "traits": { - "smithy.api#documentation": "

Updates a robot application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Updates a robot application.

", "smithy.api#http": { "method": "POST", "uri": "/updateRobotApplication", @@ -8499,7 +8499,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

The robot software suite (ROS distribution) used by the robot application.

", + "smithy.api#documentation": "

The robot software suite used by the robot application.

", "smithy.api#required": {} } }, @@ -8550,7 +8550,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

The robot software suite (ROS distribution) used by the robot application.

" + "smithy.api#documentation": "

The robot software suite used by the robot application.

" } }, "lastUpdatedAt": { @@ -8602,7 +8602,7 @@ } ], "traits": { - "smithy.api#documentation": "

Updates a simulation application.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Updates a simulation application.

", "smithy.api#http": { "method": "POST", "uri": "/updateSimulationApplication", @@ -8636,7 +8636,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

Information about the robot software suite (ROS distribution).

", + "smithy.api#documentation": "

Information about the robot software suite.

", "smithy.api#required": {} } }, @@ -8699,7 +8699,7 @@ "robotSoftwareSuite": { "target": "com.amazonaws.robomaker#RobotSoftwareSuite", "traits": { - "smithy.api#documentation": "

Information about the robot software suite (ROS distribution).

" + "smithy.api#documentation": "

Information about the robot software suite.

" } }, "renderingEngine": { @@ -8754,7 +8754,7 @@ } ], "traits": { - "smithy.api#documentation": "

Updates a world template.

", + "smithy.api#documentation": "\n

End of support notice: On September 10, 2025, Amazon Web Services\n will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will\n no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. \n For more information on transitioning to Batch to help run containerized\n simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.\n

\n
\n

Updates a world template.

", "smithy.api#http": { "method": "POST", "uri": "/updateWorldTemplate", @@ -8850,7 +8850,7 @@ "name": { "target": "com.amazonaws.robomaker#Name", "traits": { - "smithy.api#documentation": "

A prefix that specifies where files will be uploaded in Amazon S3. It is appended to the\n simulation output location to determine the final path.

\n

For example, if your simulation output location is s3://my-bucket and your\n upload configuration name is robot-test, your files will be uploaded to\n s3://my-bucket///robot-test.

", + "smithy.api#documentation": "

A prefix that specifies where files will be uploaded in Amazon S3. It is appended to the\n simulation output location to determine the final path.

\n

For example, if your simulation output location is s3://amzn-s3-demo-bucket and your\n upload configuration name is robot-test, your files will be uploaded to\n s3://amzn-s3-demo-bucket///robot-test.

", "smithy.api#required": {} } },