awscli 1.43.10__py3-none-any.whl → 1.43.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/argumentschema.py +44 -0
- awscli/customizations/emr/createcluster.py +12 -0
- awscli/customizations/emr/helptext.py +10 -0
- {awscli-1.43.10.dist-info → awscli-1.43.11.dist-info}/METADATA +2 -2
- {awscli-1.43.10.dist-info → awscli-1.43.11.dist-info}/RECORD +14 -14
- {awscli-1.43.10.data → awscli-1.43.11.data}/scripts/aws +0 -0
- {awscli-1.43.10.data → awscli-1.43.11.data}/scripts/aws.cmd +0 -0
- {awscli-1.43.10.data → awscli-1.43.11.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.43.10.data → awscli-1.43.11.data}/scripts/aws_completer +0 -0
- {awscli-1.43.10.data → awscli-1.43.11.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.43.10.dist-info → awscli-1.43.11.dist-info}/LICENSE.txt +0 -0
- {awscli-1.43.10.dist-info → awscli-1.43.11.dist-info}/WHEEL +0 -0
- {awscli-1.43.10.dist-info → awscli-1.43.11.dist-info}/top_level.txt +0 -0
awscli/__init__.py
CHANGED
|
@@ -868,3 +868,47 @@ AUTO_TERMINATION_POLICY_SCHEMA = {
|
|
|
868
868
|
}
|
|
869
869
|
},
|
|
870
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
|
+
}
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
}
|
|
@@ -212,6 +212,11 @@ class CreateCluster(Command):
|
|
|
212
212
|
'schema': argumentschema.AUTO_TERMINATION_POLICY_SCHEMA,
|
|
213
213
|
'help_text': helptext.AUTO_TERMINATION_POLICY,
|
|
214
214
|
},
|
|
215
|
+
{
|
|
216
|
+
'name': 'monitoring-configuration',
|
|
217
|
+
'schema': argumentschema.MONITORING_CONFIGURATION_SCHEMA,
|
|
218
|
+
'help_text': helptext.MONITORING_CONFIGURATION,
|
|
219
|
+
},
|
|
215
220
|
{
|
|
216
221
|
'name': 'extended-support',
|
|
217
222
|
'action': 'store_true',
|
|
@@ -553,6 +558,13 @@ class CreateCluster(Command):
|
|
|
553
558
|
parsed_args.auto_termination_policy,
|
|
554
559
|
)
|
|
555
560
|
|
|
561
|
+
if parsed_args.monitoring_configuration is not None:
|
|
562
|
+
emrutils.apply_dict(
|
|
563
|
+
params,
|
|
564
|
+
'MonitoringConfiguration',
|
|
565
|
+
parsed_args.monitoring_configuration,
|
|
566
|
+
)
|
|
567
|
+
|
|
556
568
|
self._validate_required_applications(parsed_args)
|
|
557
569
|
|
|
558
570
|
run_job_flow_response = emrutils.call(
|
|
@@ -570,3 +570,13 @@ UNHEALTHY_NODE_REPLACEMENT = (
|
|
|
570
570
|
)
|
|
571
571
|
|
|
572
572
|
EXTENDED_SUPPORT = '<p>Reserved.</p> '
|
|
573
|
+
|
|
574
|
+
MONITORING_CONFIGURATION = (
|
|
575
|
+
'<p>Monitoring configuration for an Amazon EMR cluster. '
|
|
576
|
+
'The configuration specifies CloudWatch logging settings for the cluster. '
|
|
577
|
+
'You can configure the CloudWatchLogConfiguration which includes '
|
|
578
|
+
'the Enabled flag (required), LogGroupName, LogStreamNamePrefix, '
|
|
579
|
+
'EncryptionKeyArn, and LogTypes. The LogTypes parameter is a map '
|
|
580
|
+
'of log type categories (e.g., "STEP_LOGS", "SPARK_DRIVER", '
|
|
581
|
+
'"SPARK_EXECUTOR") to a list of file names (e.g., "STDOUT", "STDERR").</p>'
|
|
582
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.43.
|
|
3
|
+
Version: 1.43.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
|
|
@@ -24,7 +24,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.14
|
|
25
25
|
Requires-Python: >= 3.9
|
|
26
26
|
License-File: LICENSE.txt
|
|
27
|
-
Requires-Dist: botocore (==1.42.
|
|
27
|
+
Requires-Dist: botocore (==1.42.5)
|
|
28
28
|
Requires-Dist: docutils (<=0.19,>=0.18.1)
|
|
29
29
|
Requires-Dist: s3transfer (<0.17.0,>=0.16.0)
|
|
30
30
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
awscli/__init__.py,sha256=
|
|
1
|
+
awscli/__init__.py,sha256=ztz6qdBe1yA-BYE2OoKfbnUDzdJvtkqnNKQ1TJ7OeJw,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
|
|
@@ -145,12 +145,12 @@ awscli/customizations/emr/addinstancegroups.py,sha256=TFKsjwLo26TQR25IpCr8sMh58j
|
|
|
145
145
|
awscli/customizations/emr/addsteps.py,sha256=2OXYlJ-bm2BH3mNSnQjgwz6HoB0cnUR7s_Y5zI_WPP8,2208
|
|
146
146
|
awscli/customizations/emr/addtags.py,sha256=IDWlPXXWdoVEVek7V-0SlZmOhJWxm-5HPCPmmUGHcPI,1089
|
|
147
147
|
awscli/customizations/emr/applicationutils.py,sha256=-SQQSlS4P8U4LjSKL9Bc6K7JD3pOMUaO2ADisgcEHko,6550
|
|
148
|
-
awscli/customizations/emr/argumentschema.py,sha256=
|
|
148
|
+
awscli/customizations/emr/argumentschema.py,sha256=p-KS6kgs2zcvPNKxgjG4Zm1Z7lC7jlQHgX9DoU7pcNg,42515
|
|
149
149
|
awscli/customizations/emr/command.py,sha256=pHxKJZR0FgGDopdmaxqpA1cZo1QogawHOxuu77vAV4U,5442
|
|
150
150
|
awscli/customizations/emr/config.py,sha256=0MEd3p302iy3Iw6YTVARRwfflYHoXyV6BSlZbG0kCHg,4761
|
|
151
151
|
awscli/customizations/emr/configutils.py,sha256=I7Hs_JFcrLUcXwVs4gHynaIZIk_oxBA7ADEYwkGAi60,2554
|
|
152
152
|
awscli/customizations/emr/constants.py,sha256=8npPsin-FCoYjAMP2TvJC9zDgd47UkgV8B6RH6cJYS8,6802
|
|
153
|
-
awscli/customizations/emr/createcluster.py,sha256=
|
|
153
|
+
awscli/customizations/emr/createcluster.py,sha256=Ctqkp6G2ufPX5pkJrv2vwwhF6pZbZa7B4oatm4mcgVM,30715
|
|
154
154
|
awscli/customizations/emr/createdefaultroles.py,sha256=N8OQs_JydAs7Cnk-A_FJlhHMsSSkqYCeumOFTnR-jIw,14009
|
|
155
155
|
awscli/customizations/emr/describecluster.py,sha256=TOphq9W3n50ps_u9lSYL8NXH8tLCotCvNn7Vqf_5hLI,4152
|
|
156
156
|
awscli/customizations/emr/emr.py,sha256=6O8CzyB4NVFzeql4mARxQODgdbNOWlsXf874KPhO6EI,3257
|
|
@@ -159,7 +159,7 @@ awscli/customizations/emr/emrutils.py,sha256=6oQBX1romvW3nDLRdjuPrQL4F-J7BE4mNAz
|
|
|
159
159
|
awscli/customizations/emr/exceptions.py,sha256=IgdFCsr1laiSuIRJjBYWViZR5HsmB1Tyar52InazWPY,10254
|
|
160
160
|
awscli/customizations/emr/hbase.py,sha256=ubr1r5CQiYGVDbv6CuV4ZKGOzuz7GDTG5WTD_u87K8M,9454
|
|
161
161
|
awscli/customizations/emr/hbaseutils.py,sha256=O-Dli_PHqv9_9JoKW-xKLcPN7h8y9-xdFsy51lS7gsg,953
|
|
162
|
-
awscli/customizations/emr/helptext.py,sha256=
|
|
162
|
+
awscli/customizations/emr/helptext.py,sha256=fzwTKkyLMMi5E3jW7tmCcL0wW4rkXFpfXzN8MHDvx08,29549
|
|
163
163
|
awscli/customizations/emr/installapplications.py,sha256=J6ff1k-KGX7pxLzrBhBdsfi_XU0D1bO_MUK8PzoCWOM,2879
|
|
164
164
|
awscli/customizations/emr/instancefleetsutils.py,sha256=JQl1CXR7bbp72O6RAcuHsCGBX3J2f61FNDj3tOdjWIA,3361
|
|
165
165
|
awscli/customizations/emr/instancegroupsutils.py,sha256=lO5pDKE1yY2NjCKsHGG1E479pP4b2YR8uvbAvJUizLg,3661
|
|
@@ -6061,13 +6061,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
|
6061
6061
|
awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
|
|
6062
6062
|
awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
|
|
6063
6063
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
6064
|
-
awscli-1.43.
|
|
6065
|
-
awscli-1.43.
|
|
6066
|
-
awscli-1.43.
|
|
6067
|
-
awscli-1.43.
|
|
6068
|
-
awscli-1.43.
|
|
6069
|
-
awscli-1.43.
|
|
6070
|
-
awscli-1.43.
|
|
6071
|
-
awscli-1.43.
|
|
6072
|
-
awscli-1.43.
|
|
6073
|
-
awscli-1.43.
|
|
6064
|
+
awscli-1.43.11.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
6065
|
+
awscli-1.43.11.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
6066
|
+
awscli-1.43.11.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
6067
|
+
awscli-1.43.11.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
6068
|
+
awscli-1.43.11.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
6069
|
+
awscli-1.43.11.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
6070
|
+
awscli-1.43.11.dist-info/METADATA,sha256=6rj1QN7SCHknt3BN5T8XWD4Xryi8uirZvB38Wy3a7_0,11200
|
|
6071
|
+
awscli-1.43.11.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
6072
|
+
awscli-1.43.11.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
6073
|
+
awscli-1.43.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
|