awscli 1.40.17__py3-none-any.whl → 1.44.26__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- awscli/__init__.py +1 -1
- awscli/alias.py +3 -3
- awscli/argprocess.py +7 -2
- awscli/arguments.py +1 -1
- awscli/bcdoc/docevents.py +3 -0
- awscli/clidocs.py +19 -2
- awscli/clidriver.py +57 -10
- awscli/compat.py +11 -0
- awscli/customizations/argrename.py +1 -3
- awscli/customizations/cliinputjson.py +4 -0
- awscli/customizations/cloudformation/deploy.py +23 -6
- awscli/customizations/cloudformation/deployer.py +2 -2
- awscli/customizations/cloudformation/package.py +3 -2
- awscli/customizations/cloudfront.py +3 -1
- awscli/customizations/cloudtrail/subscribe.py +5 -5
- awscli/customizations/cloudtrail/validation.py +32 -11
- awscli/customizations/codecommit.py +2 -3
- awscli/customizations/codedeploy/deregister.py +5 -2
- awscli/customizations/codedeploy/push.py +7 -6
- awscli/customizations/codedeploy/register.py +5 -2
- awscli/customizations/codedeploy/systems.py +3 -1
- awscli/customizations/commands.py +2 -1
- awscli/customizations/configservice/getstatus.py +3 -3
- awscli/customizations/datapipeline/__init__.py +7 -4
- awscli/customizations/datapipeline/createdefaultroles.py +4 -2
- awscli/customizations/dlm/createdefaultrole.py +4 -2
- awscli/customizations/ec2/bundleinstance.py +2 -1
- awscli/customizations/eks/get_token.py +6 -4
- awscli/customizations/eks/update_kubeconfig.py +15 -3
- awscli/customizations/emr/argumentschema.py +355 -344
- awscli/customizations/emr/createcluster.py +520 -282
- awscli/customizations/emr/emrutils.py +83 -50
- awscli/customizations/emr/helptext.py +132 -74
- awscli/customizations/emr/steputils.py +92 -52
- awscli/customizations/gamelift/getlog.py +3 -2
- awscli/customizations/gamelift/uploadbuild.py +30 -15
- awscli/customizations/globalargs.py +169 -0
- awscli/customizations/logs/startlivetail.py +3 -3
- awscli/customizations/paginate.py +66 -1
- awscli/customizations/rds.py +3 -1
- awscli/customizations/removals.py +4 -0
- awscli/customizations/s3/filegenerator.py +7 -1
- awscli/customizations/s3/fileinfo.py +5 -1
- awscli/customizations/s3/fileinfobuilder.py +7 -0
- awscli/customizations/s3/s3handler.py +11 -0
- awscli/customizations/s3/subcommands.py +147 -6
- awscli/customizations/s3/syncstrategy/base.py +9 -0
- awscli/customizations/s3/syncstrategy/caseconflict.py +96 -0
- awscli/customizations/s3/utils.py +25 -0
- awscli/customizations/s3uploader.py +18 -8
- awscli/customizations/scalarparse.py +48 -9
- awscli/customizations/utils.py +2 -1
- awscli/customizations/waiters.py +3 -2
- awscli/data/cli.json +5 -0
- awscli/examples/apigateway/update-vpc-link.rst +47 -0
- awscli/examples/apigatewayv2/create-routing-rule.rst +52 -0
- awscli/examples/apigatewayv2/delete-routing-rule.rst +11 -0
- awscli/examples/apigatewayv2/get-routing-rule.rst +35 -0
- awscli/examples/apigatewayv2/list-routing-rules.rst +38 -0
- awscli/examples/apigatewayv2/put-routing-rule.rst +52 -0
- awscli/examples/application-signals/batch-get-service-level-objective-budget-report.rst +99 -0
- awscli/examples/application-signals/create-service-level-objective.rst +88 -0
- awscli/examples/application-signals/delete-service-level-objective.rst +10 -0
- awscli/examples/application-signals/get-service-level-objective.rst +53 -0
- awscli/examples/application-signals/get-service.rst +72 -0
- awscli/examples/application-signals/list-service-dependencies.rst +96 -0
- awscli/examples/application-signals/list-service-dependents.rst +36 -0
- awscli/examples/application-signals/list-service-level-objectives.rst +17 -0
- awscli/examples/application-signals/list-service-operations.rst +63 -0
- awscli/examples/application-signals/list-services.rst +61 -0
- awscli/examples/application-signals/list-tags-for-resource.rst +17 -0
- awscli/examples/application-signals/start-discovery.rst +9 -0
- awscli/examples/application-signals/tag-resource.rst +11 -0
- awscli/examples/application-signals/untag-resource.rst +11 -0
- awscli/examples/application-signals/update-service-level-objective.rst +69 -0
- awscli/examples/cloudformation/_package_description.rst +4 -4
- awscli/examples/cloudformation/create-generated-template.rst +50 -0
- awscli/examples/cloudformation/create-stack-refactor.rst +16 -0
- awscli/examples/cloudformation/delete-generated-template.rst +10 -0
- awscli/examples/cloudformation/describe-generated-template.rst +62 -0
- awscli/examples/cloudformation/describe-resource-scan.rst +38 -0
- awscli/examples/cloudformation/describe-stack-refactor.rst +20 -0
- awscli/examples/cloudformation/execute-stack-refactor.rst +10 -0
- awscli/examples/cloudformation/list-generated-templates.rst +41 -0
- awscli/examples/cloudformation/list-resource-scan-related-resources.rst +47 -0
- awscli/examples/cloudformation/list-resource-scan-resources.rst +30 -0
- awscli/examples/cloudformation/list-stack-refactor-actions.rst +71 -0
- awscli/examples/cloudformation/start-resource-scan.rst +14 -0
- awscli/examples/cloudfront/associate-distribution-tenant-web-acl.rst +18 -0
- awscli/examples/cloudfront/associate-distribution-web-acl.rst +18 -0
- awscli/examples/cloudfront/create-connection-group.rst +39 -0
- awscli/examples/cloudfront/create-distribution-tenant.rst +275 -0
- awscli/examples/cloudfront/create-distribution.rst +625 -235
- awscli/examples/cloudfront/create-invalidation-for-distribution-tenant.rst +29 -0
- awscli/examples/cloudfront/delete-connection-group.rst +11 -0
- awscli/examples/cloudfront/delete-distribution-tenant.rst +11 -0
- awscli/examples/cloudfront/disassociate-distribution-tenant-web-acl.rst +16 -0
- awscli/examples/cloudfront/disassociate-distribution-web-acl.rst +16 -0
- awscli/examples/cloudfront/get-connection-group-by-routing-endpoint.rst +26 -0
- awscli/examples/cloudfront/get-connection-group.rst +26 -0
- awscli/examples/cloudfront/get-distribution-tenant-by-domain.rst +37 -0
- awscli/examples/cloudfront/get-distribution-tenant.rst +31 -0
- awscli/examples/cloudfront/get-invalidation-for-distribution-tenant.rst +29 -0
- awscli/examples/cloudfront/get-managed-certificate-details.rst +25 -0
- awscli/examples/cloudfront/list-connection-groups.rst +38 -0
- awscli/examples/cloudfront/list-distribution-tenants-by-customization.rst +45 -0
- awscli/examples/cloudfront/list-distribution-tenants.rst +90 -0
- awscli/examples/cloudfront/list-distributions-by-connection-mode.rst +115 -0
- awscli/examples/cloudfront/list-domain-conflicts.rst +22 -0
- awscli/examples/cloudfront/list-invalidations-for-distribution-tenant.rst +22 -0
- awscli/examples/cloudfront/update-connection-group.rst +29 -0
- awscli/examples/cloudfront/update-distribution-tenant.rst +76 -0
- awscli/examples/cloudfront/update-domain-association.rst +18 -0
- awscli/examples/cloudfront/verify-dns-configuration.rst +20 -0
- awscli/examples/ec2/associate-ipam-resource-discovery.rst +1 -1
- awscli/examples/ec2/authorize-security-group-ingress.rst +1 -1
- awscli/examples/ec2/create-ipam-resource-discovery.rst +1 -1
- awscli/examples/ec2/delete-ipam-pool.rst +1 -1
- awscli/examples/ec2/describe-addresses-attribute.rst +1 -1
- awscli/examples/ec2/get-ipam-discovered-public-addresses.rst +1 -1
- awscli/examples/ec2/modify-ipam-resource-discovery.rst +1 -1
- awscli/examples/ec2/modify-ipam-scope.rst +1 -1
- awscli/examples/ec2/release-ipam-pool-allocation.rst +3 -3
- awscli/examples/eks/associate-access-policy.rst +29 -0
- awscli/examples/eks/create-access-entry.rst +54 -0
- awscli/examples/eks/create-pod-identity-association.rst +59 -0
- awscli/examples/eks/delete-access-entry.rst +11 -0
- awscli/examples/eks/delete-pod-identity-association.rst +28 -0
- awscli/examples/eks/describe-access-entry.rst +25 -0
- awscli/examples/eks/describe-insight.rst +36 -0
- awscli/examples/eks/describe-pod-identity-association.rst +28 -0
- awscli/examples/eks/disassociate-access-policy.rst +12 -0
- awscli/examples/eks/list-access-entries.rst +19 -0
- awscli/examples/eks/list-access-policies.rst +90 -0
- awscli/examples/eks/list-associated-access-policies.rst +27 -0
- awscli/examples/eks/list-insights.rst +67 -0
- awscli/examples/eks/list-pod-identity-associations.rst +61 -0
- awscli/examples/eks/update-access-entry.rst +28 -0
- awscli/examples/eks/update-pod-identity-association.rst +29 -0
- awscli/examples/elbv2/modify-listener.rst +95 -86
- awscli/examples/emr/create-cluster-synopsis.txt +1 -0
- awscli/examples/global_options.rst +4 -0
- awscli/examples/global_synopsis.rst +1 -0
- awscli/examples/guardduty/update-detector.rst +23 -0
- awscli/examples/ivs-realtime/create-stage.rst +6 -3
- awscli/examples/ivs-realtime/get-composition.rst +7 -4
- awscli/examples/ivs-realtime/get-participant.rst +99 -31
- awscli/examples/ivs-realtime/get-stage.rst +3 -2
- awscli/examples/ivs-realtime/list-participant-events.rst +54 -2
- awscli/examples/ivs-realtime/list-participant-replicas.rst +24 -0
- awscli/examples/ivs-realtime/list-participants.rst +61 -3
- awscli/examples/ivs-realtime/start-composition.rst +88 -3
- awscli/examples/ivs-realtime/start-participant-replication.rst +24 -0
- awscli/examples/ivs-realtime/stop-participant-replication.rst +24 -0
- awscli/examples/ivs-realtime/update-stage.rst +51 -3
- awscli/examples/kms/create-key.rst +42 -7
- awscli/examples/kms/delete-imported-key-material.rst +8 -2
- awscli/examples/kms/describe-key.rst +2 -0
- awscli/examples/kms/disable-key.rst +1 -1
- awscli/examples/kms/generate-data-key-pair-without-plaintext.rst +1 -0
- awscli/examples/kms/generate-data-key-pair.rst +1 -0
- awscli/examples/kms/generate-data-key-without-plaintext.rst +2 -1
- awscli/examples/kms/generate-data-key.rst +5 -4
- awscli/examples/kms/generate-mac.rst +45 -0
- awscli/examples/kms/generate-random.rst +1 -1
- awscli/examples/kms/get-public-key.rst +2 -3
- awscli/examples/kms/import-key-material.rst +6 -1
- awscli/examples/kms/re-encrypt.rst +3 -3
- awscli/examples/kms/sign.rst +1 -1
- awscli/examples/kms/verify-mac.rst +27 -0
- awscli/examples/kms/verify.rst +5 -1
- awscli/examples/lambda/create-function.rst +4 -4
- awscli/examples/lambda/get-function.rst +3 -3
- awscli/examples/lambda/list-functions.rst +6 -6
- awscli/examples/medical-imaging/create-datastore.rst +19 -2
- awscli/examples/medical-imaging/get-datastore.rst +24 -1
- awscli/examples/networkmanager/get-vpc-attachment.rst +1 -1
- awscli/examples/omics/cancel-run.rst +1 -1
- awscli/examples/omics/create-run-group.rst +4 -2
- awscli/examples/omics/create-workflow.rst +1 -1
- awscli/examples/omics/delete-run-group.rst +1 -1
- awscli/examples/omics/delete-run.rst +1 -1
- awscli/examples/omics/delete-workflow.rst +1 -1
- awscli/examples/omics/get-run-group.rst +1 -1
- awscli/examples/omics/get-run-task.rst +1 -1
- awscli/examples/omics/get-run.rst +1 -1
- awscli/examples/omics/get-workflow.rst +1 -1
- awscli/examples/omics/list-run-groups.rst +1 -1
- awscli/examples/omics/list-run-tasks.rst +1 -1
- awscli/examples/omics/list-runs.rst +1 -1
- awscli/examples/omics/list-workflows.rst +1 -1
- awscli/examples/omics/start-run.rst +1 -2
- awscli/examples/omics/update-workflow.rst +1 -1
- awscli/examples/pi/create-performance-analysis-report.rst +17 -0
- awscli/examples/pi/delete-performance-analysis-report.rst +12 -0
- awscli/examples/pi/describe-dimension-keys.rst +33 -1
- awscli/examples/pi/get-dimension-key-details.rst +25 -0
- awscli/examples/pi/get-performance-analysis-report.rst +27 -0
- awscli/examples/pi/get-resource-metadata.rst +20 -0
- awscli/examples/pi/list-available-resource-dimensions.rst +48 -0
- awscli/examples/pi/list-available-resource-metrics.rst +29 -0
- awscli/examples/pi/list-performance-analysis-reports.rst +44 -0
- awscli/examples/pi/list-tags-for-resource.rst +20 -0
- awscli/examples/pi/tag-resource.rst +12 -0
- awscli/examples/pi/untag-resource.rst +12 -0
- awscli/examples/route53domains/get-domain-detail.rst +3 -3
- awscli/examples/securityhub/describe-hub.rst +6 -4
- awscli/examples/servicediscovery/create-service.rst +50 -10
- awscli/examples/servicediscovery/delete-namespace.rst +18 -4
- awscli/examples/servicediscovery/delete-service-attributes.rst +15 -3
- awscli/examples/servicediscovery/delete-service.rst +13 -3
- awscli/examples/servicediscovery/deregister-instance.rst +18 -2
- awscli/examples/servicediscovery/discover-instances-revision.rst +18 -1
- awscli/examples/servicediscovery/discover-instances.rst +32 -2
- awscli/examples/servicediscovery/get-instance.rst +30 -4
- awscli/examples/servicediscovery/get-instances-health-status.rst +19 -1
- awscli/examples/servicediscovery/get-namespace.rst +40 -9
- awscli/examples/servicediscovery/get-operation.rst +32 -6
- awscli/examples/servicediscovery/get-service-attributes.rst +25 -3
- awscli/examples/servicediscovery/get-service.rst +35 -7
- awscli/examples/servicediscovery/list-instances.rst +38 -3
- awscli/examples/servicediscovery/list-namespaces.rst +45 -22
- awscli/examples/servicediscovery/list-services.rst +30 -2
- awscli/examples/servicediscovery/register-instance.rst +18 -2
- awscli/examples/servicediscovery/update-http-namespace.rst +22 -5
- awscli/examples/servicediscovery/update-instance-custom-health-status.rst +14 -1
- awscli/examples/servicediscovery/update-private-dns-namespace.rst +22 -5
- awscli/examples/servicediscovery/update-public-dns-namespace.rst +22 -5
- awscli/examples/servicediscovery/update-service-attributes.rst +14 -2
- awscli/examples/servicediscovery/update-service.rst +20 -4
- awscli/examples/ssm/put-parameter.rst +6 -6
- awscli/examples/verifiedpermissions/update-policy.rst +10 -78
- awscli/examples/workspaces/describe-workspace-directories.rst +1 -2
- awscli/examples/workspaces/register-workspace-directory.rst +2 -3
- awscli/handlers.py +0 -4
- awscli/paramfile.py +21 -4
- awscli/testutils.py +22 -4
- awscli/topics/config-vars.rst +1 -1
- awscli/topics/s3-case-insensitivity.rst +105 -0
- awscli/topics/topic-tags.json +16 -0
- awscli/utils.py +33 -2
- {awscli-1.40.17.dist-info → awscli-1.44.26.dist-info}/METADATA +18 -3
- {awscli-1.40.17.dist-info → awscli-1.44.26.dist-info}/RECORD +251 -308
- awscli/customizations/opsworks.py +0 -543
- awscli/customizations/opsworkscm.py +0 -21
- awscli/examples/elastictranscoder/cancel-job.rst +0 -8
- awscli/examples/elastictranscoder/create-job.rst +0 -94
- awscli/examples/elastictranscoder/create-pipeline.rst +0 -94
- awscli/examples/elastictranscoder/create-preset.rst +0 -141
- awscli/examples/elastictranscoder/delete-pipeline.rst +0 -13
- awscli/examples/elastictranscoder/delete-preset.rst +0 -8
- awscli/examples/elastictranscoder/list-jobs-by-pipeline.rst +0 -13
- awscli/examples/elastictranscoder/list-jobs-by-status.rst +0 -14
- awscli/examples/elastictranscoder/list-pipelines.rst +0 -84
- awscli/examples/elastictranscoder/list-presets.rst +0 -95
- awscli/examples/elastictranscoder/read-job.rst +0 -65
- awscli/examples/elastictranscoder/read-pipeline.rst +0 -59
- awscli/examples/elastictranscoder/read-preset.rst +0 -100
- awscli/examples/elastictranscoder/update-pipeline-notifications.rst +0 -52
- awscli/examples/elastictranscoder/update-pipeline-status.rst +0 -53
- awscli/examples/elastictranscoder/update-pipeline.rst +0 -95
- awscli/examples/opsworks/assign-instance.rst +0 -14
- awscli/examples/opsworks/assign-volume.rst +0 -17
- awscli/examples/opsworks/associate-elastic-ip.rst +0 -14
- awscli/examples/opsworks/attach-elastic-load-balancer.rst +0 -14
- awscli/examples/opsworks/create-app.rst +0 -64
- awscli/examples/opsworks/create-deployment.rst +0 -66
- awscli/examples/opsworks/create-instance.rst +0 -25
- awscli/examples/opsworks/create-layer.rst +0 -17
- awscli/examples/opsworks/create-server.rst +0 -43
- awscli/examples/opsworks/create-stack.rst +0 -25
- awscli/examples/opsworks/create-user-profile.rst +0 -24
- awscli/examples/opsworks/delete-app.rst +0 -17
- awscli/examples/opsworks/delete-instance.rst +0 -15
- awscli/examples/opsworks/delete-layer.rst +0 -17
- awscli/examples/opsworks/delete-stack.rst +0 -18
- awscli/examples/opsworks/delete-user-profile.rst +0 -17
- awscli/examples/opsworks/deregister-elastic-ip.rst +0 -13
- awscli/examples/opsworks/deregister-instance.rst +0 -14
- awscli/examples/opsworks/deregister-rds-db-instance.rst +0 -20
- awscli/examples/opsworks/deregister-volume.rst +0 -15
- awscli/examples/opsworks/describe-apps.rst +0 -38
- awscli/examples/opsworks/describe-commands.rst +0 -43
- awscli/examples/opsworks/describe-deployments.rst +0 -52
- awscli/examples/opsworks/describe-elastic-ips.rst +0 -24
- awscli/examples/opsworks/describe-elastic-load-balancers.rst +0 -37
- awscli/examples/opsworks/describe-instances.rst +0 -95
- awscli/examples/opsworks/describe-layers.rst +0 -171
- awscli/examples/opsworks/describe-load-based-auto-scaling.rst +0 -37
- awscli/examples/opsworks/describe-my-user-profile.rst +0 -24
- awscli/examples/opsworks/describe-permissions.rst +0 -26
- awscli/examples/opsworks/describe-raid-arrays.rst +0 -31
- awscli/examples/opsworks/describe-rds-db-instances.rst +0 -29
- awscli/examples/opsworks/describe-stack-provisioning-parameters.rst +0 -32
- awscli/examples/opsworks/describe-stack-summary.rst +0 -27
- awscli/examples/opsworks/describe-stacks.rst +0 -65
- awscli/examples/opsworks/describe-timebased-auto-scaling.rst +0 -39
- awscli/examples/opsworks/describe-user-profiles.rst +0 -32
- awscli/examples/opsworks/describe-volumes.rst +0 -31
- awscli/examples/opsworks/detach-elastic-load-balancer.rst +0 -14
- awscli/examples/opsworks/disassociate-elastic-ip.rst +0 -14
- awscli/examples/opsworks/get-hostname-suggestion.rst +0 -21
- awscli/examples/opsworks/reboot-instance.rst +0 -14
- awscli/examples/opsworks/register-elastic-ip.rst +0 -19
- awscli/examples/opsworks/register-rds-db-instance.rst +0 -15
- awscli/examples/opsworks/register-volume.rst +0 -18
- awscli/examples/opsworks/register.rst +0 -105
- awscli/examples/opsworks/set-load-based-auto-scaling.rst +0 -38
- awscli/examples/opsworks/set-permission.rst +0 -23
- awscli/examples/opsworks/set-time-based-auto-scaling.rst +0 -33
- awscli/examples/opsworks/start-instance.rst +0 -20
- awscli/examples/opsworks/start-stack.rst +0 -15
- awscli/examples/opsworks/stop-instance.rst +0 -20
- awscli/examples/opsworks/stop-stack.rst +0 -15
- awscli/examples/opsworks/unassign-instance.rst +0 -14
- awscli/examples/opsworks/unassign-volume.rst +0 -16
- awscli/examples/opsworks/update-app.rst +0 -14
- awscli/examples/opsworks/update-elastic-ip.rst +0 -14
- awscli/examples/opsworks/update-instance.rst +0 -14
- awscli/examples/opsworks/update-layer.rst +0 -14
- awscli/examples/opsworks/update-my-user-profile.rst +0 -16
- awscli/examples/opsworks/update-rds-db-instance.rst +0 -18
- awscli/examples/opsworks/update-volume.rst +0 -16
- awscli/examples/opsworkscm/associate-node.rst +0 -22
- awscli/examples/opsworkscm/create-backup.rst +0 -46
- awscli/examples/opsworkscm/create-server.rst +0 -48
- awscli/examples/opsworkscm/delete-backup.rst +0 -17
- awscli/examples/opsworkscm/delete-server.rst +0 -16
- awscli/examples/opsworkscm/describe-account-attributes.rst +0 -26
- awscli/examples/opsworkscm/describe-backups.rst +0 -44
- awscli/examples/opsworkscm/describe-events.rst +0 -21
- awscli/examples/opsworkscm/describe-node-association-status.rst +0 -20
- awscli/examples/opsworkscm/describe-servers.rst +0 -48
- awscli/examples/opsworkscm/disassociate-node.rst +0 -19
- awscli/examples/opsworkscm/restore-server.rst +0 -20
- awscli/examples/opsworkscm/start-maintenance.rst +0 -39
- awscli/examples/opsworkscm/update-server-engine-attributes.rst +0 -43
- awscli/examples/opsworkscm/update-server.rst +0 -42
- awscli/examples/qldb/cancel-journal-kinesis-stream.rst +0 -15
- awscli/examples/qldb/create-ledger.rst +0 -43
- awscli/examples/qldb/delete-ledger.rst +0 -10
- awscli/examples/qldb/describe-journal-kinesis-stream.rst +0 -29
- awscli/examples/qldb/describe-journal-s3-export.rst +0 -30
- awscli/examples/qldb/describe-ledger.rst +0 -23
- awscli/examples/qldb/export-journal-to-s3.rst +0 -28
- awscli/examples/qldb/get-block.rst +0 -55
- awscli/examples/qldb/get-digest.rst +0 -17
- awscli/examples/qldb/get-revision.rst +0 -57
- awscli/examples/qldb/list-journal-kinesis-streams-for-ledger.rst +0 -30
- awscli/examples/qldb/list-journal-s3-exports-for-ledger.rst +0 -31
- awscli/examples/qldb/list-journal-s3-exports.rst +0 -46
- awscli/examples/qldb/list-ledgers.rst +0 -24
- awscli/examples/qldb/list-tags-for-resource.rst +0 -17
- awscli/examples/qldb/stream-journal-to-kinesis.rst +0 -46
- awscli/examples/qldb/tag-resource.rst +0 -11
- awscli/examples/qldb/untag-resource.rst +0 -11
- awscli/examples/qldb/update-ledger-permissions-mode.rst +0 -34
- awscli/examples/qldb/update-ledger.rst +0 -63
- awscli/examples/robomaker/batch-describe-simulation-job.rst +0 -150
- awscli/examples/robomaker/cancel-simulation-job.rst +0 -6
- awscli/examples/robomaker/create-deployment-job.rst +0 -37
- awscli/examples/robomaker/create-fleet.rst +0 -18
- awscli/examples/robomaker/create-robot-application-version.rst +0 -31
- awscli/examples/robomaker/create-robot-application.rst +0 -29
- awscli/examples/robomaker/create-robot.rst +0 -20
- awscli/examples/robomaker/create-simulation-application-version.rst +0 -39
- awscli/examples/robomaker/create-simulation-application.rst +0 -38
- awscli/examples/robomaker/create-simulation-job.rst +0 -43
- awscli/examples/robomaker/delete-fleet.rst +0 -7
- awscli/examples/robomaker/delete-robot-application.rst +0 -7
- awscli/examples/robomaker/delete-robot.rst +0 -7
- awscli/examples/robomaker/delete-simulation-application.rst +0 -7
- awscli/examples/robomaker/deregister-robot.rst +0 -14
- awscli/examples/robomaker/describe-deployment-job.rst +0 -38
- awscli/examples/robomaker/describe-fleet.rst +0 -28
- awscli/examples/robomaker/describe-robot-application.rst +0 -29
- awscli/examples/robomaker/describe-robot.rst +0 -21
- awscli/examples/robomaker/describe-simulation-application.rst +0 -37
- awscli/examples/robomaker/describe-simulation-job.rst +0 -45
- awscli/examples/robomaker/list-deployment-jobs.rst +0 -57
- awscli/examples/robomaker/list-fleets.rst +0 -22
- awscli/examples/robomaker/list-robot-applications.rst +0 -32
- awscli/examples/robomaker/list-robots.rst +0 -45
- awscli/examples/robomaker/list-simulation-applications.rst +0 -50
- awscli/examples/robomaker/list-simulation-jobs.rst +0 -80
- awscli/examples/robomaker/list-tags-for-resource.rst +0 -16
- awscli/examples/robomaker/register-robot.rst +0 -14
- awscli/examples/robomaker/restart-simulation-job.rst +0 -7
- awscli/examples/robomaker/sync-deployment-job.rst +0 -30
- awscli/examples/robomaker/tag-resource.rst +0 -7
- awscli/examples/robomaker/untag-resource.rst +0 -7
- awscli/examples/robomaker/update-robot-application.rst +0 -28
- awscli/examples/robomaker/update-simulation-application.rst +0 -36
- {awscli-1.40.17.data → awscli-1.44.26.data}/scripts/aws +0 -0
- {awscli-1.40.17.data → awscli-1.44.26.data}/scripts/aws.cmd +0 -0
- {awscli-1.40.17.data → awscli-1.44.26.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.40.17.data → awscli-1.44.26.data}/scripts/aws_completer +0 -0
- {awscli-1.40.17.data → awscli-1.44.26.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.40.17.dist-info → awscli-1.44.26.dist-info}/LICENSE.txt +0 -0
- {awscli-1.40.17.dist-info → awscli-1.44.26.dist-info}/WHEEL +0 -0
- {awscli-1.40.17.dist-info → awscli-1.44.26.dist-info}/top_level.txt +0 -0
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
**Example 1: To update the permissions mode of a ledger to STANDARD**
|
|
2
|
-
|
|
3
|
-
The following ``update-ledger-permissions-mode`` example assigns the ``STANDARD`` permissions mode to the specified ledger. ::
|
|
4
|
-
|
|
5
|
-
aws qldb update-ledger-permissions-mode \
|
|
6
|
-
--name myExampleLedger \
|
|
7
|
-
--permissions-mode STANDARD
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"Name": "myExampleLedger",
|
|
13
|
-
"Arn": "arn:aws:qldb:us-west-2:123456789012:ledger/myExampleLedger",
|
|
14
|
-
"PermissionsMode": "STANDARD"
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
**Example 2: To update the permissions mode of a ledger to ALLOW_ALL**
|
|
18
|
-
|
|
19
|
-
The following ``update-ledger-permissions-mode`` example assigns the ``ALLOW_ALL`` permissions mode to the specified ledger. ::
|
|
20
|
-
|
|
21
|
-
aws qldb update-ledger-permissions-mode \
|
|
22
|
-
--name myExampleLedger \
|
|
23
|
-
--permissions-mode ALLOW_ALL
|
|
24
|
-
|
|
25
|
-
Output::
|
|
26
|
-
|
|
27
|
-
{
|
|
28
|
-
"Name": "myExampleLedger",
|
|
29
|
-
"Arn": "arn:aws:qldb:us-west-2:123456789012:ledger/myExampleLedger",
|
|
30
|
-
"PermissionsMode": "ALLOW_ALL"
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
For more information, see `Basic Operations for Amazon QLDB Ledgers <https://docs.aws.amazon.com/qldb/latest/developerguide/ledger-management.basics.html>`__ in the *Amazon QLDB Developer Guide*.
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
**Example 1: To update the deletion protection property of a ledger**
|
|
2
|
-
|
|
3
|
-
The following ``update-ledger`` example updates the specified ledger to disable the deletion protection feature. ::
|
|
4
|
-
|
|
5
|
-
aws qldb update-ledger \
|
|
6
|
-
--name myExampleLedger \
|
|
7
|
-
--no-deletion-protection
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"CreationDateTime": 1568839243.951,
|
|
13
|
-
"Arn": "arn:aws:qldb:us-west-2:123456789012:ledger/myExampleLedger",
|
|
14
|
-
"DeletionProtection": false,
|
|
15
|
-
"Name": "myExampleLedger",
|
|
16
|
-
"State": "ACTIVE"
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
**Example 2: To update the AWS KMS key of a ledger to a customer managed key**
|
|
20
|
-
|
|
21
|
-
The following ``update-ledger`` example updates the specified ledger to use a customer managed KMS key for encryption at rest. ::
|
|
22
|
-
|
|
23
|
-
aws qldb update-ledger \
|
|
24
|
-
--name myExampleLedger \
|
|
25
|
-
--kms-key arn:aws:kms:us-west-2:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
|
|
26
|
-
|
|
27
|
-
Output::
|
|
28
|
-
|
|
29
|
-
{
|
|
30
|
-
"CreationDateTime": 1568839243.951,
|
|
31
|
-
"Arn": "arn:aws:qldb:us-west-2:123456789012:ledger/myExampleLedger",
|
|
32
|
-
"DeletionProtection": false,
|
|
33
|
-
"Name": "myExampleLedger",
|
|
34
|
-
"State": "ACTIVE",
|
|
35
|
-
"EncryptionDescription": {
|
|
36
|
-
"KmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
37
|
-
"EncryptionStatus": "UPDATING"
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
**Example 3: To update the AWS KMS key of a ledger to an AWS owned key**
|
|
42
|
-
|
|
43
|
-
The following ``update-ledger`` example updates the specified ledger to use an AWS owned KMS key for encryption at rest. ::
|
|
44
|
-
|
|
45
|
-
aws qldb update-ledger \
|
|
46
|
-
--name myExampleLedger \
|
|
47
|
-
--kms-key AWS_OWNED_KMS_KEY
|
|
48
|
-
|
|
49
|
-
Output::
|
|
50
|
-
|
|
51
|
-
{
|
|
52
|
-
"CreationDateTime": 1568839243.951,
|
|
53
|
-
"Arn": "arn:aws:qldb:us-west-2:123456789012:ledger/myExampleLedger",
|
|
54
|
-
"DeletionProtection": false,
|
|
55
|
-
"Name": "myExampleLedger",
|
|
56
|
-
"State": "ACTIVE",
|
|
57
|
-
"EncryptionDescription": {
|
|
58
|
-
"KmsKeyArn": "AWS_OWNED_KMS_KEY",
|
|
59
|
-
"EncryptionStatus": "UPDATING"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
For more information, see `Basic Operations for Amazon QLDB Ledgers <https://docs.aws.amazon.com/qldb/latest/developerguide/ledger-management.basics.html>`__ in the *Amazon QLDB Developer Guide*.
|
|
@@ -1,150 +0,0 @@
|
|
|
1
|
-
**To batch describe simulation jobs**
|
|
2
|
-
|
|
3
|
-
The following ``batch-describe-simulation-job`` example retrieves details for the three specified simulation jobs.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker batch-describe-simulation-job \
|
|
8
|
-
--job arn:aws:robomaker:us-west-2:111111111111:simulation-job/sim-66bbb3gpxm8x arn:aws:robomaker:us-west-2:111111111111:simulation-job/sim-p0cpdrrwng2n arn:aws:robomaker:us-west-2:111111111111:simulation-job/sim-g8h6tglmblgw
|
|
9
|
-
|
|
10
|
-
Output::
|
|
11
|
-
|
|
12
|
-
{
|
|
13
|
-
"jobs": [
|
|
14
|
-
{
|
|
15
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:simulation-job/sim-66bbb3gpxm8x",
|
|
16
|
-
"status": "Completed",
|
|
17
|
-
"lastUpdatedAt": 1548959178.0,
|
|
18
|
-
"failureBehavior": "Continue",
|
|
19
|
-
"clientRequestToken": "6020408e-b05c-4310-9f13-4ed71c5221ed",
|
|
20
|
-
"outputLocation": {
|
|
21
|
-
"s3Bucket": "awsrobomakerobjecttracker-111111111-bundlesbucket-2lk584kiq1oa",
|
|
22
|
-
"s3Prefix": "output"
|
|
23
|
-
},
|
|
24
|
-
"maxJobDurationInSeconds": 3600,
|
|
25
|
-
"simulationTimeMillis": 0,
|
|
26
|
-
"iamRole": "arn:aws:iam::111111111111:role/AWSRoboMakerObjectTracker-154895-SimulationJobRole-14D5ASA7PQE3A",
|
|
27
|
-
"simulationApplications": [
|
|
28
|
-
{
|
|
29
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:simulation-application/AWSRoboMakerObjectTracker-1548959046124_NPvyfcatq/1548959170096",
|
|
30
|
-
"applicationVersion": "$LATEST",
|
|
31
|
-
"launchConfig": {
|
|
32
|
-
"packageName": "object_tracker_simulation",
|
|
33
|
-
"launchFile": "local_training.launch",
|
|
34
|
-
"environmentVariables": {
|
|
35
|
-
"MARKOV_PRESET_FILE": "object_tracker.py",
|
|
36
|
-
"MODEL_S3_BUCKET": "awsrobomakerobjecttracker-111111111-bundlesbucket-2lk584kiq1oa",
|
|
37
|
-
"MODEL_S3_PREFIX": "model-store",
|
|
38
|
-
"ROS_AWS_REGION": "us-west-2"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
],
|
|
43
|
-
"tags": {},
|
|
44
|
-
"vpcConfig": {
|
|
45
|
-
"subnets": [
|
|
46
|
-
"subnet-716dd52a",
|
|
47
|
-
"subnet-43c22325",
|
|
48
|
-
"subnet-3f526976"
|
|
49
|
-
],
|
|
50
|
-
"securityGroups": [
|
|
51
|
-
"sg-3fb40545"
|
|
52
|
-
],
|
|
53
|
-
"vpcId": "vpc-99895eff",
|
|
54
|
-
"assignPublicIp": true
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:simulation-job/sim-p0cpdrrwng2n",
|
|
59
|
-
"status": "Completed",
|
|
60
|
-
"lastUpdatedAt": 1548168817.0,
|
|
61
|
-
"failureBehavior": "Continue",
|
|
62
|
-
"clientRequestToken": "e4a23e75-f9a7-411d-835f-21881c82c58b",
|
|
63
|
-
"outputLocation": {
|
|
64
|
-
"s3Bucket": "awsrobomakercloudwatch-111111111111-bundlesbucket-14e5s9jvwtmv7",
|
|
65
|
-
"s3Prefix": "output"
|
|
66
|
-
},
|
|
67
|
-
"maxJobDurationInSeconds": 3600,
|
|
68
|
-
"simulationTimeMillis": 0,
|
|
69
|
-
"iamRole": "arn:aws:iam::111111111111:role/AWSRoboMakerCloudWatch-154766341-SimulationJobRole-G0OBWTQ8YBG6",
|
|
70
|
-
"robotApplications": [
|
|
71
|
-
{
|
|
72
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:robot-application/AWSRoboMakerCloudWatch-1547663411642_NZbpqEJ3T/1547663517377",
|
|
73
|
-
"applicationVersion": "$LATEST",
|
|
74
|
-
"launchConfig": {
|
|
75
|
-
"packageName": "cloudwatch_robot",
|
|
76
|
-
"launchFile": "await_commands.launch",
|
|
77
|
-
"environmentVariables": {
|
|
78
|
-
"LAUNCH_ID": "1548168752173",
|
|
79
|
-
"ROS_AWS_REGION": "us-west-2"
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
],
|
|
84
|
-
"simulationApplications": [
|
|
85
|
-
{
|
|
86
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:simulation-application/AWSRoboMakerCloudWatch-1547663411642_0LIt6D1h6/1547663521470",
|
|
87
|
-
"applicationVersion": "$LATEST",
|
|
88
|
-
"launchConfig": {
|
|
89
|
-
"packageName": "cloudwatch_simulation",
|
|
90
|
-
"launchFile": "bookstore_turtlebot_navigation.launch",
|
|
91
|
-
"environmentVariables": {
|
|
92
|
-
"LAUNCH_ID": "1548168752173",
|
|
93
|
-
"ROS_AWS_REGION": "us-west-2",
|
|
94
|
-
"TURTLEBOT3_MODEL": "waffle_pi"
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
"tags": {},
|
|
100
|
-
"vpcConfig": {
|
|
101
|
-
"subnets": [
|
|
102
|
-
"subnet-716dd52a",
|
|
103
|
-
"subnet-43c22325",
|
|
104
|
-
"subnet-3f526976"
|
|
105
|
-
],
|
|
106
|
-
"securityGroups": [
|
|
107
|
-
"sg-3fb40545"
|
|
108
|
-
],
|
|
109
|
-
"vpcId": "vpc-99895eff",
|
|
110
|
-
"assignPublicIp": true
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:simulation-job/sim-g8h6tglmblgw",
|
|
115
|
-
"status": "Canceled",
|
|
116
|
-
"lastUpdatedAt": 1546543442.0,
|
|
117
|
-
"failureBehavior": "Fail",
|
|
118
|
-
"clientRequestToken": "d796bbb4-2a2c-1abc-f2a9-0d9e547d853f",
|
|
119
|
-
"outputLocation": {
|
|
120
|
-
"s3Bucket": "sample-bucket",
|
|
121
|
-
"s3Prefix": "SimulationLog_115490482698"
|
|
122
|
-
},
|
|
123
|
-
"maxJobDurationInSeconds": 28800,
|
|
124
|
-
"simulationTimeMillis": 0,
|
|
125
|
-
"iamRole": "arn:aws:iam::111111111111:role/RoboMakerSampleTheFirst",
|
|
126
|
-
"robotApplications": [
|
|
127
|
-
{
|
|
128
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:robot-application/RoboMakerHelloWorldRobot/1546541208251",
|
|
129
|
-
"applicationVersion": "$LATEST",
|
|
130
|
-
"launchConfig": {
|
|
131
|
-
"packageName": "hello_world_robot",
|
|
132
|
-
"launchFile": "rotate.launch"
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
],
|
|
136
|
-
"simulationApplications": [
|
|
137
|
-
{
|
|
138
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:simulation-application/RoboMakerHelloWorldSimulation/1546541198985",
|
|
139
|
-
"applicationVersion": "$LATEST",
|
|
140
|
-
"launchConfig": {
|
|
141
|
-
"packageName": "hello_world_simulation",
|
|
142
|
-
"launchFile": "empty_world.launch"
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
],
|
|
146
|
-
"tags": {}
|
|
147
|
-
}
|
|
148
|
-
],
|
|
149
|
-
"unprocessedJobs": []
|
|
150
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
**To create a deployment job**
|
|
2
|
-
|
|
3
|
-
This example creates a deployment job for fleet MyFleet. It includes an environment variable named "ENVIRONMENT".
|
|
4
|
-
It also attaches a tag named "Region".
|
|
5
|
-
|
|
6
|
-
Command::
|
|
7
|
-
|
|
8
|
-
aws robomaker create-deployment-job --deployment-config concurrentDeploymentPercentage=20,failureThresholdPercentage=25 --fleet arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/Trek/1539894765711 --tags Region=West --deployment-application-configs application=arn:aws:robomaker:us-west-2:111111111111:robot-application/RoboMakerVoiceInteractionRobot/1546537110575,applicationVersion=1,launchConfig={environmentVariables={ENVIRONMENT=Beta},launchFile=await_commands.launch,packageName=voice_interaction_robot}
|
|
9
|
-
|
|
10
|
-
Output::
|
|
11
|
-
|
|
12
|
-
{
|
|
13
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:deployment-job/sim-0974h36s4v0t",
|
|
14
|
-
"fleet": "arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/MyFleet/1539894765711",
|
|
15
|
-
"status": "Pending",
|
|
16
|
-
"deploymentApplicationConfigs": [
|
|
17
|
-
{
|
|
18
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:robot-application/RoboMakerVoiceInteractionRobot/1546537110575",
|
|
19
|
-
"applicationVersion": "1",
|
|
20
|
-
"launchConfig": {
|
|
21
|
-
"packageName": "voice_interaction_robot",
|
|
22
|
-
"launchFile": "await_commands.launch",
|
|
23
|
-
"environmentVariables": {
|
|
24
|
-
"ENVIRONMENT": "Beta"
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
],
|
|
29
|
-
"createdAt": 1550770236.0,
|
|
30
|
-
"deploymentConfig": {
|
|
31
|
-
"concurrentDeploymentPercentage": 20,
|
|
32
|
-
"failureThresholdPercentage": 25
|
|
33
|
-
},
|
|
34
|
-
"tags": {
|
|
35
|
-
"Region": "West"
|
|
36
|
-
}
|
|
37
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
**To create a fleet**
|
|
2
|
-
|
|
3
|
-
This example creates a fleet. It attaches a tag named Region.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker create-fleet --name MyFleet --tags Region=East
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/MyOtherFleet/1550771394395",
|
|
13
|
-
"name": "MyFleet",
|
|
14
|
-
"createdAt": 1550771394.0,
|
|
15
|
-
"tags": {
|
|
16
|
-
"Region": "East"
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
**To create a robot application version**
|
|
2
|
-
|
|
3
|
-
This example creates a robot application version.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker create-robot-application-version --application arn:aws:robomaker:us-west-2:111111111111:robot-application/MyRobotApplication/1551201873931
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:robot-application/MyRobotApplication/1551201873931",
|
|
13
|
-
"name": "MyRobotApplication",
|
|
14
|
-
"version": "1",
|
|
15
|
-
"sources": [
|
|
16
|
-
{
|
|
17
|
-
"s3Bucket": "amzn-s3-demo-bucket",
|
|
18
|
-
"s3Key": "my-robot-application.tar.gz",
|
|
19
|
-
"etag": "f8cf5526f1c6e7b3a72c3ed3f79c5493-70",
|
|
20
|
-
"architecture": "ARMHF"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"robotSoftwareSuite": {
|
|
24
|
-
"name": "ROS",
|
|
25
|
-
"version": "Kinetic"
|
|
26
|
-
},
|
|
27
|
-
"lastUpdatedAt": 1551201873.0,
|
|
28
|
-
"revisionId": "9986bb8d-a695-4ab4-8810-9f4a74d1aa00"
|
|
29
|
-
"tags": {}
|
|
30
|
-
}
|
|
31
|
-
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
**To create a robot application**
|
|
2
|
-
|
|
3
|
-
This example creates a robot application.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker create-robot-application --name MyRobotApplication --sources s3Bucket=amzn-s3-demo-bucket,s3Key=my-robot-application.tar.gz,architecture=X86_64 --robot-software-suite name=ROS,version=Kinetic
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:robot-application/MyRobotApplication/1551201873931",
|
|
13
|
-
"name": "MyRobotApplication",
|
|
14
|
-
"version": "$LATEST",
|
|
15
|
-
"sources": [
|
|
16
|
-
{
|
|
17
|
-
"s3Bucket": "amzn-s3-demo-bucket",
|
|
18
|
-
"s3Key": "my-robot-application.tar.gz",
|
|
19
|
-
"architecture": "ARMHF"
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"robotSoftwareSuite": {
|
|
23
|
-
"name": "ROS",
|
|
24
|
-
"version": "Kinetic"
|
|
25
|
-
},
|
|
26
|
-
"lastUpdatedAt": 1551201873.0,
|
|
27
|
-
"revisionId": "1f3cb539-9239-4841-a656-d3efcffa07e1",
|
|
28
|
-
"tags": {}
|
|
29
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
**To create a robot**
|
|
2
|
-
|
|
3
|
-
This example creates a robot. It uses the ARMHF architecture. It also attaches a tag named Region.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker create-robot --name MyRobot --architecture ARMHF --greengrass-group-id 0f728a3c-7dbf-4a3e-976d-d16a8360caba --tags Region=East
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:robot/MyRobot/1550772324398",
|
|
13
|
-
"name": "MyRobot",
|
|
14
|
-
"createdAt": 1550772325.0,
|
|
15
|
-
"greengrassGroupId": "0f728a3c-7dbf-4a3e-976d-d16a8360caba",
|
|
16
|
-
"architecture": "ARMHF",
|
|
17
|
-
"tags": {
|
|
18
|
-
"Region": "East"
|
|
19
|
-
}
|
|
20
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
**To create a simulation application version**
|
|
2
|
-
|
|
3
|
-
This example creates a robot application version.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker create-simulation-application-version --application arn:aws:robomaker:us-west-2:111111111111:robot-application/MySimulationApplication/1551203427605
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:simulation-application/MyRobotApplication/1551203427605",
|
|
13
|
-
"name": "MyRobotApplication",
|
|
14
|
-
"version": "1",
|
|
15
|
-
"sources": [
|
|
16
|
-
{
|
|
17
|
-
"s3Bucket": "amzn-s3-demo-bucket",
|
|
18
|
-
"s3Key": "my-simulation-application.tar.gz",
|
|
19
|
-
"etag": "00d8a94ff113856688c4fce618ae0f45-94",
|
|
20
|
-
"architecture": "X86_64"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"simulationSoftwareSuite": {
|
|
24
|
-
"name": "Gazebo",
|
|
25
|
-
"version": "7"
|
|
26
|
-
},
|
|
27
|
-
"robotSoftwareSuite": {
|
|
28
|
-
"name": "ROS",
|
|
29
|
-
"version": "Kinetic"
|
|
30
|
-
},
|
|
31
|
-
"renderingEngine": {
|
|
32
|
-
"name": "OGRE",
|
|
33
|
-
"version": "1.x"
|
|
34
|
-
},
|
|
35
|
-
"lastUpdatedAt": 1551203853.0,
|
|
36
|
-
"revisionId": "ee753e53-519c-4d37-895d-65e79bcd1914",
|
|
37
|
-
"tags": {}
|
|
38
|
-
}
|
|
39
|
-
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
**To create a simulation application**
|
|
2
|
-
|
|
3
|
-
This example creates a simulation application.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker create-simulation-application --name MyRobotApplication --sources s3Bucket=amzn-s3-demo-bucket,s3Key=my-simulation-application.tar.gz,architecture=ARMHF --robot-software-suite name=ROS,version=Kinetic --simulation-software-suite name=Gazebo,version=7 --rendering-engine name=OGRE,version=1.x
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:simulation-application/MyRobotApplication/1551203301792",
|
|
13
|
-
"name": "MyRobotApplication",
|
|
14
|
-
"version": "$LATEST",
|
|
15
|
-
"sources": [
|
|
16
|
-
{
|
|
17
|
-
"s3Bucket": "amzn-s3-demo-bucket",
|
|
18
|
-
"s3Key": "my-simulation-application.tar.gz",
|
|
19
|
-
"architecture": "X86_64"
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"simulationSoftwareSuite": {
|
|
23
|
-
"name": "Gazebo",
|
|
24
|
-
"version": "7"
|
|
25
|
-
},
|
|
26
|
-
"robotSoftwareSuite": {
|
|
27
|
-
"name": "ROS",
|
|
28
|
-
"version": "Kinetic"
|
|
29
|
-
},
|
|
30
|
-
"renderingEngine": {
|
|
31
|
-
"name": "OGRE",
|
|
32
|
-
"version": "1.x"
|
|
33
|
-
},
|
|
34
|
-
"lastUpdatedAt": 1551203301.0,
|
|
35
|
-
"revisionId": "ee753e53-519c-4d37-895d-65e79bcd1914",
|
|
36
|
-
"tags": {}
|
|
37
|
-
}
|
|
38
|
-
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
**To create a simulation job**
|
|
2
|
-
|
|
3
|
-
This example creates a simulation job. It uses a robot application and a simulation application.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker create-simulation-job --max-job-duration-in-seconds 3600 --iam-role arn:aws:iam::111111111111:role/AWSRoboMakerCloudWatch-154766341-SimulationJobRole-G0OBWTQ8YBG6 --robot-applications application=arn:aws:robomaker:us-west-2:111111111111:robot-application/MyRobotApplication/1551203485821,launchConfig={packageName=hello_world_robot,launchFile=rotate.launch} --simulation-applications application=arn:aws:robomaker:us-west-2:111111111111:simulation-application/MySimulationApplication/1551203427605,launchConfig={packageName=hello_world_simulation,launchFile=empty_world.launch} --tags Region=North
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:simulation-job/sim-w7m68wpr05h8",
|
|
13
|
-
"status": "Pending",
|
|
14
|
-
"lastUpdatedAt": 1551213837.0,
|
|
15
|
-
"failureBehavior": "Fail",
|
|
16
|
-
"clientRequestToken": "b283ccce-e468-43ee-8642-be76a9d69f15",
|
|
17
|
-
"maxJobDurationInSeconds": 3600,
|
|
18
|
-
"simulationTimeMillis": 0,
|
|
19
|
-
"iamRole": "arn:aws:iam::111111111111:role/MySimulationRole",
|
|
20
|
-
"robotApplications": [
|
|
21
|
-
{
|
|
22
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:robot-application/MyRobotApplication/1551203485821",
|
|
23
|
-
"applicationVersion": "$LATEST",
|
|
24
|
-
"launchConfig": {
|
|
25
|
-
"packageName": "hello_world_robot",
|
|
26
|
-
"launchFile": "rotate.launch"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"simulationApplications": [
|
|
31
|
-
{
|
|
32
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:simulation-application/MySimulationApplication/1551203427605",
|
|
33
|
-
"applicationVersion": "$LATEST",
|
|
34
|
-
"launchConfig": {
|
|
35
|
-
"packageName": "hello_world_simulation",
|
|
36
|
-
"launchFile": "empty_world.launch"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"tags": {
|
|
41
|
-
"Region": "North"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
**To deregister a robot from a fleet**
|
|
2
|
-
|
|
3
|
-
This example deregisters a robot from a fleet.
|
|
4
|
-
|
|
5
|
-
Command::
|
|
6
|
-
|
|
7
|
-
aws robomaker deregister-robot --fleet arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/MyFleet/1550771358907 --robot arn:aws:robomaker:us-west-2:111111111111:robot/MyRobot/1550772324398
|
|
8
|
-
|
|
9
|
-
Output::
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
"fleet": "arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/MyFleet/1550771358907",
|
|
13
|
-
"robot": "arn:aws:robomaker:us-west-2:111111111111:robot/MyRobot/1550772324398"
|
|
14
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
**To describe a deployment job**
|
|
2
|
-
|
|
3
|
-
The following ``describe-deployment-job`` example retrieves the details about the specified deployment job. ::
|
|
4
|
-
|
|
5
|
-
aws robomaker describe-deployment-job \
|
|
6
|
-
--job arn:aws:robomaker:us-west-2:111111111111:deployment-job/deployment-xl8qssl6pbcn
|
|
7
|
-
|
|
8
|
-
Output::
|
|
9
|
-
|
|
10
|
-
{
|
|
11
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:deployment-job/deployment-xl8qssl6pbcn",
|
|
12
|
-
"fleet": "arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/Trek/1539894765711",
|
|
13
|
-
"status": "InProgress",
|
|
14
|
-
"deploymentConfig": {
|
|
15
|
-
"concurrentDeploymentPercentage": 20,
|
|
16
|
-
"failureThresholdPercentage": 25
|
|
17
|
-
},
|
|
18
|
-
"deploymentApplicationConfigs": [
|
|
19
|
-
{
|
|
20
|
-
"application": "arn:aws:robomaker:us-west-2:111111111111:robot-application/RoboMakerHelloWorldRobot/1546541208251",
|
|
21
|
-
"applicationVersion": "1",
|
|
22
|
-
"launchConfig": {
|
|
23
|
-
"packageName": "hello_world_robot",
|
|
24
|
-
"launchFile": "rotate.launch"
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
],
|
|
28
|
-
"createdAt": 1551218369.0,
|
|
29
|
-
"robotDeploymentSummary": [
|
|
30
|
-
{
|
|
31
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:robot/MyRobot/1540834232469",
|
|
32
|
-
"deploymentStartTime": 1551218376.0,
|
|
33
|
-
"status": "Deploying",
|
|
34
|
-
"progressDetail": {}
|
|
35
|
-
}
|
|
36
|
-
],
|
|
37
|
-
"tags": {}
|
|
38
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
**To describe a fleet**
|
|
2
|
-
|
|
3
|
-
The following ``describe-fleet`` example retrieves the details for the specified fleet. ::
|
|
4
|
-
|
|
5
|
-
aws robomaker describe-fleet \
|
|
6
|
-
--fleet arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/MyFleet/1550771358907
|
|
7
|
-
|
|
8
|
-
Output::
|
|
9
|
-
|
|
10
|
-
{
|
|
11
|
-
"name": "MyFleet",
|
|
12
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:deployment-fleet/MyFleet/1539894765711",
|
|
13
|
-
"robots": [
|
|
14
|
-
{
|
|
15
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:robot/MyRobot/1540834232469",
|
|
16
|
-
"createdAt": 1540834232.0
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"arn": "arn:aws:robomaker:us-west-2:111111111111:robot/MyOtherRobot/1540829698778",
|
|
20
|
-
"createdAt": 1540829698.0
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"createdAt": 1539894765.0,
|
|
24
|
-
"lastDeploymentStatus": "Succeeded",
|
|
25
|
-
"lastDeploymentJob": "arn:aws:robomaker:us-west-2:111111111111:deployment-job/deployment-xl8qssl6pbcn",
|
|
26
|
-
"lastDeploymentTime": 1551218369.0,
|
|
27
|
-
"tags": {}
|
|
28
|
-
}
|