|
|
@@ -1506,10 +1506,6 @@ class GCEInternetGateway(BaseInternetGateway):
|
|
|
def name(self):
|
|
|
return self._gateway['name']
|
|
|
|
|
|
- @name.setter
|
|
|
- def name(self, value):
|
|
|
- raise NotImplementedError('Not supported by this provider.')
|
|
|
-
|
|
|
def refresh(self):
|
|
|
pass
|
|
|
|
|
|
@@ -1611,13 +1607,6 @@ class GCEVolume(BaseVolume):
|
|
|
"""
|
|
|
return self._volume.get('name')
|
|
|
|
|
|
- @name.setter
|
|
|
- def name(self, value):
|
|
|
- """
|
|
|
- Set the volume name.
|
|
|
- """
|
|
|
- raise NotImplementedError('Not supported by this provider.')
|
|
|
-
|
|
|
@property
|
|
|
def description(self):
|
|
|
labels = self._volume.get('labels')
|
|
|
@@ -1798,14 +1787,6 @@ class GCESnapshot(BaseSnapshot):
|
|
|
"""
|
|
|
return self._snapshot.get('name')
|
|
|
|
|
|
- @name.setter
|
|
|
- # pylint:disable=arguments-differ
|
|
|
- def name(self, value):
|
|
|
- """
|
|
|
- Set the snapshot name.
|
|
|
- """
|
|
|
- raise NotImplementedError('Not supported by this provider.')
|
|
|
-
|
|
|
@property
|
|
|
def description(self):
|
|
|
return self._snapshot.get('description')
|