Is there a good reason for the [lazy](https://github.com/GoogleCloudPlatform/gcloud-python/blob/d51f29f39832d52a24b2b5dfdb4f882bf623f374/gcloud/storage/blob.py#L95-L99) loading [behavior](https://github.com/GoogleCloudPlatform/gcloud-python/blob/d51f29f39832d52a24b2b5dfdb4f882bf623f374/gcloud/storage/bucket.py#L127-L139), e.g. ``` python if self._acl is None: self._acl = ObjectACL(self) ``` This doesn't make any requests and just initializes a very lightweight object. I move to just create these in the constructor.