awscli 1.41.10__py3-none-any.whl → 1.41.11__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/customizations/emr/createcluster.py +508 -282
- awscli/customizations/emr/helptext.py +122 -74
- awscli/examples/emr/create-cluster-synopsis.txt +1 -0
- {awscli-1.41.10.dist-info → awscli-1.41.11.dist-info}/METADATA +2 -2
- {awscli-1.41.10.dist-info → awscli-1.41.11.dist-info}/RECORD +14 -14
- {awscli-1.41.10.data → awscli-1.41.11.data}/scripts/aws +0 -0
- {awscli-1.41.10.data → awscli-1.41.11.data}/scripts/aws.cmd +0 -0
- {awscli-1.41.10.data → awscli-1.41.11.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.41.10.data → awscli-1.41.11.data}/scripts/aws_completer +0 -0
- {awscli-1.41.10.data → awscli-1.41.11.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.41.10.dist-info → awscli-1.41.11.dist-info}/LICENSE.txt +0 -0
- {awscli-1.41.10.dist-info → awscli-1.41.11.dist-info}/WHEEL +0 -0
- {awscli-1.41.10.dist-info → awscli-1.41.11.dist-info}/top_level.txt +0 -0
@@ -11,8 +11,6 @@
|
|
11
11
|
# ANY KIND, either express or implied. See the License for the specific
|
12
12
|
# language governing permissions and limitations under the License.
|
13
13
|
|
14
|
-
from awscli.customizations.emr.createdefaultroles import EMR_ROLE_NAME
|
15
|
-
from awscli.customizations.emr.createdefaultroles import EC2_ROLE_NAME
|
16
14
|
|
17
15
|
TERMINATE_CLUSTERS = (
|
18
16
|
'Shuts down one or more clusters, each specified by cluster ID. '
|
@@ -27,28 +25,33 @@ TERMINATE_CLUSTERS = (
|
|
27
25
|
'The command is asynchronous. Depending on the '
|
28
26
|
'configuration of the cluster, it may take from 5 to 20 minutes for the '
|
29
27
|
'cluster to terminate completely and release allocated resources such as '
|
30
|
-
'Amazon EC2 instances.'
|
28
|
+
'Amazon EC2 instances.'
|
29
|
+
)
|
31
30
|
|
32
31
|
CLUSTER_ID = (
|
33
32
|
'<p>A unique string that identifies a cluster. The '
|
34
33
|
'<code>create-cluster</code> command returns this identifier. You can '
|
35
|
-
'use the <code>list-clusters</code> command to get cluster IDs.</p>'
|
34
|
+
'use the <code>list-clusters</code> command to get cluster IDs.</p>'
|
35
|
+
)
|
36
36
|
|
37
37
|
HBASE_BACKUP_DIR = (
|
38
38
|
'<p>The Amazon S3 location of the Hbase backup. Example: '
|
39
39
|
'<code>s3://mybucket/mybackup</code>, where <code>mybucket</code> is the '
|
40
40
|
'specified Amazon S3 bucket and mybackup is the specified backup '
|
41
41
|
'location. The path argument must begin with s3://, which '
|
42
|
-
'refers to an Amazon S3 bucket.</p>'
|
42
|
+
'refers to an Amazon S3 bucket.</p>'
|
43
|
+
)
|
43
44
|
|
44
45
|
HBASE_BACKUP_VERSION = (
|
45
46
|
'<p>The backup version to restore from. If not specified, the latest backup '
|
46
|
-
'in the specified location is used.</p>'
|
47
|
+
'in the specified location is used.</p>'
|
48
|
+
)
|
47
49
|
|
48
50
|
# create-cluster options help text
|
49
51
|
|
50
52
|
CREATE_CLUSTER_DESCRIPTION = (
|
51
|
-
'Creates an Amazon EMR cluster with the specified configurations.'
|
53
|
+
'Creates an Amazon EMR cluster with the specified configurations.'
|
54
|
+
)
|
52
55
|
|
53
56
|
DESCRIBE_CLUSTER_DESCRIPTION = (
|
54
57
|
'Provides cluster-level details including status, hardware '
|
@@ -58,22 +61,24 @@ DESCRIBE_CLUSTER_DESCRIPTION = (
|
|
58
61
|
'elasticmapreduce:ListBootstrapActions, '
|
59
62
|
'elasticmapreduce:ListInstanceFleets, '
|
60
63
|
'elasticmapreduce:DescribeCluster, '
|
61
|
-
'and elasticmapreduce:ListInstanceGroups.'
|
64
|
+
'and elasticmapreduce:ListInstanceGroups.'
|
65
|
+
)
|
62
66
|
|
63
|
-
CLUSTER_NAME =
|
64
|
-
'<p>The name of the cluster. If not provided, the default is "Development Cluster".</p>')
|
67
|
+
CLUSTER_NAME = '<p>The name of the cluster. If not provided, the default is "Development Cluster".</p>'
|
65
68
|
|
66
69
|
LOG_URI = (
|
67
70
|
'<p>Specifies the location in Amazon S3 to which log files '
|
68
71
|
'are periodically written. If a value is not provided, '
|
69
72
|
'logs files are not written to Amazon S3 from the master node '
|
70
|
-
'and are lost if the master node terminates.</p>'
|
73
|
+
'and are lost if the master node terminates.</p>'
|
74
|
+
)
|
71
75
|
|
72
76
|
LOG_ENCRYPTION_KMS_KEY_ID = (
|
73
77
|
'<p> Specifies the KMS Id utilized for log encryption. If a value is '
|
74
78
|
'not provided, log files will be encrypted by default encryption method '
|
75
79
|
'AES-256. This attribute is only available with EMR version 5.30.0 and later, '
|
76
|
-
'excluding EMR 6.0.0.</p>'
|
80
|
+
'excluding EMR 6.0.0.</p>'
|
81
|
+
)
|
77
82
|
|
78
83
|
SERVICE_ROLE = (
|
79
84
|
'<p>Specifies an IAM service role, which Amazon EMR requires to call other AWS services '
|
@@ -82,28 +87,32 @@ SERVICE_ROLE = (
|
|
82
87
|
'To specify the default service role, as well as the default instance '
|
83
88
|
'profile, use the <code>--use-default-roles</code> parameter. '
|
84
89
|
'If the role and instance profile do not already exist, use the '
|
85
|
-
'<code>aws emr create-default-roles</code> command to create them.</p>'
|
90
|
+
'<code>aws emr create-default-roles</code> command to create them.</p>'
|
91
|
+
)
|
86
92
|
|
87
93
|
AUTOSCALING_ROLE = (
|
88
94
|
'<p>Specify <code>--auto-scaling-role EMR_AutoScaling_DefaultRole</code>'
|
89
95
|
' if an automatic scaling policy is specified for an instance group'
|
90
96
|
' using the <code>--instance-groups</code> parameter. This default'
|
91
97
|
' IAM role allows the automatic scaling feature'
|
92
|
-
' to launch and terminate Amazon EC2 instances during scaling operations.</p>'
|
98
|
+
' to launch and terminate Amazon EC2 instances during scaling operations.</p>'
|
99
|
+
)
|
93
100
|
|
94
101
|
USE_DEFAULT_ROLES = (
|
95
102
|
'<p>Specifies that the cluster should use the default'
|
96
103
|
' service role (EMR_DefaultRole) and instance profile (EMR_EC2_DefaultRole)'
|
97
104
|
' for permissions to access other AWS services.</p>'
|
98
105
|
'<p>Make sure that the role and instance profile exist first. To create them,'
|
99
|
-
' use the <code>create-default-roles</code> command.</p>'
|
106
|
+
' use the <code>create-default-roles</code> command.</p>'
|
107
|
+
)
|
100
108
|
|
101
109
|
AMI_VERSION = (
|
102
110
|
'<p>Applies only to Amazon EMR release versions earlier than 4.0. Use'
|
103
111
|
' <code>--release-label</code> for 4.0 and later. Specifies'
|
104
112
|
' the version of Amazon Linux Amazon Machine Image (AMI)'
|
105
113
|
' to use when launching Amazon EC2 instances in the cluster.'
|
106
|
-
' For example, <code>--ami-version 3.1.0</code>.'
|
114
|
+
' For example, <code>--ami-version 3.1.0</code>.'
|
115
|
+
)
|
107
116
|
|
108
117
|
RELEASE_LABEL = (
|
109
118
|
'<p>Specifies the Amazon EMR release version, which determines'
|
@@ -115,12 +124,14 @@ RELEASE_LABEL = (
|
|
115
124
|
'<p>https://docs.aws.amazon.com/emr/latest/ReleaseGuide</p>'
|
116
125
|
'<p>Use <code>--release-label</code> only for Amazon EMR release version 4.0'
|
117
126
|
' and later. Use <code>--ami-version</code> for earlier versions.'
|
118
|
-
' You cannot specify both a release label and AMI version.</p>'
|
127
|
+
' You cannot specify both a release label and AMI version.</p>'
|
128
|
+
)
|
119
129
|
|
120
130
|
OS_RELEASE_LABEL = (
|
121
131
|
'<p>Specifies a particular Amazon Linux release for all nodes in a cluster'
|
122
|
-
' launch request. If a release is not specified, EMR uses the latest validated'
|
123
|
-
' Amazon Linux release for cluster launch.</p>'
|
132
|
+
' launch request. If a release is not specified, EMR uses the latest validated'
|
133
|
+
' Amazon Linux release for cluster launch.</p>'
|
134
|
+
)
|
124
135
|
|
125
136
|
CONFIGURATIONS = (
|
126
137
|
'<p>Specifies a JSON file that contains configuration classifications,'
|
@@ -134,7 +145,8 @@ CONFIGURATIONS = (
|
|
134
145
|
' file for an application, such as <code>yarn-site</code> for YARN. For a list of'
|
135
146
|
' available configuration classifications and example JSON, see'
|
136
147
|
' the following topic in the Amazon EMR Release Guide:</p>'
|
137
|
-
'<p>https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-configure-apps.html</p>'
|
148
|
+
'<p>https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-configure-apps.html</p>'
|
149
|
+
)
|
138
150
|
|
139
151
|
INSTANCE_GROUPS = (
|
140
152
|
'<p>Specifies the number and type of Amazon EC2 instances'
|
@@ -163,7 +175,8 @@ INSTANCE_GROUPS = (
|
|
163
175
|
'<li><code>[EbsConfiguration]</code> - Specifies additional Amazon EBS storage volumes attached'
|
164
176
|
' to EC2 instances using an inline JSON structure.</li>'
|
165
177
|
'<li><code>[AutoScalingPolicy]</code> - Specifies an automatic scaling policy for the'
|
166
|
-
' instance group using an inline JSON structure.</li>'
|
178
|
+
' instance group using an inline JSON structure.</li>'
|
179
|
+
)
|
167
180
|
|
168
181
|
INSTANCE_FLEETS = (
|
169
182
|
'<p>Applies only to Amazon EMR release version 5.0 and later. Specifies'
|
@@ -195,7 +208,8 @@ INSTANCE_FLEETS = (
|
|
195
208
|
'<li><code>InstanceTypeConfigs</code> - Specify up to five EC2 instance types to'
|
196
209
|
' use in the instance fleet, including details such as Spot price and Amazon EBS configuration.'
|
197
210
|
' When you use an On-Demand or Spot Instance allocation strategy,'
|
198
|
-
' you can specify up to 30 instance types per instance fleet.</li>'
|
211
|
+
' you can specify up to 30 instance types per instance fleet.</li>'
|
212
|
+
)
|
199
213
|
|
200
214
|
INSTANCE_TYPE = (
|
201
215
|
'<p>Shortcut parameter as an alternative to <code>--instance-groups</code>.'
|
@@ -204,18 +218,21 @@ INSTANCE_TYPE = (
|
|
204
218
|
' the cluster consists of a single master node running on the EC2 instance type'
|
205
219
|
' specified. When used together with <code>--instance-count</code>,'
|
206
220
|
' one instance is used for the master node, and the remainder'
|
207
|
-
' are used for the core node type.</p>'
|
221
|
+
' are used for the core node type.</p>'
|
222
|
+
)
|
208
223
|
|
209
224
|
INSTANCE_COUNT = (
|
210
225
|
'<p>Shortcut parameter as an alternative to <code>--instance-groups</code>'
|
211
226
|
' when used together with <code>--instance-type</code>. Specifies the'
|
212
227
|
' number of Amazon EC2 instances to create for a cluster.'
|
213
228
|
' One instance is used for the master node, and the remainder'
|
214
|
-
' are used for the core node type.</p>'
|
229
|
+
' are used for the core node type.</p>'
|
230
|
+
)
|
215
231
|
|
216
232
|
ADDITIONAL_INFO = (
|
217
233
|
'<p>Specifies additional information during cluster creation. To set development mode when starting your EMR cluster,'
|
218
|
-
' set this parameter to <code>{"clusterType":"development"}</code>.</p>'
|
234
|
+
' set this parameter to <code>{"clusterType":"development"}</code>.</p>'
|
235
|
+
)
|
219
236
|
|
220
237
|
EC2_ATTRIBUTES = (
|
221
238
|
'<p>Configures cluster and Amazon EC2 instance configurations. Accepts'
|
@@ -227,10 +244,10 @@ EC2_ATTRIBUTES = (
|
|
227
244
|
' For example, <code>us-west-1b</code>. <code>AvailabilityZone</code> is used for uniform instance groups,'
|
228
245
|
' while <code>AvailabilityZones</code> (plural) is used for instance fleets.</li>'
|
229
246
|
'<li><code>AvailabilityZones</code> - Applies to clusters that use the instance fleet configuration.'
|
230
|
-
' When multiple Availability Zones are specified, Amazon EMR evaluates them and launches instances'
|
247
|
+
' When multiple Availability Zones are specified, Amazon EMR evaluates them and launches instances'
|
231
248
|
' in the optimal Availability Zone. <code>AvailabilityZone</code> is used for uniform instance groups,'
|
232
249
|
' while <code>AvailabilityZones</code> (plural) is used for instance fleets.</li>'
|
233
|
-
'<li><code>SubnetId</code> - Applies to clusters that use the uniform instance group configuration.'
|
250
|
+
'<li><code>SubnetId</code> - Applies to clusters that use the uniform instance group configuration.'
|
234
251
|
' Specify the VPC subnet in which to create the cluster. <code>SubnetId</code> is used for uniform instance groups,'
|
235
252
|
' while <code>SubnetIds</code> (plural) is used for instance fleets.</li>'
|
236
253
|
'<li><code>SubnetIds</code> - Applies to clusters that use the instance fleet configuration.'
|
@@ -249,16 +266,19 @@ EC2_ATTRIBUTES = (
|
|
249
266
|
'<li><code>AdditionalMasterSecurityGroups</code> - A list of additional Amazon EC2'
|
250
267
|
' security group IDs for the master node.</li>'
|
251
268
|
'<li><code>AdditionalSlaveSecurityGroups</code> - A list of additional Amazon EC2'
|
252
|
-
' security group IDs for the slave nodes.</li>'
|
269
|
+
' security group IDs for the slave nodes.</li>'
|
270
|
+
)
|
253
271
|
|
254
272
|
AUTO_TERMINATE = (
|
255
273
|
'<p>Specifies whether the cluster should terminate after'
|
256
|
-
' completing all the steps. Auto termination is off by default.</p>'
|
274
|
+
' completing all the steps. Auto termination is off by default.</p>'
|
275
|
+
)
|
257
276
|
|
258
277
|
TERMINATION_PROTECTED = (
|
259
278
|
'<p>Specifies whether to lock the cluster to prevent the'
|
260
279
|
' Amazon EC2 instances from being terminated by API call,'
|
261
|
-
' user intervention, or an error.</p>'
|
280
|
+
' user intervention, or an error.</p>'
|
281
|
+
)
|
262
282
|
|
263
283
|
SCALE_DOWN_BEHAVIOR = (
|
264
284
|
'<p>Specifies the way that individual Amazon EC2 instances terminate'
|
@@ -276,7 +296,8 @@ VISIBILITY = (
|
|
276
296
|
' of the AWS account associated with the cluster. If a user'
|
277
297
|
' has the proper policy permissions set, they can also manage the cluster.</p>'
|
278
298
|
'<p>Visibility is on by default. The <code>--no-visible-to-all-users</code> option'
|
279
|
-
' is no longer supported. To restrict cluster visibility, use an IAM policy.</p>'
|
299
|
+
' is no longer supported. To restrict cluster visibility, use an IAM policy.</p>'
|
300
|
+
)
|
280
301
|
|
281
302
|
DEBUGGING = (
|
282
303
|
'<p>Specifies that the debugging tool is enabled for the cluster,'
|
@@ -284,7 +305,8 @@ DEBUGGING = (
|
|
284
305
|
' Turning debugging on requires that you specify <code>--log-uri</code>'
|
285
306
|
' because log files must be stored in Amazon S3 so that'
|
286
307
|
' Amazon EMR can index them for viewing in the console.'
|
287
|
-
' Effective January 23, 2023, Amazon EMR will discontinue the debugging tool for all versions.</p>'
|
308
|
+
' Effective January 23, 2023, Amazon EMR will discontinue the debugging tool for all versions.</p>'
|
309
|
+
)
|
288
310
|
|
289
311
|
TAGS = (
|
290
312
|
'<p>A list of tags to associate with a cluster, which apply to'
|
@@ -294,7 +316,8 @@ TAGS = (
|
|
294
316
|
' with a maximum of 256 characters.</p>'
|
295
317
|
'<p>You can specify tags in <code>key=value</code> format or you can add a'
|
296
318
|
' tag without a value using only the key name, for example <code>key</code>.'
|
297
|
-
' Use a space to separate multiple tags.</p>'
|
319
|
+
' Use a space to separate multiple tags.</p>'
|
320
|
+
)
|
298
321
|
|
299
322
|
BOOTSTRAP_ACTIONS = (
|
300
323
|
'<p>Specifies a list of bootstrap actions to run on each EC2 instance when'
|
@@ -317,7 +340,8 @@ BOOTSTRAP_ACTIONS = (
|
|
317
340
|
' to pass to the bootstrap action script. Arguments can be'
|
318
341
|
' either a list of values (<code>Args=arg1,arg2,arg3</code>)'
|
319
342
|
' or a list of key-value pairs, as well as optional values,'
|
320
|
-
' enclosed in square brackets (<code>Args=[arg1,arg2=arg2value,arg3])</li>.'
|
343
|
+
' enclosed in square brackets (<code>Args=[arg1,arg2=arg2value,arg3])</li>.'
|
344
|
+
)
|
321
345
|
|
322
346
|
APPLICATIONS = (
|
323
347
|
'<p>Specifies the applications to install on the cluster.'
|
@@ -329,7 +353,8 @@ APPLICATIONS = (
|
|
329
353
|
' some applications take optional arguments for configuration.'
|
330
354
|
' Arguments should either be a comma-separated list of values'
|
331
355
|
' (<code>Args=arg1,arg2,arg3</code>) or a bracket-enclosed list of values'
|
332
|
-
' and key-value pairs (<code>Args=[arg1,arg2=arg3,arg4]</code>).</p>'
|
356
|
+
' and key-value pairs (<code>Args=[arg1,arg2=arg3,arg4]</code>).</p>'
|
357
|
+
)
|
333
358
|
|
334
359
|
EMR_FS = (
|
335
360
|
'<p>Specifies EMRFS configuration options, such as consistent view'
|
@@ -340,13 +365,15 @@ EMR_FS = (
|
|
340
365
|
' to configure EMRFS, and use security configurations'
|
341
366
|
' to configure encryption for EMRFS data in Amazon S3 instead.'
|
342
367
|
' For more information, see the following topic in the Amazon EMR Management Guide:</p>'
|
343
|
-
'<p>https://docs.aws.amazon.com/emr/latest/ManagementGuide/emrfs-configure-consistent-view.html</p>'
|
368
|
+
'<p>https://docs.aws.amazon.com/emr/latest/ManagementGuide/emrfs-configure-consistent-view.html</p>'
|
369
|
+
)
|
344
370
|
|
345
371
|
RESTORE_FROM_HBASE = (
|
346
372
|
'<p>Applies only when using Amazon EMR release versions earlier than 4.0.'
|
347
373
|
' Launches a new HBase cluster and populates it with'
|
348
374
|
' data from a previous backup of an HBase cluster. HBase'
|
349
|
-
' must be installed using the <code>--applications</code> option.</p>'
|
375
|
+
' must be installed using the <code>--applications</code> option.</p>'
|
376
|
+
)
|
350
377
|
|
351
378
|
STEPS = (
|
352
379
|
'<p>Specifies a list of steps to be executed by the cluster. Steps run'
|
@@ -356,27 +383,32 @@ STEPS = (
|
|
356
383
|
' or by specifying an inline JSON structure. <code>Args</code> supplied with steps'
|
357
384
|
' should be a comma-separated list of values (<code>Args=arg1,arg2,arg3</code>) or'
|
358
385
|
' a bracket-enclosed list of values and key-value'
|
359
|
-
' pairs (<code>Args=[arg1,arg2=value,arg4</code>).</p>'
|
386
|
+
' pairs (<code>Args=[arg1,arg2=value,arg4</code>).</p>'
|
387
|
+
)
|
360
388
|
|
361
389
|
INSTALL_APPLICATIONS = (
|
362
390
|
'<p>The applications to be installed.'
|
363
391
|
' Takes the following parameters: '
|
364
|
-
'<code>Name</code> and <code>Args</code>.</p>'
|
392
|
+
'<code>Name</code> and <code>Args</code>.</p>'
|
393
|
+
)
|
365
394
|
|
366
395
|
EBS_ROOT_VOLUME_SIZE = (
|
367
396
|
'<p>This option is available only with Amazon EMR version 4.x and later. Specifies the size,'
|
368
397
|
' in GiB, of the EBS root device volume of the Amazon Linux AMI'
|
369
|
-
' that is used for each EC2 instance in the cluster. </p>'
|
398
|
+
' that is used for each EC2 instance in the cluster. </p>'
|
399
|
+
)
|
370
400
|
|
371
401
|
EBS_ROOT_VOLUME_IOPS = (
|
372
402
|
'<p>This option is available only with Amazon EMR version 6.15.0 and later. Specifies the IOPS,'
|
373
403
|
' of the EBS root device volume of the Amazon Linux AMI'
|
374
|
-
' that is used for each EC2 instance in the cluster. </p>'
|
404
|
+
' that is used for each EC2 instance in the cluster. </p>'
|
405
|
+
)
|
375
406
|
|
376
407
|
EBS_ROOT_VOLUME_THROUGHPUT = (
|
377
408
|
'<p>This option is available only with Amazon EMR version 6.15.0 and later. Specifies the throughput,'
|
378
409
|
' in MiB/s, of the EBS root device volume of the Amazon Linux AMI'
|
379
|
-
' that is used for each EC2 instance in the cluster. </p>'
|
410
|
+
' that is used for each EC2 instance in the cluster. </p>'
|
411
|
+
)
|
380
412
|
|
381
413
|
|
382
414
|
SECURITY_CONFIG = (
|
@@ -386,7 +418,8 @@ SECURITY_CONFIG = (
|
|
386
418
|
' the following topic in the Amazon EMR Management Guide:</p>'
|
387
419
|
'<p>https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-encryption-enable-security-configuration.html</p>'
|
388
420
|
'<p>Use <code>list-security-configurations</code> to get a list of available'
|
389
|
-
' security configurations in the active account.</p>'
|
421
|
+
' security configurations in the active account.</p>'
|
422
|
+
)
|
390
423
|
|
391
424
|
CUSTOM_AMI_ID = (
|
392
425
|
'<p>Applies only to Amazon EMR release version 5.7.0 and later.'
|
@@ -396,7 +429,8 @@ CUSTOM_AMI_ID = (
|
|
396
429
|
' can also be used instead of bootstrap actions to customize'
|
397
430
|
' cluster node configurations. For more information, see'
|
398
431
|
' the following topic in the Amazon EMR Management Guide:</p>'
|
399
|
-
'<p>https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-custom-ami.html</p>'
|
432
|
+
'<p>https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-custom-ami.html</p>'
|
433
|
+
)
|
400
434
|
|
401
435
|
REPO_UPGRADE_ON_BOOT = (
|
402
436
|
'<p>Applies only when a <code>--custom-ami-id</code> is'
|
@@ -405,24 +439,26 @@ REPO_UPGRADE_ON_BOOT = (
|
|
405
439
|
' before other services start. You can set this parameter'
|
406
440
|
' using <code>--rep-upgrade-on-boot NONE</code> to'
|
407
441
|
' disable these updates. CAUTION: This creates additional'
|
408
|
-
' security risks.</p>'
|
442
|
+
' security risks.</p>'
|
443
|
+
)
|
409
444
|
|
410
445
|
KERBEROS_ATTRIBUTES = (
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
446
|
+
'<p>Specifies required cluster attributes for Kerberos when Kerberos authentication'
|
447
|
+
' is enabled in the specified <code>--security-configuration</code>.'
|
448
|
+
' Takes the following arguments:</p>'
|
449
|
+
' <li><code>Realm</code> - Specifies the name of the Kerberos'
|
450
|
+
' realm to which all nodes in a cluster belong. For example,'
|
451
|
+
' <code>Realm=EC2.INTERNAL</code>.</li>'
|
452
|
+
' <li><code>KdcAdminPassword</code> - Specifies the password used within the cluster'
|
453
|
+
' for the kadmin service, which maintains Kerberos principals, password'
|
454
|
+
' policies, and keytabs for the cluster.</li>'
|
455
|
+
' <li><code>CrossRealmTrustPrincipalPassword</code> - Required when establishing a cross-realm trust'
|
456
|
+
' with a KDC in a different realm. This is the cross-realm principal password,'
|
457
|
+
' which must be identical across realms.</li>'
|
458
|
+
' <li><code>ADDomainJoinUser</code> - Required when establishing trust with an Active Directory'
|
459
|
+
' domain. This is the User logon name of an AD account with sufficient privileges to join resources to the domain.</li>'
|
460
|
+
' <li><code>ADDomainJoinPassword</code> - The AD password for <code>ADDomainJoinUser</code>.</li>'
|
461
|
+
)
|
426
462
|
|
427
463
|
# end create-cluster options help descriptions
|
428
464
|
|
@@ -437,7 +473,8 @@ LIST_CLUSTERS_CLUSTER_STATES = (
|
|
437
473
|
'<li><code>WAITING</code></li>'
|
438
474
|
'<li><code>TERMINATING</code></li>'
|
439
475
|
'<li><code>TERMINATED</code></li>'
|
440
|
-
'<li><code>TERMINATED_WITH_ERRORS</code></li>'
|
476
|
+
'<li><code>TERMINATED_WITH_ERRORS</code></li>'
|
477
|
+
)
|
441
478
|
|
442
479
|
LIST_CLUSTERS_STATE_FILTERS = (
|
443
480
|
'<p>Shortcut options for --cluster-states. The'
|
@@ -446,41 +483,50 @@ LIST_CLUSTERS_STATE_FILTERS = (
|
|
446
483
|
' are <code>STARTING</code>,<code>BOOTSTRAPPING</code>,'
|
447
484
|
' <code>RUNNING</code>, <code>WAITING</code>, or <code>TERMINATING</code>. </li>'
|
448
485
|
'<li><code>--terminated</code> - list only clusters that are <code>TERMINATED</code>. </li>'
|
449
|
-
'<li><code>--failed</code> - list only clusters that are <code>TERMINATED_WITH_ERRORS</code>.</li>'
|
486
|
+
'<li><code>--failed</code> - list only clusters that are <code>TERMINATED_WITH_ERRORS</code>.</li>'
|
487
|
+
)
|
450
488
|
|
451
489
|
LIST_CLUSTERS_CREATED_AFTER = (
|
452
490
|
'<p>List only those clusters created after the date and time'
|
453
491
|
' specified in the format yyyy-mm-ddThh:mm:ss. For example,'
|
454
|
-
' <code>--created-after 2017-07-04T00:01:30.</p>'
|
492
|
+
' <code>--created-after 2017-07-04T00:01:30.</p>'
|
493
|
+
)
|
455
494
|
|
456
495
|
LIST_CLUSTERS_CREATED_BEFORE = (
|
457
496
|
'<p>List only those clusters created before the date and time'
|
458
497
|
' specified in the format yyyy-mm-ddThh:mm:ss. For example,'
|
459
|
-
' <code>--created-before 2017-07-04T00:01:30.</p>'
|
498
|
+
' <code>--created-before 2017-07-04T00:01:30.</p>'
|
499
|
+
)
|
460
500
|
|
461
501
|
EMR_MANAGED_MASTER_SECURITY_GROUP = (
|
462
502
|
'<p>The identifier of the Amazon EC2 security group '
|
463
|
-
'for the master node.</p>'
|
503
|
+
'for the master node.</p>'
|
504
|
+
)
|
464
505
|
|
465
506
|
EMR_MANAGED_SLAVE_SECURITY_GROUP = (
|
466
507
|
'<p>The identifier of the Amazon EC2 security group '
|
467
|
-
'for the slave nodes.</p>'
|
508
|
+
'for the slave nodes.</p>'
|
509
|
+
)
|
468
510
|
|
469
511
|
SERVICE_ACCESS_SECURITY_GROUP = (
|
470
512
|
'<p>The identifier of the Amazon EC2 security group '
|
471
|
-
'for Amazon EMR to access clusters in VPC private subnets.</p>'
|
513
|
+
'for Amazon EMR to access clusters in VPC private subnets.</p>'
|
514
|
+
)
|
472
515
|
|
473
516
|
ADDITIONAL_MASTER_SECURITY_GROUPS = (
|
474
517
|
'<p> A list of additional Amazon EC2 security group IDs for '
|
475
|
-
'the master node</p>'
|
518
|
+
'the master node</p>'
|
519
|
+
)
|
476
520
|
|
477
521
|
ADDITIONAL_SLAVE_SECURITY_GROUPS = (
|
478
522
|
'<p>A list of additional Amazon EC2 security group IDs for '
|
479
|
-
'the slave nodes.</p>'
|
523
|
+
'the slave nodes.</p>'
|
524
|
+
)
|
480
525
|
|
481
526
|
AVAILABLE_ONLY_FOR_AMI_VERSIONS = (
|
482
527
|
'This command is only available when using Amazon EMR versions'
|
483
|
-
'earlier than 4.0.'
|
528
|
+
'earlier than 4.0.'
|
529
|
+
)
|
484
530
|
|
485
531
|
STEP_CONCURRENCY_LEVEL = (
|
486
532
|
'This command specifies the step concurrency level of the cluster.'
|
@@ -498,10 +544,10 @@ MANAGED_SCALING_POLICY = (
|
|
498
544
|
)
|
499
545
|
|
500
546
|
PLACEMENT_GROUP_CONFIGS = (
|
501
|
-
'<p>Placement group configuration for an Amazon EMR '
|
502
|
-
'cluster. The configuration specifies the EC2 placement group '
|
503
|
-
'strategy associated with each EMR Instance Role.</p> '
|
504
|
-
'<p>Currently, we support placement group only for <code>MASTER</code> '
|
547
|
+
'<p>Placement group configuration for an Amazon EMR '
|
548
|
+
'cluster. The configuration specifies the EC2 placement group '
|
549
|
+
'strategy associated with each EMR Instance Role.</p> '
|
550
|
+
'<p>Currently, we support placement group only for <code>MASTER</code> '
|
505
551
|
'role with <code>SPREAD</code> strategy by default. You can opt-in by '
|
506
552
|
'passing <code>--placement-group-configs InstanceRole=MASTER</code> '
|
507
553
|
'during cluster creation.</p>'
|
@@ -522,3 +568,5 @@ EXECUTION_ROLE_ARN = (
|
|
522
568
|
UNHEALTHY_NODE_REPLACEMENT = (
|
523
569
|
'<p>Unhealthy node replacement for an Amazon EMR cluster.</p> '
|
524
570
|
)
|
571
|
+
|
572
|
+
EXTENDED_SUPPORT = '<p>Reserved.</p> '
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: awscli
|
3
|
-
Version: 1.41.
|
3
|
+
Version: 1.41.11
|
4
4
|
Summary: Universal Command Line Environment for AWS.
|
5
5
|
Home-page: http://aws.amazon.com/cli/
|
6
6
|
Author: Amazon Web Services
|
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.13
|
24
24
|
Requires-Python: >= 3.9
|
25
25
|
License-File: LICENSE.txt
|
26
|
-
Requires-Dist: botocore (==1.39.
|
26
|
+
Requires-Dist: botocore (==1.39.11)
|
27
27
|
Requires-Dist: docutils (<=0.19,>=0.18.1)
|
28
28
|
Requires-Dist: s3transfer (<0.14.0,>=0.13.0)
|
29
29
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
awscli/__init__.py,sha256=
|
1
|
+
awscli/__init__.py,sha256=qF4Yua1bZrQiOPcdpxk-txhHZNUsobF8tbfaHQhXVjI,1534
|
2
2
|
awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
|
3
3
|
awscli/alias.py,sha256=Jj2jetpajUMcjqx9tFhHUOKpzLChQygnH2zqDFfmgIM,11315
|
4
4
|
awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
|
@@ -152,7 +152,7 @@ awscli/customizations/emr/command.py,sha256=pHxKJZR0FgGDopdmaxqpA1cZo1QogawHOxuu
|
|
152
152
|
awscli/customizations/emr/config.py,sha256=0MEd3p302iy3Iw6YTVARRwfflYHoXyV6BSlZbG0kCHg,4761
|
153
153
|
awscli/customizations/emr/configutils.py,sha256=I7Hs_JFcrLUcXwVs4gHynaIZIk_oxBA7ADEYwkGAi60,2554
|
154
154
|
awscli/customizations/emr/constants.py,sha256=8npPsin-FCoYjAMP2TvJC9zDgd47UkgV8B6RH6cJYS8,6802
|
155
|
-
awscli/customizations/emr/createcluster.py,sha256=
|
155
|
+
awscli/customizations/emr/createcluster.py,sha256=GLDeq5kYjd_6Ud-iFwnxovuAIUzpEzElXJfpvKEZhZ4,30286
|
156
156
|
awscli/customizations/emr/createdefaultroles.py,sha256=N8OQs_JydAs7Cnk-A_FJlhHMsSSkqYCeumOFTnR-jIw,14009
|
157
157
|
awscli/customizations/emr/describecluster.py,sha256=TOphq9W3n50ps_u9lSYL8NXH8tLCotCvNn7Vqf_5hLI,4152
|
158
158
|
awscli/customizations/emr/emr.py,sha256=6O8CzyB4NVFzeql4mARxQODgdbNOWlsXf874KPhO6EI,3257
|
@@ -161,7 +161,7 @@ awscli/customizations/emr/emrutils.py,sha256=6jmvPxk4t1zKd0tlOQ3JLR8FJ-xs0C77Wuv
|
|
161
161
|
awscli/customizations/emr/exceptions.py,sha256=IgdFCsr1laiSuIRJjBYWViZR5HsmB1Tyar52InazWPY,10254
|
162
162
|
awscli/customizations/emr/hbase.py,sha256=ubr1r5CQiYGVDbv6CuV4ZKGOzuz7GDTG5WTD_u87K8M,9454
|
163
163
|
awscli/customizations/emr/hbaseutils.py,sha256=O-Dli_PHqv9_9JoKW-xKLcPN7h8y9-xdFsy51lS7gsg,953
|
164
|
-
awscli/customizations/emr/helptext.py,sha256=
|
164
|
+
awscli/customizations/emr/helptext.py,sha256=hBSSA22TadglJsIu2Xo6dzawWM2SzSYjfx9p-TuYQQo,29016
|
165
165
|
awscli/customizations/emr/installapplications.py,sha256=J6ff1k-KGX7pxLzrBhBdsfi_XU0D1bO_MUK8PzoCWOM,2879
|
166
166
|
awscli/customizations/emr/instancefleetsutils.py,sha256=JQl1CXR7bbp72O6RAcuHsCGBX3J2f61FNDj3tOdjWIA,3361
|
167
167
|
awscli/customizations/emr/instancegroupsutils.py,sha256=lO5pDKE1yY2NjCKsHGG1E479pP4b2YR8uvbAvJUizLg,3661
|
@@ -2738,7 +2738,7 @@ awscli/examples/emr/add-instance-fleet.rst,sha256=86QceC6G-Xg_2SokLSEhO4rBpvSsh-
|
|
2738
2738
|
awscli/examples/emr/add-steps.rst,sha256=olWBzE0otGWhUrl5mkZd3P78xSj-xYzvrQVLm0yfgrs,4653
|
2739
2739
|
awscli/examples/emr/add-tags.rst,sha256=h35saPb_5aiRrzpGAyYsGQp8pDmd002-ouKr2sMOsck,648
|
2740
2740
|
awscli/examples/emr/create-cluster-examples.rst,sha256=bUgOHFMq48JyjyUePiRYPLZuD5mMed5KhlyHBdHY0i0,31458
|
2741
|
-
awscli/examples/emr/create-cluster-synopsis.txt,sha256=
|
2741
|
+
awscli/examples/emr/create-cluster-synopsis.txt,sha256=vK0rV8byMdS1nfkrD2ideh6Bx0i8C9GnWB-w5hvqswU,1397
|
2742
2742
|
awscli/examples/emr/create-default-roles.rst,sha256=pmYwkYa9HgK5Qn6VBFSL5SgWbyV9jNRDNmV_wE_TdKA,5688
|
2743
2743
|
awscli/examples/emr/create-security-configuration.rst,sha256=m3vxwRSYxuDRoIB33gFXxoiD03JKccb329eiE_K2byc,4003
|
2744
2744
|
awscli/examples/emr/delete-security-configuration.rst,sha256=ZYF4Mobofm9f523XbIWDOVqE46mW3KNoqAfEfMTTHmc,173
|
@@ -6180,13 +6180,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
6180
6180
|
awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
|
6181
6181
|
awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
|
6182
6182
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
6183
|
-
awscli-1.41.
|
6184
|
-
awscli-1.41.
|
6185
|
-
awscli-1.41.
|
6186
|
-
awscli-1.41.
|
6187
|
-
awscli-1.41.
|
6188
|
-
awscli-1.41.
|
6189
|
-
awscli-1.41.
|
6190
|
-
awscli-1.41.
|
6191
|
-
awscli-1.41.
|
6192
|
-
awscli-1.41.
|
6183
|
+
awscli-1.41.11.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
6184
|
+
awscli-1.41.11.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
6185
|
+
awscli-1.41.11.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
6186
|
+
awscli-1.41.11.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
6187
|
+
awscli-1.41.11.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
6188
|
+
awscli-1.41.11.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
6189
|
+
awscli-1.41.11.dist-info/METADATA,sha256=D_XBrqg7w-MB4TtFZATjK-wYTVumNRUH6a8FpKgwcco,11106
|
6190
|
+
awscli-1.41.11.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
6191
|
+
awscli-1.41.11.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
6192
|
+
awscli-1.41.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|