def execute(self, context):
     hook = GoogleCloudStorageHook(
         google_cloud_storage_conn_id=self.google_cloud_storage_conn_id)
     hook.insert_bucket_acl(bucket_name=self.bucket,
                            entity=self.entity,
                            role=self.role,
                            user_project=self.user_project)
 def execute(self, context):
     hook = GoogleCloudStorageHook(
         google_cloud_storage_conn_id=self.google_cloud_storage_conn_id
     )
     hook.insert_bucket_acl(bucket=self.bucket, entity=self.entity, role=self.role,
                            user_project=self.user_project)