|
@@ -517,6 +517,7 @@ class AWSSnapshot(BaseSnapshot):
|
|
|
# ApiReference-cmd-DescribeSnapshots.html
|
|
# ApiReference-cmd-DescribeSnapshots.html
|
|
|
SNAPSHOT_STATE_MAP = {
|
|
SNAPSHOT_STATE_MAP = {
|
|
|
'pending': SnapshotState.PENDING,
|
|
'pending': SnapshotState.PENDING,
|
|
|
|
|
+ 'deleting': SnapshotState.PENDING,
|
|
|
'completed': SnapshotState.AVAILABLE,
|
|
'completed': SnapshotState.AVAILABLE,
|
|
|
'error': SnapshotState.ERROR
|
|
'error': SnapshotState.ERROR
|
|
|
}
|
|
}
|
|
@@ -624,7 +625,7 @@ class AWSKeyPair(BaseKeyPair):
|
|
|
:return: Unencrypted private key or ``None`` if not available.
|
|
:return: Unencrypted private key or ``None`` if not available.
|
|
|
|
|
|
|
|
"""
|
|
"""
|
|
|
- return self._key_pair.material
|
|
|
|
|
|
|
+ return self._key_pair.key_material
|
|
|
|
|
|
|
|
|
|
|
|
|
class AWSSecurityGroup(BaseSecurityGroup):
|
|
class AWSSecurityGroup(BaseSecurityGroup):
|