Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Add deprecation notice to emr methods
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleknap committed Dec 9, 2015
1 parent 5afc068 commit 35cf100
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions boto/emr/connection.py
Expand Up @@ -96,6 +96,10 @@ def describe_cluster(self, cluster_id):

def describe_jobflow(self, jobflow_id):
"""
This method is deprecated. We recommend you use list_clusters,
describe_cluster, list_steps, list_instance_groups and
list_bootstrap_actions instead.
Describes a single Elastic MapReduce job flow
:type jobflow_id: str
Expand All @@ -108,6 +112,10 @@ def describe_jobflow(self, jobflow_id):
def describe_jobflows(self, states=None, jobflow_ids=None,
created_after=None, created_before=None):
"""
This method is deprecated. We recommend you use list_clusters,
describe_cluster, list_steps, list_instance_groups and
list_bootstrap_actions instead.
Retrieve all the Elastic MapReduce job flows on your account
:type states: list
Expand Down

0 comments on commit 35cf100

Please sign in to comment.