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
|
@@ -16,15 +16,9 @@ from awscli.customizations.emr.createdefaultroles import EC2_ROLE_NAME
|
|
|
16
16
|
|
|
17
17
|
CONFIGURATIONS_PROPERTIES_SCHEMA = {
|
|
18
18
|
"type": "map",
|
|
19
|
-
"key": {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
},
|
|
23
|
-
"value": {
|
|
24
|
-
"type": "string",
|
|
25
|
-
"description": "Configuration value"
|
|
26
|
-
},
|
|
27
|
-
"description": "Application configuration properties"
|
|
19
|
+
"key": {"type": "string", "description": "Configuration key"},
|
|
20
|
+
"value": {"type": "string", "description": "Configuration value"},
|
|
21
|
+
"description": "Application configuration properties",
|
|
28
22
|
}
|
|
29
23
|
|
|
30
24
|
CONFIGURATIONS_CLASSIFICATION_SCHEMA = {
|
|
@@ -38,10 +32,10 @@ INNER_CONFIGURATIONS_SCHEMA = {
|
|
|
38
32
|
"type": "object",
|
|
39
33
|
"properties": {
|
|
40
34
|
"Classification": CONFIGURATIONS_CLASSIFICATION_SCHEMA,
|
|
41
|
-
"Properties": CONFIGURATIONS_PROPERTIES_SCHEMA
|
|
42
|
-
}
|
|
35
|
+
"Properties": CONFIGURATIONS_PROPERTIES_SCHEMA,
|
|
36
|
+
},
|
|
43
37
|
},
|
|
44
|
-
"description": "Instance group application configurations."
|
|
38
|
+
"description": "Instance group application configurations.",
|
|
45
39
|
}
|
|
46
40
|
|
|
47
41
|
OUTER_CONFIGURATIONS_SCHEMA = {
|
|
@@ -51,45 +45,48 @@ OUTER_CONFIGURATIONS_SCHEMA = {
|
|
|
51
45
|
"properties": {
|
|
52
46
|
"Classification": CONFIGURATIONS_CLASSIFICATION_SCHEMA,
|
|
53
47
|
"Properties": CONFIGURATIONS_PROPERTIES_SCHEMA,
|
|
54
|
-
"Configurations": INNER_CONFIGURATIONS_SCHEMA
|
|
55
|
-
}
|
|
48
|
+
"Configurations": INNER_CONFIGURATIONS_SCHEMA,
|
|
49
|
+
},
|
|
56
50
|
},
|
|
57
|
-
"description": "Instance group application configurations."
|
|
51
|
+
"description": "Instance group application configurations.",
|
|
58
52
|
}
|
|
59
53
|
|
|
60
54
|
ONDEMAND_CAPACITY_RESERVATION_OPTIONS_SCHEMA = {
|
|
61
55
|
"type": "object",
|
|
62
|
-
"properties"
|
|
56
|
+
"properties": {
|
|
63
57
|
"UsageStrategy": {
|
|
64
58
|
"type": "string",
|
|
65
59
|
"description": "The strategy of whether to use available capacity reservations to fulfill On-Demand capacity.",
|
|
66
|
-
"enum": ["use-capacity-reservations-first"]
|
|
60
|
+
"enum": ["use-capacity-reservations-first"],
|
|
67
61
|
},
|
|
68
62
|
"CapacityReservationPreference": {
|
|
69
63
|
"type": "string",
|
|
70
64
|
"description": "The preference of the capacity reservation of the instance.",
|
|
71
|
-
"enum": [
|
|
72
|
-
"open",
|
|
73
|
-
"none"
|
|
74
|
-
]
|
|
65
|
+
"enum": ["open", "none"],
|
|
75
66
|
},
|
|
76
67
|
"CapacityReservationResourceGroupArn": {
|
|
77
68
|
"type": "string",
|
|
78
|
-
"description": "The ARN of the capacity reservation resource group in which to run the instance."
|
|
79
|
-
}
|
|
80
|
-
}
|
|
69
|
+
"description": "The ARN of the capacity reservation resource group in which to run the instance.",
|
|
70
|
+
},
|
|
71
|
+
},
|
|
81
72
|
}
|
|
82
73
|
|
|
83
74
|
SPOT_ALLOCATION_STRATEGY_SCHEMA = {
|
|
84
75
|
"type": "string",
|
|
85
76
|
"description": "The strategy to use to launch Spot instance fleets.",
|
|
86
|
-
"enum": [
|
|
77
|
+
"enum": [
|
|
78
|
+
"capacity-optimized",
|
|
79
|
+
"price-capacity-optimized",
|
|
80
|
+
"lowest-price",
|
|
81
|
+
"diversified",
|
|
82
|
+
"capacity-optimized-prioritized",
|
|
83
|
+
],
|
|
87
84
|
}
|
|
88
85
|
|
|
89
86
|
ONDEMAND_ALLOCATION_STRATEGY_SCHEMA = {
|
|
90
87
|
"type": "string",
|
|
91
88
|
"description": "The strategy to use to launch On-Demand instance fleets.",
|
|
92
|
-
"enum": ["lowest-price", "prioritized"]
|
|
89
|
+
"enum": ["lowest-price", "prioritized"],
|
|
93
90
|
}
|
|
94
91
|
|
|
95
92
|
INSTANCE_GROUPS_SCHEMA = {
|
|
@@ -99,39 +96,35 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
99
96
|
"properties": {
|
|
100
97
|
"Name": {
|
|
101
98
|
"type": "string",
|
|
102
|
-
"description":
|
|
103
|
-
"Friendly name given to the instance group."
|
|
99
|
+
"description": "Friendly name given to the instance group.",
|
|
104
100
|
},
|
|
105
101
|
"InstanceGroupType": {
|
|
106
102
|
"type": "string",
|
|
107
|
-
"description":
|
|
108
|
-
"The type of the instance group in the cluster.",
|
|
103
|
+
"description": "The type of the instance group in the cluster.",
|
|
109
104
|
"enum": ["MASTER", "CORE", "TASK"],
|
|
110
|
-
"required": True
|
|
105
|
+
"required": True,
|
|
111
106
|
},
|
|
112
107
|
"BidPrice": {
|
|
113
108
|
"type": "string",
|
|
114
|
-
"description":
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
"expressed in USD."
|
|
109
|
+
"description": "Bid price for each Amazon EC2 instance in the "
|
|
110
|
+
"instance group when launching nodes as Spot Instances, "
|
|
111
|
+
"expressed in USD.",
|
|
118
112
|
},
|
|
119
113
|
"InstanceType": {
|
|
120
114
|
"type": "string",
|
|
121
|
-
"description":
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
"required": True
|
|
115
|
+
"description": "The Amazon EC2 instance type for all instances "
|
|
116
|
+
"in the instance group.",
|
|
117
|
+
"required": True,
|
|
125
118
|
},
|
|
126
119
|
"InstanceCount": {
|
|
127
120
|
"type": "integer",
|
|
128
121
|
"description": "Target number of Amazon EC2 instances "
|
|
129
122
|
"for the instance group",
|
|
130
|
-
"required": True
|
|
123
|
+
"required": True,
|
|
131
124
|
},
|
|
132
125
|
"CustomAmiId": {
|
|
133
126
|
"type": "string",
|
|
134
|
-
"description": "The AMI ID of a custom AMI to use when Amazon EMR provisions EC2 instances."
|
|
127
|
+
"description": "The AMI ID of a custom AMI to use when Amazon EMR provisions EC2 instances.",
|
|
135
128
|
},
|
|
136
129
|
"EbsConfiguration": {
|
|
137
130
|
"type": "object",
|
|
@@ -146,19 +139,19 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
146
139
|
"items": {
|
|
147
140
|
"type": "object",
|
|
148
141
|
"properties": {
|
|
149
|
-
"VolumeSpecification"
|
|
142
|
+
"VolumeSpecification": {
|
|
150
143
|
"type": "object",
|
|
151
144
|
"description": "The EBS volume specification that will be created and attached to every instance in this instance group.",
|
|
152
145
|
"properties": {
|
|
153
146
|
"VolumeType": {
|
|
154
147
|
"type": "string",
|
|
155
148
|
"description": "The EBS volume type that is attached to all the instances in the instance group. Valid types are: gp2, io1, and standard.",
|
|
156
|
-
"required": True
|
|
149
|
+
"required": True,
|
|
157
150
|
},
|
|
158
151
|
"SizeInGB": {
|
|
159
152
|
"type": "integer",
|
|
160
153
|
"description": "The EBS volume size, in GB, that is attached to all the instances in the instance group.",
|
|
161
|
-
"required": True
|
|
154
|
+
"required": True,
|
|
162
155
|
},
|
|
163
156
|
"Iops": {
|
|
164
157
|
"type": "integer",
|
|
@@ -167,17 +160,17 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
167
160
|
"Throughput": {
|
|
168
161
|
"type": "integer",
|
|
169
162
|
"description": "The throughput of the EBS volume that is attached to all the instances in the instance group.",
|
|
170
|
-
}
|
|
171
|
-
}
|
|
163
|
+
},
|
|
164
|
+
},
|
|
172
165
|
},
|
|
173
166
|
"VolumesPerInstance": {
|
|
174
167
|
"type": "integer",
|
|
175
168
|
"description": "The number of EBS volumes that will be created and attached to each instance in the instance group.",
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
},
|
|
181
174
|
},
|
|
182
175
|
"AutoScalingPolicy": {
|
|
183
176
|
"type": "object",
|
|
@@ -190,14 +183,14 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
190
183
|
"MinCapacity": {
|
|
191
184
|
"type": "integer",
|
|
192
185
|
"description": "The minimum value for the instances to scale in"
|
|
193
|
-
|
|
186
|
+
" to in response to scaling activities.",
|
|
194
187
|
},
|
|
195
188
|
"MaxCapacity": {
|
|
196
189
|
"type": "integer",
|
|
197
190
|
"description": "The maximum value for the instances to scale out to in response"
|
|
198
|
-
|
|
199
|
-
}
|
|
200
|
-
}
|
|
191
|
+
" to scaling activities",
|
|
192
|
+
},
|
|
193
|
+
},
|
|
201
194
|
},
|
|
202
195
|
"Rules": {
|
|
203
196
|
"type": "array",
|
|
@@ -207,11 +200,11 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
207
200
|
"properties": {
|
|
208
201
|
"Name": {
|
|
209
202
|
"type": "string",
|
|
210
|
-
"description": "Name of the Auto Scaling rule."
|
|
203
|
+
"description": "Name of the Auto Scaling rule.",
|
|
211
204
|
},
|
|
212
205
|
"Description": {
|
|
213
206
|
"type": "string",
|
|
214
|
-
"description": "Description of the Auto Scaling rule."
|
|
207
|
+
"description": "Description of the Auto Scaling rule.",
|
|
215
208
|
},
|
|
216
209
|
"Action": {
|
|
217
210
|
"type": "object",
|
|
@@ -220,35 +213,38 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
220
213
|
"Market": { # Required for Instance Fleets
|
|
221
214
|
"type": "string",
|
|
222
215
|
"description": "Market type of the Amazon EC2 instances used to create a "
|
|
223
|
-
|
|
224
|
-
"enum": ["ON_DEMAND", "SPOT"]
|
|
216
|
+
"cluster node by Auto Scaling action.",
|
|
217
|
+
"enum": ["ON_DEMAND", "SPOT"],
|
|
225
218
|
},
|
|
226
219
|
"SimpleScalingPolicyConfiguration": {
|
|
227
220
|
"type": "object",
|
|
228
221
|
"description": "The Simple scaling configuration that will be associated"
|
|
229
|
-
|
|
222
|
+
"to Auto Scaling action.",
|
|
230
223
|
"properties": {
|
|
231
224
|
"AdjustmentType": {
|
|
232
225
|
"type": "string",
|
|
233
226
|
"description": "Specifies how the ScalingAdjustment parameter is "
|
|
234
|
-
|
|
235
|
-
"enum": [
|
|
236
|
-
|
|
227
|
+
"interpreted.",
|
|
228
|
+
"enum": [
|
|
229
|
+
"CHANGE_IN_CAPACITY",
|
|
230
|
+
"PERCENT_CHANGE_IN_CAPACITY",
|
|
231
|
+
"EXACT_CAPACITY",
|
|
232
|
+
],
|
|
237
233
|
},
|
|
238
234
|
"ScalingAdjustment": {
|
|
239
235
|
"type": "integer",
|
|
240
236
|
"description": "The amount by which to scale, based on the "
|
|
241
|
-
|
|
237
|
+
"specified adjustment type.",
|
|
242
238
|
},
|
|
243
239
|
"CoolDown": {
|
|
244
240
|
"type": "integer",
|
|
245
241
|
"description": "The amount of time, in seconds, after a scaling "
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
}
|
|
242
|
+
"activity completes and before the next scaling "
|
|
243
|
+
"activity can start.",
|
|
244
|
+
},
|
|
245
|
+
},
|
|
246
|
+
},
|
|
247
|
+
},
|
|
252
248
|
},
|
|
253
249
|
"Trigger": {
|
|
254
250
|
"type": "object",
|
|
@@ -257,44 +253,44 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
257
253
|
"CloudWatchAlarmDefinition": {
|
|
258
254
|
"type": "object",
|
|
259
255
|
"description": "The Alarm to be registered with CloudWatch, to trigger"
|
|
260
|
-
|
|
256
|
+
" scaling activities.",
|
|
261
257
|
"properties": {
|
|
262
258
|
"ComparisonOperator": {
|
|
263
259
|
"type": "string",
|
|
264
260
|
"description": "The arithmetic operation to use when comparing the"
|
|
265
|
-
|
|
261
|
+
" specified Statistic and Threshold.",
|
|
266
262
|
},
|
|
267
263
|
"EvaluationPeriods": {
|
|
268
264
|
"type": "integer",
|
|
269
265
|
"description": "The number of periods over which data is compared"
|
|
270
|
-
|
|
266
|
+
" to the specified threshold.",
|
|
271
267
|
},
|
|
272
268
|
"MetricName": {
|
|
273
269
|
"type": "string",
|
|
274
|
-
"description": "The name for the alarm's associated metric."
|
|
270
|
+
"description": "The name for the alarm's associated metric.",
|
|
275
271
|
},
|
|
276
272
|
"Namespace": {
|
|
277
273
|
"type": "string",
|
|
278
|
-
"description": "The namespace for the alarm's associated metric."
|
|
274
|
+
"description": "The namespace for the alarm's associated metric.",
|
|
279
275
|
},
|
|
280
276
|
"Period": {
|
|
281
277
|
"type": "integer",
|
|
282
278
|
"description": "The period in seconds over which the specified "
|
|
283
|
-
|
|
279
|
+
"statistic is applied.",
|
|
284
280
|
},
|
|
285
281
|
"Statistic": {
|
|
286
282
|
"type": "string",
|
|
287
283
|
"description": "The statistic to apply to the alarm's associated "
|
|
288
|
-
|
|
284
|
+
"metric.",
|
|
289
285
|
},
|
|
290
286
|
"Threshold": {
|
|
291
287
|
"type": "double",
|
|
292
288
|
"description": "The value against which the specified statistic is "
|
|
293
|
-
|
|
289
|
+
"compared.",
|
|
294
290
|
},
|
|
295
291
|
"Unit": {
|
|
296
292
|
"type": "string",
|
|
297
|
-
"description": "The statistic's unit of measure."
|
|
293
|
+
"description": "The statistic's unit of measure.",
|
|
298
294
|
},
|
|
299
295
|
"Dimensions": {
|
|
300
296
|
"type": "array",
|
|
@@ -304,27 +300,27 @@ INSTANCE_GROUPS_SCHEMA = {
|
|
|
304
300
|
"properties": {
|
|
305
301
|
"Key": {
|
|
306
302
|
"type": "string",
|
|
307
|
-
"description": "Dimension Key."
|
|
303
|
+
"description": "Dimension Key.",
|
|
308
304
|
},
|
|
309
305
|
"Value": {
|
|
310
306
|
"type": "string",
|
|
311
|
-
"description": "Dimension Value."
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
}
|
|
307
|
+
"description": "Dimension Value.",
|
|
308
|
+
},
|
|
309
|
+
},
|
|
310
|
+
},
|
|
311
|
+
},
|
|
312
|
+
},
|
|
317
313
|
}
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
}
|
|
314
|
+
},
|
|
315
|
+
},
|
|
316
|
+
},
|
|
317
|
+
},
|
|
318
|
+
},
|
|
319
|
+
},
|
|
324
320
|
},
|
|
325
|
-
"Configurations": OUTER_CONFIGURATIONS_SCHEMA
|
|
326
|
-
}
|
|
327
|
-
}
|
|
321
|
+
"Configurations": OUTER_CONFIGURATIONS_SCHEMA,
|
|
322
|
+
},
|
|
323
|
+
},
|
|
328
324
|
}
|
|
329
325
|
|
|
330
326
|
INSTANCE_FLEETS_SCHEMA = {
|
|
@@ -334,21 +330,21 @@ INSTANCE_FLEETS_SCHEMA = {
|
|
|
334
330
|
"properties": {
|
|
335
331
|
"Name": {
|
|
336
332
|
"type": "string",
|
|
337
|
-
"description": "Friendly name given to the instance fleet."
|
|
333
|
+
"description": "Friendly name given to the instance fleet.",
|
|
338
334
|
},
|
|
339
335
|
"InstanceFleetType": {
|
|
340
336
|
"type": "string",
|
|
341
337
|
"description": "The type of the instance fleet in the cluster.",
|
|
342
338
|
"enum": ["MASTER", "CORE", "TASK"],
|
|
343
|
-
"required": True
|
|
339
|
+
"required": True,
|
|
344
340
|
},
|
|
345
341
|
"TargetOnDemandCapacity": {
|
|
346
342
|
"type": "integer",
|
|
347
|
-
"description": "Target on-demand capacity for the instance fleet."
|
|
343
|
+
"description": "Target on-demand capacity for the instance fleet.",
|
|
348
344
|
},
|
|
349
345
|
"TargetSpotCapacity": {
|
|
350
346
|
"type": "integer",
|
|
351
|
-
"description": "Target spot capacity for the instance fleet."
|
|
347
|
+
"description": "Target spot capacity for the instance fleet.",
|
|
352
348
|
},
|
|
353
349
|
"InstanceTypeConfigs": {
|
|
354
350
|
"type": "array",
|
|
@@ -358,30 +354,30 @@ INSTANCE_FLEETS_SCHEMA = {
|
|
|
358
354
|
"InstanceType": {
|
|
359
355
|
"type": "string",
|
|
360
356
|
"description": "The Amazon EC2 instance type for the instance fleet.",
|
|
361
|
-
"required": True
|
|
357
|
+
"required": True,
|
|
362
358
|
},
|
|
363
359
|
"WeightedCapacity": {
|
|
364
360
|
"type": "integer",
|
|
365
|
-
"description": "The weight assigned to an instance type, which will impact the overall fulfillment of the capacity."
|
|
361
|
+
"description": "The weight assigned to an instance type, which will impact the overall fulfillment of the capacity.",
|
|
366
362
|
},
|
|
367
363
|
"BidPrice": {
|
|
368
364
|
"type": "string",
|
|
369
365
|
"description": "Bid price for each Amazon EC2 instance in the "
|
|
370
|
-
|
|
371
|
-
|
|
366
|
+
"instance fleet when launching nodes as Spot Instances, "
|
|
367
|
+
"expressed in USD.",
|
|
372
368
|
},
|
|
373
369
|
"BidPriceAsPercentageOfOnDemandPrice": {
|
|
374
370
|
"type": "double",
|
|
375
|
-
"description": "Bid price as percentage of on-demand price."
|
|
371
|
+
"description": "Bid price as percentage of on-demand price.",
|
|
376
372
|
},
|
|
377
373
|
"CustomAmiId": {
|
|
378
374
|
"type": "string",
|
|
379
|
-
"description": "The AMI ID of a custom AMI to use when Amazon EMR provisions EC2 instances."
|
|
375
|
+
"description": "The AMI ID of a custom AMI to use when Amazon EMR provisions EC2 instances.",
|
|
380
376
|
},
|
|
381
377
|
"Priority": {
|
|
382
378
|
"type": "double",
|
|
383
379
|
"description": "The priority at which Amazon EMR launches the EC2 instances with this instance type. "
|
|
384
|
-
|
|
380
|
+
"Priority starts at 0, which is the highest priority. Amazon EMR considers the highest priority first.",
|
|
385
381
|
},
|
|
386
382
|
"EbsConfiguration": {
|
|
387
383
|
"type": "object",
|
|
@@ -396,83 +392,83 @@ INSTANCE_FLEETS_SCHEMA = {
|
|
|
396
392
|
"items": {
|
|
397
393
|
"type": "object",
|
|
398
394
|
"properties": {
|
|
399
|
-
"VolumeSpecification"
|
|
395
|
+
"VolumeSpecification": {
|
|
400
396
|
"type": "object",
|
|
401
397
|
"description": "The EBS volume specification that is created "
|
|
402
|
-
|
|
398
|
+
"and attached to each instance in the instance group.",
|
|
403
399
|
"properties": {
|
|
404
400
|
"VolumeType": {
|
|
405
401
|
"type": "string",
|
|
406
402
|
"description": "The EBS volume type that is attached to all "
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
403
|
+
"the instances in the instance group. Valid types are: "
|
|
404
|
+
"gp2, io1, and standard.",
|
|
405
|
+
"required": True,
|
|
410
406
|
},
|
|
411
407
|
"SizeInGB": {
|
|
412
408
|
"type": "integer",
|
|
413
409
|
"description": "The EBS volume size, in GB, that is attached "
|
|
414
|
-
|
|
415
|
-
"required": True
|
|
410
|
+
"to all the instances in the instance group.",
|
|
411
|
+
"required": True,
|
|
416
412
|
},
|
|
417
413
|
"Iops": {
|
|
418
414
|
"type": "integer",
|
|
419
415
|
"description": "The IOPS of the EBS volume that is attached to "
|
|
420
|
-
|
|
416
|
+
"all the instances in the instance group.",
|
|
421
417
|
},
|
|
422
418
|
"Throughput": {
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
}
|
|
427
|
-
}
|
|
419
|
+
"type": "integer",
|
|
420
|
+
"description": "The throughput of the EBS volume that is attached to "
|
|
421
|
+
"all the instances in the instance group.",
|
|
422
|
+
},
|
|
423
|
+
},
|
|
428
424
|
},
|
|
429
425
|
"VolumesPerInstance": {
|
|
430
426
|
"type": "integer",
|
|
431
427
|
"description": "The number of EBS volumes that will be created and "
|
|
432
|
-
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
}
|
|
428
|
+
"attached to each instance in the instance group.",
|
|
429
|
+
},
|
|
430
|
+
},
|
|
431
|
+
},
|
|
432
|
+
},
|
|
433
|
+
},
|
|
438
434
|
},
|
|
439
|
-
"Configurations": OUTER_CONFIGURATIONS_SCHEMA
|
|
440
|
-
}
|
|
441
|
-
}
|
|
435
|
+
"Configurations": OUTER_CONFIGURATIONS_SCHEMA,
|
|
436
|
+
},
|
|
437
|
+
},
|
|
442
438
|
},
|
|
443
439
|
"LaunchSpecifications": {
|
|
444
440
|
"type": "object",
|
|
445
|
-
"properties"
|
|
441
|
+
"properties": {
|
|
446
442
|
"OnDemandSpecification": {
|
|
447
443
|
"type": "object",
|
|
448
444
|
"properties": {
|
|
449
445
|
"AllocationStrategy": ONDEMAND_ALLOCATION_STRATEGY_SCHEMA,
|
|
450
|
-
"CapacityReservationOptions": ONDEMAND_CAPACITY_RESERVATION_OPTIONS_SCHEMA
|
|
451
|
-
}
|
|
446
|
+
"CapacityReservationOptions": ONDEMAND_CAPACITY_RESERVATION_OPTIONS_SCHEMA,
|
|
447
|
+
},
|
|
452
448
|
},
|
|
453
449
|
"SpotSpecification": {
|
|
454
450
|
"type": "object",
|
|
455
451
|
"properties": {
|
|
456
452
|
"TimeoutDurationMinutes": {
|
|
457
453
|
"type": "integer",
|
|
458
|
-
"description": "The time, in minutes, after which the action specified in TimeoutAction field will be performed if requested resources are unavailable."
|
|
454
|
+
"description": "The time, in minutes, after which the action specified in TimeoutAction field will be performed if requested resources are unavailable.",
|
|
459
455
|
},
|
|
460
456
|
"TimeoutAction": {
|
|
461
457
|
"type": "string",
|
|
462
458
|
"description": "The action that is performed after TimeoutDurationMinutes.",
|
|
463
459
|
"enum": [
|
|
464
460
|
"TERMINATE_CLUSTER",
|
|
465
|
-
"SWITCH_TO_ONDEMAND"
|
|
466
|
-
]
|
|
461
|
+
"SWITCH_TO_ONDEMAND",
|
|
462
|
+
],
|
|
467
463
|
},
|
|
468
464
|
"BlockDurationMinutes": {
|
|
469
465
|
"type": "integer",
|
|
470
|
-
"description": "Block duration in minutes."
|
|
466
|
+
"description": "Block duration in minutes.",
|
|
471
467
|
},
|
|
472
|
-
"AllocationStrategy": SPOT_ALLOCATION_STRATEGY_SCHEMA
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
}
|
|
468
|
+
"AllocationStrategy": SPOT_ALLOCATION_STRATEGY_SCHEMA,
|
|
469
|
+
},
|
|
470
|
+
},
|
|
471
|
+
},
|
|
476
472
|
},
|
|
477
473
|
"ResizeSpecifications": {
|
|
478
474
|
"type": "object",
|
|
@@ -481,31 +477,28 @@ INSTANCE_FLEETS_SCHEMA = {
|
|
|
481
477
|
"type": "object",
|
|
482
478
|
"properties": {
|
|
483
479
|
"TimeoutDurationMinutes": {
|
|
484
|
-
"type"
|
|
485
|
-
"description": "The time, in minutes, after which the resize will be stopped if requested resources are unavailable."
|
|
480
|
+
"type": "integer",
|
|
481
|
+
"description": "The time, in minutes, after which the resize will be stopped if requested resources are unavailable.",
|
|
486
482
|
},
|
|
487
|
-
"AllocationStrategy": SPOT_ALLOCATION_STRATEGY_SCHEMA
|
|
488
|
-
}
|
|
483
|
+
"AllocationStrategy": SPOT_ALLOCATION_STRATEGY_SCHEMA,
|
|
484
|
+
},
|
|
489
485
|
},
|
|
490
486
|
"OnDemandResizeSpecification": {
|
|
491
487
|
"type": "object",
|
|
492
488
|
"properties": {
|
|
493
489
|
"TimeoutDurationMinutes": {
|
|
494
|
-
"type"
|
|
495
|
-
"description": "The time, in minutes, after which the resize will be stopped if requested resources are unavailable."
|
|
490
|
+
"type": "integer",
|
|
491
|
+
"description": "The time, in minutes, after which the resize will be stopped if requested resources are unavailable.",
|
|
496
492
|
},
|
|
497
493
|
"AllocationStrategy": ONDEMAND_ALLOCATION_STRATEGY_SCHEMA,
|
|
498
|
-
"CapacityReservationOptions": ONDEMAND_CAPACITY_RESERVATION_OPTIONS_SCHEMA
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
}
|
|
494
|
+
"CapacityReservationOptions": ONDEMAND_CAPACITY_RESERVATION_OPTIONS_SCHEMA,
|
|
495
|
+
},
|
|
496
|
+
},
|
|
497
|
+
},
|
|
502
498
|
},
|
|
503
|
-
"Context": {
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
}
|
|
507
|
-
}
|
|
508
|
-
}
|
|
499
|
+
"Context": {"type": "string", "description": "Reserved."},
|
|
500
|
+
},
|
|
501
|
+
},
|
|
509
502
|
}
|
|
510
503
|
|
|
511
504
|
EC2_ATTRIBUTES_SCHEMA = {
|
|
@@ -513,75 +506,64 @@ EC2_ATTRIBUTES_SCHEMA = {
|
|
|
513
506
|
"properties": {
|
|
514
507
|
"KeyName": {
|
|
515
508
|
"type": "string",
|
|
516
|
-
"description":
|
|
517
|
-
|
|
518
|
-
"be used to ssh to the master node as the user 'hadoop'."
|
|
509
|
+
"description": "The name of the Amazon EC2 key pair that can "
|
|
510
|
+
"be used to ssh to the master node as the user 'hadoop'.",
|
|
519
511
|
},
|
|
520
512
|
"SubnetId": {
|
|
521
513
|
"type": "string",
|
|
522
|
-
"description":
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
"cloud, outside of an Amazon VPC. "
|
|
514
|
+
"description": "To launch the cluster in Amazon "
|
|
515
|
+
"Virtual Private Cloud (Amazon VPC), set this parameter to "
|
|
516
|
+
"the identifier of the Amazon VPC subnet where you want "
|
|
517
|
+
"the cluster to launch. If you do not specify this value, "
|
|
518
|
+
"the cluster is launched in the normal Amazon Web Services "
|
|
519
|
+
"cloud, outside of an Amazon VPC. ",
|
|
529
520
|
},
|
|
530
521
|
"SubnetIds": {
|
|
531
522
|
"type": "array",
|
|
532
|
-
"description":
|
|
533
|
-
|
|
534
|
-
"items": {
|
|
535
|
-
"type": "string"
|
|
536
|
-
}
|
|
523
|
+
"description": "List of SubnetIds.",
|
|
524
|
+
"items": {"type": "string"},
|
|
537
525
|
},
|
|
538
526
|
"AvailabilityZone": {
|
|
539
527
|
"type": "string",
|
|
540
|
-
"description": "The Availability Zone the cluster will run in."
|
|
528
|
+
"description": "The Availability Zone the cluster will run in.",
|
|
541
529
|
},
|
|
542
530
|
"AvailabilityZones": {
|
|
543
531
|
"type": "array",
|
|
544
532
|
"description": "List of AvailabilityZones.",
|
|
545
|
-
"items": {
|
|
546
|
-
"type": "string"
|
|
547
|
-
}
|
|
533
|
+
"items": {"type": "string"},
|
|
548
534
|
},
|
|
549
535
|
"InstanceProfile": {
|
|
550
536
|
"type": "string",
|
|
551
|
-
"description":
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
537
|
+
"description": "An IAM role for the cluster. The EC2 instances of the cluster"
|
|
538
|
+
" assume this role. The default role is "
|
|
539
|
+
+ EC2_ROLE_NAME
|
|
540
|
+
+ ". In order to use the default"
|
|
541
|
+
" role, you must have already created it using the "
|
|
542
|
+
"<code>create-default-roles</code> command. ",
|
|
557
543
|
},
|
|
558
544
|
"EmrManagedMasterSecurityGroup": {
|
|
559
545
|
"type": "string",
|
|
560
|
-
"description": helptext.EMR_MANAGED_MASTER_SECURITY_GROUP
|
|
546
|
+
"description": helptext.EMR_MANAGED_MASTER_SECURITY_GROUP,
|
|
561
547
|
},
|
|
562
548
|
"EmrManagedSlaveSecurityGroup": {
|
|
563
549
|
"type": "string",
|
|
564
|
-
"description": helptext.EMR_MANAGED_SLAVE_SECURITY_GROUP
|
|
550
|
+
"description": helptext.EMR_MANAGED_SLAVE_SECURITY_GROUP,
|
|
565
551
|
},
|
|
566
552
|
"ServiceAccessSecurityGroup": {
|
|
567
553
|
"type": "string",
|
|
568
|
-
"description": helptext.SERVICE_ACCESS_SECURITY_GROUP
|
|
554
|
+
"description": helptext.SERVICE_ACCESS_SECURITY_GROUP,
|
|
569
555
|
},
|
|
570
556
|
"AdditionalMasterSecurityGroups": {
|
|
571
557
|
"type": "array",
|
|
572
558
|
"description": helptext.ADDITIONAL_MASTER_SECURITY_GROUPS,
|
|
573
|
-
"items": {
|
|
574
|
-
"type": "string"
|
|
575
|
-
}
|
|
559
|
+
"items": {"type": "string"},
|
|
576
560
|
},
|
|
577
561
|
"AdditionalSlaveSecurityGroups": {
|
|
578
562
|
"type": "array",
|
|
579
563
|
"description": helptext.ADDITIONAL_SLAVE_SECURITY_GROUPS,
|
|
580
|
-
"items": {
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
}
|
|
584
|
-
}
|
|
564
|
+
"items": {"type": "string"},
|
|
565
|
+
},
|
|
566
|
+
},
|
|
585
567
|
}
|
|
586
568
|
|
|
587
569
|
|
|
@@ -593,20 +575,26 @@ APPLICATIONS_SCHEMA = {
|
|
|
593
575
|
"Name": {
|
|
594
576
|
"type": "string",
|
|
595
577
|
"description": "Application name.",
|
|
596
|
-
"enum": [
|
|
597
|
-
|
|
598
|
-
|
|
578
|
+
"enum": [
|
|
579
|
+
"MapR",
|
|
580
|
+
"HUE",
|
|
581
|
+
"HIVE",
|
|
582
|
+
"PIG",
|
|
583
|
+
"HBASE",
|
|
584
|
+
"IMPALA",
|
|
585
|
+
"GANGLIA",
|
|
586
|
+
"HADOOP",
|
|
587
|
+
"SPARK",
|
|
588
|
+
],
|
|
589
|
+
"required": True,
|
|
599
590
|
},
|
|
600
591
|
"Args": {
|
|
601
592
|
"type": "array",
|
|
602
|
-
"description":
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
}
|
|
593
|
+
"description": "A list of arguments to pass to the application.",
|
|
594
|
+
"items": {"type": "string"},
|
|
595
|
+
},
|
|
596
|
+
},
|
|
597
|
+
},
|
|
610
598
|
}
|
|
611
599
|
|
|
612
600
|
BOOTSTRAP_ACTIONS_SCHEMA = {
|
|
@@ -614,29 +602,22 @@ BOOTSTRAP_ACTIONS_SCHEMA = {
|
|
|
614
602
|
"items": {
|
|
615
603
|
"type": "object",
|
|
616
604
|
"properties": {
|
|
617
|
-
"Name": {
|
|
618
|
-
"type": "string",
|
|
619
|
-
"default": "Bootstrap Action"
|
|
620
|
-
},
|
|
605
|
+
"Name": {"type": "string", "default": "Bootstrap Action"},
|
|
621
606
|
"Path": {
|
|
622
607
|
"type": "string",
|
|
623
|
-
"description":
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
"required": True
|
|
608
|
+
"description": "Location of the script to run during a bootstrap action. "
|
|
609
|
+
"Can be either a location in Amazon S3 or "
|
|
610
|
+
"on a local file system.",
|
|
611
|
+
"required": True,
|
|
628
612
|
},
|
|
629
613
|
"Args": {
|
|
630
614
|
"type": "array",
|
|
631
|
-
"description":
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
}
|
|
638
|
-
}
|
|
639
|
-
}
|
|
615
|
+
"description": "A list of command line arguments to pass to "
|
|
616
|
+
"the bootstrap action script",
|
|
617
|
+
"items": {"type": "string"},
|
|
618
|
+
},
|
|
619
|
+
},
|
|
620
|
+
},
|
|
640
621
|
}
|
|
641
622
|
|
|
642
623
|
|
|
@@ -647,8 +628,7 @@ STEPS_SCHEMA = {
|
|
|
647
628
|
"properties": {
|
|
648
629
|
"Type": {
|
|
649
630
|
"type": "string",
|
|
650
|
-
"description":
|
|
651
|
-
"The type of a step to be added to the cluster.",
|
|
631
|
+
"description": "The type of a step to be added to the cluster.",
|
|
652
632
|
"default": "custom_jar",
|
|
653
633
|
"enum": ["CUSTOM_JAR", "STREAMING", "HIVE", "PIG", "IMPALA"],
|
|
654
634
|
},
|
|
@@ -660,7 +640,7 @@ STEPS_SCHEMA = {
|
|
|
660
640
|
"type": "string",
|
|
661
641
|
"description": "The action to take if the cluster step fails.",
|
|
662
642
|
"enum": ["TERMINATE_CLUSTER", "CANCEL_AND_WAIT", "CONTINUE"],
|
|
663
|
-
"default": "CONTINUE"
|
|
643
|
+
"default": "CONTINUE",
|
|
664
644
|
},
|
|
665
645
|
"Jar": {
|
|
666
646
|
"type": "string",
|
|
@@ -668,42 +648,45 @@ STEPS_SCHEMA = {
|
|
|
668
648
|
},
|
|
669
649
|
"Args": {
|
|
670
650
|
"type": "array",
|
|
671
|
-
"description":
|
|
672
|
-
|
|
673
|
-
"items": {
|
|
674
|
-
"type": "string"
|
|
675
|
-
}
|
|
651
|
+
"description": "A list of command line arguments to pass to the step.",
|
|
652
|
+
"items": {"type": "string"},
|
|
676
653
|
},
|
|
677
654
|
"MainClass": {
|
|
678
655
|
"type": "string",
|
|
679
|
-
"description":
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
"specify a Main-Class in its manifest file."
|
|
656
|
+
"description": "The name of the main class in the specified "
|
|
657
|
+
"Java file. If not specified, the JAR file should "
|
|
658
|
+
"specify a Main-Class in its manifest file.",
|
|
683
659
|
},
|
|
684
660
|
"Properties": {
|
|
685
661
|
"type": "string",
|
|
686
|
-
"description":
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
662
|
+
"description": "A list of Java properties that are set when the step "
|
|
663
|
+
"runs. You can use these properties to pass key value "
|
|
664
|
+
"pairs to your main function.",
|
|
665
|
+
},
|
|
666
|
+
"LogUri": {
|
|
667
|
+
"type": "string",
|
|
668
|
+
"description": "The Amazon S3 destination URI for log publishing. If "
|
|
669
|
+
"not specified, the cluster logging location is used.",
|
|
670
|
+
},
|
|
671
|
+
"EncryptionKeyArn": {
|
|
672
|
+
"type": "string",
|
|
673
|
+
"description": "The KMS key ARN to encrypt the logs published to the "
|
|
674
|
+
"given Amazon S3 destination. If not specified, the "
|
|
675
|
+
"cluster KMS key is used.",
|
|
676
|
+
},
|
|
677
|
+
},
|
|
678
|
+
},
|
|
693
679
|
}
|
|
694
680
|
|
|
695
681
|
HBASE_RESTORE_FROM_BACKUP_SCHEMA = {
|
|
696
682
|
"type": "object",
|
|
697
683
|
"properties": {
|
|
698
|
-
"Dir": {
|
|
699
|
-
"type": "string",
|
|
700
|
-
"description": helptext.HBASE_BACKUP_DIR
|
|
701
|
-
},
|
|
684
|
+
"Dir": {"type": "string", "description": helptext.HBASE_BACKUP_DIR},
|
|
702
685
|
"BackupVersion": {
|
|
703
686
|
"type": "string",
|
|
704
|
-
"description": helptext.HBASE_BACKUP_VERSION
|
|
705
|
-
}
|
|
706
|
-
}
|
|
687
|
+
"description": helptext.HBASE_BACKUP_VERSION,
|
|
688
|
+
},
|
|
689
|
+
},
|
|
707
690
|
}
|
|
708
691
|
|
|
709
692
|
EMR_FS_SCHEMA = {
|
|
@@ -711,41 +694,38 @@ EMR_FS_SCHEMA = {
|
|
|
711
694
|
"properties": {
|
|
712
695
|
"Consistent": {
|
|
713
696
|
"type": "boolean",
|
|
714
|
-
"description": "Enable EMRFS consistent view."
|
|
697
|
+
"description": "Enable EMRFS consistent view.",
|
|
715
698
|
},
|
|
716
699
|
"SSE": {
|
|
717
700
|
"type": "boolean",
|
|
718
701
|
"description": "Enable Amazon S3 server-side encryption on files "
|
|
719
|
-
|
|
702
|
+
"written to S3 by EMRFS.",
|
|
720
703
|
},
|
|
721
704
|
"RetryCount": {
|
|
722
705
|
"type": "integer",
|
|
723
|
-
"description":
|
|
724
|
-
"The maximum number of times to retry upon S3 inconsistency."
|
|
706
|
+
"description": "The maximum number of times to retry upon S3 inconsistency.",
|
|
725
707
|
},
|
|
726
708
|
"RetryPeriod": {
|
|
727
709
|
"type": "integer",
|
|
728
710
|
"description": "The amount of time (in seconds) until the first "
|
|
729
|
-
|
|
730
|
-
|
|
711
|
+
"retry. Subsequent retries use an exponential "
|
|
712
|
+
"back-off.",
|
|
731
713
|
},
|
|
732
714
|
"Args": {
|
|
733
715
|
"type": "array",
|
|
734
716
|
"description": "A list of arguments to pass for additional "
|
|
735
|
-
|
|
736
|
-
"items": {
|
|
737
|
-
"type": "string"
|
|
738
|
-
}
|
|
717
|
+
"EMRFS configuration.",
|
|
718
|
+
"items": {"type": "string"},
|
|
739
719
|
},
|
|
740
720
|
"Encryption": {
|
|
741
721
|
"type": "string",
|
|
742
722
|
"description": "EMRFS encryption type.",
|
|
743
|
-
"enum": ["SERVERSIDE", "CLIENTSIDE"]
|
|
723
|
+
"enum": ["SERVERSIDE", "CLIENTSIDE"],
|
|
744
724
|
},
|
|
745
725
|
"ProviderType": {
|
|
746
726
|
"type": "string",
|
|
747
727
|
"description": "EMRFS client-side encryption provider type.",
|
|
748
|
-
"enum": ["KMS", "CUSTOM"]
|
|
728
|
+
"enum": ["KMS", "CUSTOM"],
|
|
749
729
|
},
|
|
750
730
|
"KMSKeyId": {
|
|
751
731
|
"type": "string",
|
|
@@ -753,46 +733,41 @@ EMR_FS_SCHEMA = {
|
|
|
753
733
|
},
|
|
754
734
|
"CustomProviderLocation": {
|
|
755
735
|
"type": "string",
|
|
756
|
-
"description": "Custom encryption provider JAR location."
|
|
736
|
+
"description": "Custom encryption provider JAR location.",
|
|
757
737
|
},
|
|
758
738
|
"CustomProviderClass": {
|
|
759
739
|
"type": "string",
|
|
760
|
-
"description": "Custom encryption provider full class name."
|
|
761
|
-
}
|
|
762
|
-
}
|
|
740
|
+
"description": "Custom encryption provider full class name.",
|
|
741
|
+
},
|
|
742
|
+
},
|
|
763
743
|
}
|
|
764
744
|
|
|
765
|
-
TAGS_SCHEMA = {
|
|
766
|
-
"type": "array",
|
|
767
|
-
"items": {
|
|
768
|
-
"type": "string"
|
|
769
|
-
}
|
|
770
|
-
}
|
|
745
|
+
TAGS_SCHEMA = {"type": "array", "items": {"type": "string"}}
|
|
771
746
|
|
|
772
747
|
KERBEROS_ATTRIBUTES_SCHEMA = {
|
|
773
748
|
"type": "object",
|
|
774
749
|
"properties": {
|
|
775
750
|
"Realm": {
|
|
776
751
|
"type": "string",
|
|
777
|
-
"description": "The name of Kerberos realm."
|
|
752
|
+
"description": "The name of Kerberos realm.",
|
|
778
753
|
},
|
|
779
754
|
"KdcAdminPassword": {
|
|
780
755
|
"type": "string",
|
|
781
|
-
"description": "The password of Kerberos administrator."
|
|
756
|
+
"description": "The password of Kerberos administrator.",
|
|
782
757
|
},
|
|
783
758
|
"CrossRealmTrustPrincipalPassword": {
|
|
784
759
|
"type": "string",
|
|
785
|
-
"description": "The password to establish cross-realm trusts."
|
|
760
|
+
"description": "The password to establish cross-realm trusts.",
|
|
786
761
|
},
|
|
787
762
|
"ADDomainJoinUser": {
|
|
788
763
|
"type": "string",
|
|
789
|
-
"description": "The name of the user with privileges to join instances to Active Directory."
|
|
764
|
+
"description": "The name of the user with privileges to join instances to Active Directory.",
|
|
790
765
|
},
|
|
791
766
|
"ADDomainJoinPassword": {
|
|
792
767
|
"type": "string",
|
|
793
|
-
"description": "The password of the user with privileges to join instances to Active Directory."
|
|
794
|
-
}
|
|
795
|
-
}
|
|
768
|
+
"description": "The password of the user with privileges to join instances to Active Directory.",
|
|
769
|
+
},
|
|
770
|
+
},
|
|
796
771
|
}
|
|
797
772
|
|
|
798
773
|
MANAGED_SCALING_POLICY_SCHEMA = {
|
|
@@ -800,73 +775,66 @@ MANAGED_SCALING_POLICY_SCHEMA = {
|
|
|
800
775
|
"properties": {
|
|
801
776
|
"ComputeLimits": {
|
|
802
777
|
"type": "object",
|
|
803
|
-
"description":
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
"and exclude the capacity of the MASTER group.",
|
|
778
|
+
"description": "The EC2 unit limits for a managed scaling policy. "
|
|
779
|
+
"The managed scaling activity of a cluster is not allowed to go above "
|
|
780
|
+
"or below these limits. The limits apply to CORE and TASK groups "
|
|
781
|
+
"and exclude the capacity of the MASTER group.",
|
|
808
782
|
"properties": {
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
"The core units are not allowed to scale beyond this boundary. "
|
|
849
|
-
"The parameter is used to split capacity allocation between core and task nodes."
|
|
850
|
-
}
|
|
851
|
-
}
|
|
783
|
+
"MinimumCapacityUnits": {
|
|
784
|
+
"type": "integer",
|
|
785
|
+
"description": "The lower boundary of EC2 units. It is measured through "
|
|
786
|
+
"VCPU cores or instances for instance groups and measured "
|
|
787
|
+
"through units for instance fleets. Managed scaling "
|
|
788
|
+
"activities are not allowed beyond this boundary.",
|
|
789
|
+
"required": True,
|
|
790
|
+
},
|
|
791
|
+
"MaximumCapacityUnits": {
|
|
792
|
+
"type": "integer",
|
|
793
|
+
"description": "The upper boundary of EC2 units. It is measured through "
|
|
794
|
+
"VCPU cores or instances for instance groups and measured "
|
|
795
|
+
"through units for instance fleets. Managed scaling "
|
|
796
|
+
"activities are not allowed beyond this boundary.",
|
|
797
|
+
"required": True,
|
|
798
|
+
},
|
|
799
|
+
"MaximumOnDemandCapacityUnits": {
|
|
800
|
+
"type": "integer",
|
|
801
|
+
"description": "The upper boundary of on-demand EC2 units. It is measured through "
|
|
802
|
+
"VCPU cores or instances for instance groups and measured "
|
|
803
|
+
"through units for instance fleets. The on-demand units are not "
|
|
804
|
+
"allowed to scale beyond this boundary. "
|
|
805
|
+
"This value must be lower than MaximumCapacityUnits.",
|
|
806
|
+
},
|
|
807
|
+
"UnitType": {
|
|
808
|
+
"type": "string",
|
|
809
|
+
"description": "The unit type used for specifying a managed scaling policy.",
|
|
810
|
+
"enum": ["VCPU", "Instances", "InstanceFleetUnits"],
|
|
811
|
+
"required": True,
|
|
812
|
+
},
|
|
813
|
+
"MaximumCoreCapacityUnits": {
|
|
814
|
+
"type": "integer",
|
|
815
|
+
"description": "The upper boundary of EC2 units for core node type in a cluster. "
|
|
816
|
+
"It is measured through VCPU cores or instances for instance groups "
|
|
817
|
+
"and measured through units for instance fleets. "
|
|
818
|
+
"The core units are not allowed to scale beyond this boundary. "
|
|
819
|
+
"The parameter is used to split capacity allocation between core and task nodes.",
|
|
820
|
+
},
|
|
821
|
+
},
|
|
852
822
|
},
|
|
853
823
|
"ScalingStrategy": {
|
|
854
824
|
"type": "string",
|
|
855
825
|
"enum": ["DEFAULT", "ADVANCED"],
|
|
856
|
-
"description":
|
|
857
|
-
|
|
858
|
-
"Possible values include ADVANCED or DEFAULT."
|
|
826
|
+
"description": "Determines whether a custom scaling utilization performance index can be set. "
|
|
827
|
+
"Possible values include ADVANCED or DEFAULT.",
|
|
859
828
|
},
|
|
860
829
|
"UtilizationPerformanceIndex": {
|
|
861
830
|
"type": "integer",
|
|
862
|
-
"description":
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
}
|
|
831
|
+
"description": "An integer value that represents an advanced scaling strategy. "
|
|
832
|
+
"Setting a higher value optimizes for performance. "
|
|
833
|
+
"Setting a lower value optimizes for resource conservation. "
|
|
834
|
+
"Setting the value to 50 balances performance and resource conservation. "
|
|
835
|
+
"Possible values are 1, 25, 50, 75, and 100.",
|
|
836
|
+
},
|
|
837
|
+
},
|
|
870
838
|
}
|
|
871
839
|
|
|
872
840
|
PLACEMENT_GROUP_CONFIGS_SCHEMA = {
|
|
@@ -878,26 +846,69 @@ PLACEMENT_GROUP_CONFIGS_SCHEMA = {
|
|
|
878
846
|
"type": "string",
|
|
879
847
|
"description": "Role of the instance in the cluster.",
|
|
880
848
|
"enum": ["MASTER", "CORE", "TASK"],
|
|
881
|
-
"required": True
|
|
849
|
+
"required": True,
|
|
882
850
|
},
|
|
883
851
|
"PlacementStrategy": {
|
|
884
852
|
"type": "string",
|
|
885
853
|
"description": "EC2 Placement Group strategy associated "
|
|
886
|
-
|
|
887
|
-
"enum": ["SPREAD", "PARTITION", "CLUSTER", "NONE"]
|
|
888
|
-
}
|
|
889
|
-
}
|
|
890
|
-
}
|
|
854
|
+
"with instance role.",
|
|
855
|
+
"enum": ["SPREAD", "PARTITION", "CLUSTER", "NONE"],
|
|
856
|
+
},
|
|
857
|
+
},
|
|
858
|
+
},
|
|
891
859
|
}
|
|
892
860
|
|
|
893
861
|
AUTO_TERMINATION_POLICY_SCHEMA = {
|
|
894
862
|
"type": "object",
|
|
895
|
-
"properties":
|
|
863
|
+
"properties": {
|
|
896
864
|
"IdleTimeout": {
|
|
897
865
|
"type": "long",
|
|
898
|
-
"description":
|
|
899
|
-
|
|
900
|
-
|
|
866
|
+
"description": "Specifies the amount of idle time in seconds after which the cluster automatically terminates. "
|
|
867
|
+
"You can specify a minimum of 60 seconds and a maximum of 604800 seconds (seven days).",
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
MONITORING_CONFIGURATION_SCHEMA = {
|
|
873
|
+
"type": "object",
|
|
874
|
+
"properties": {
|
|
875
|
+
"CloudWatchLogConfiguration": {
|
|
876
|
+
"type": "object",
|
|
877
|
+
"description": "CloudWatch log configuration settings and metadata that specify settings like log files to monitor and where to send them.",
|
|
878
|
+
"properties": {
|
|
879
|
+
"Enabled": {
|
|
880
|
+
"type": "boolean",
|
|
881
|
+
"description": "Specifies if CloudWatch logging is enabled.",
|
|
882
|
+
"required": True
|
|
883
|
+
},
|
|
884
|
+
"LogGroupName": {
|
|
885
|
+
"type": "string",
|
|
886
|
+
"description": "The name of the CloudWatch log group where logs are published."
|
|
887
|
+
},
|
|
888
|
+
"LogStreamNamePrefix": {
|
|
889
|
+
"type": "string",
|
|
890
|
+
"description": "The prefix of the log stream name."
|
|
891
|
+
},
|
|
892
|
+
"EncryptionKeyArn": {
|
|
893
|
+
"type": "string",
|
|
894
|
+
"description": "The ARN of the encryption key used to encrypt the logs."
|
|
895
|
+
},
|
|
896
|
+
"LogTypes": {
|
|
897
|
+
"type": "map",
|
|
898
|
+
"key": {
|
|
899
|
+
"type": "string",
|
|
900
|
+
"description": "Log type category"
|
|
901
|
+
},
|
|
902
|
+
"value": {
|
|
903
|
+
"type": "array",
|
|
904
|
+
"items": {
|
|
905
|
+
"type": "string"
|
|
906
|
+
},
|
|
907
|
+
"description": "File names (STDOUT or STDERR) for the log type"
|
|
908
|
+
},
|
|
909
|
+
"description": "A map of log types to file names for publishing logs to the standard output or standard error streams for CloudWatch. Valid log types include STEP_LOGS, SPARK_DRIVER, and SPARK_EXECUTOR. Valid file names for each type include STDOUT and STDERR."
|
|
910
|
+
}
|
|
911
|
+
}
|
|
901
912
|
}
|
|
902
913
|
}
|
|
903
914
|
}
|