diff --git a/cinderclient/v2/volume_backups.py b/cinderclient/v2/volume_backups.py index 70fda6066..2a7a605a7 100644 --- a/cinderclient/v2/volume_backups.py +++ b/cinderclient/v2/volume_backups.py @@ -22,7 +22,6 @@ from cinderclient import base class VolumeBackup(base.Resource): """A volume backup is a block level backup of a volume.""" - NAME_ATTR = "display_name" def __repr__(self): return "" % self.id diff --git a/cinderclient/v2/volume_snapshots.py b/cinderclient/v2/volume_snapshots.py index 21ce24510..2c24ac1fe 100644 --- a/cinderclient/v2/volume_snapshots.py +++ b/cinderclient/v2/volume_snapshots.py @@ -26,7 +26,6 @@ from cinderclient import base class Snapshot(base.Resource): """A Snapshot is a point-in-time snapshot of an openstack volume.""" - NAME_ATTR = "display_name" def __repr__(self): return "" % self.id diff --git a/cinderclient/v2/volume_transfers.py b/cinderclient/v2/volume_transfers.py index a562c1500..633f2ac3d 100644 --- a/cinderclient/v2/volume_transfers.py +++ b/cinderclient/v2/volume_transfers.py @@ -27,7 +27,6 @@ from cinderclient import base class VolumeTransfer(base.Resource): """Transfer a volume from one tenant to another""" - NAME_ATTR = "display_name" def __repr__(self): return "" % self.id