| Index: third_party/gsutil/boto/boto/ec2/elb/instancestate.py
|
| diff --git a/third_party/gsutil/20110627/boto/boto/ec2/elb/instancestate.py b/third_party/gsutil/boto/boto/ec2/elb/instancestate.py
|
| similarity index 78%
|
| rename from third_party/gsutil/20110627/boto/boto/ec2/elb/instancestate.py
|
| rename to third_party/gsutil/boto/boto/ec2/elb/instancestate.py
|
| index 4a9b0d479a52af9d7ad6cd2629264d8cc3f113e9..37a4727ecfc1d7dcb5730dd0f1ef6a40dacf4478 100644
|
| --- a/third_party/gsutil/20110627/boto/boto/ec2/elb/instancestate.py
|
| +++ b/third_party/gsutil/boto/boto/ec2/elb/instancestate.py
|
| @@ -26,6 +26,17 @@ class InstanceState(object):
|
|
|
| def __init__(self, load_balancer=None, description=None,
|
| state=None, instance_id=None, reason_code=None):
|
| + """
|
| + :ivar boto.ec2.elb.loadbalancer.LoadBalancer load_balancer: The
|
| + load balancer this instance is registered to.
|
| + :ivar str description: A description of the instance.
|
| + :ivar str instance_id: The EC2 instance ID.
|
| + :ivar str reason_code: Provides information about the cause of
|
| + an OutOfService instance. Specifically, it indicates whether the
|
| + cause is Elastic Load Balancing or the instance behind the
|
| + LoadBalancer.
|
| + :ivar str state: Specifies the current state of the instance.
|
| + """
|
| self.load_balancer = load_balancer
|
| self.description = description
|
| self.state = state
|
|
|