Add iam.list_virtual_mfa_devices
This commit is contained in:
parent
c80135a6db
commit
1d9382b5e5
@ -3163,7 +3163,7 @@
|
||||
- [ ] describe_events
|
||||
|
||||
## iam
|
||||
60% implemented
|
||||
61% implemented
|
||||
- [ ] add_client_id_to_open_id_connect_provider
|
||||
- [X] add_role_to_instance_profile
|
||||
- [X] add_user_to_group
|
||||
@ -3268,7 +3268,7 @@
|
||||
- [X] list_user_policies
|
||||
- [ ] list_user_tags
|
||||
- [X] list_users
|
||||
- [ ] list_virtual_mfa_devices
|
||||
- [X] list_virtual_mfa_devices
|
||||
- [X] put_group_policy
|
||||
- [ ] put_role_permissions_boundary
|
||||
- [X] put_role_policy
|
||||
|
@ -53,6 +53,7 @@ class VirtualMfaDevice(object):
|
||||
|
||||
self.enable_date = None
|
||||
self.user_attribute = None
|
||||
self.user = None
|
||||
|
||||
@property
|
||||
def enabled_iso_8601(self):
|
||||
@ -1301,6 +1302,31 @@ class IAMBackend(BaseBackend):
|
||||
if not device:
|
||||
raise IAMNotFoundException('VirtualMFADevice with serial number {0} doesn\'t exist.'.format(serial_number))
|
||||
|
||||
def list_virtual_mfa_devices(self, assignment_status, marker, max_items):
|
||||
devices = list(self.virtual_mfa_devices.values())
|
||||
|
||||
if assignment_status == 'Assigned':
|
||||
devices = [device for device in devices if device.enable_date]
|
||||
|
||||
if assignment_status == 'Unassigned':
|
||||
devices = [device for device in devices if not device.enable_date]
|
||||
|
||||
sorted(devices, key=lambda device: device.serial_number)
|
||||
max_items = int(max_items)
|
||||
start_idx = int(marker) if marker else 0
|
||||
|
||||
if start_idx > len(devices):
|
||||
raise ValidationError('Invalid Marker.')
|
||||
|
||||
devices = devices[start_idx:start_idx + max_items]
|
||||
|
||||
if len(devices) < max_items:
|
||||
marker = None
|
||||
else:
|
||||
marker = str(start_idx + max_items)
|
||||
|
||||
return devices, marker
|
||||
|
||||
def delete_user(self, user_name):
|
||||
try:
|
||||
del self.users[user_name]
|
||||
|
@ -615,6 +615,16 @@ class IamResponse(BaseResponse):
|
||||
template = self.response_template(DELETE_VIRTUAL_MFA_DEVICE_TEMPLATE)
|
||||
return template.render()
|
||||
|
||||
def list_virtual_mfa_devices(self):
|
||||
assignment_status = self._get_param('AssignmentStatus', 'Any')
|
||||
marker = self._get_param('Marker')
|
||||
max_items = self._get_param('MaxItems', 100)
|
||||
|
||||
devices, marker = iam_backend.list_virtual_mfa_devices(assignment_status, marker, max_items)
|
||||
|
||||
template = self.response_template(LIST_VIRTUAL_MFA_DEVICES_TEMPLATE)
|
||||
return template.render(devices=devices, marker=marker)
|
||||
|
||||
def delete_user(self):
|
||||
user_name = self._get_param('UserName')
|
||||
iam_backend.delete_user(user_name)
|
||||
@ -1712,6 +1722,40 @@ DELETE_VIRTUAL_MFA_DEVICE_TEMPLATE = """<DeleteVirtualMFADeviceResponse xmlns="h
|
||||
</DeleteVirtualMFADeviceResponse>"""
|
||||
|
||||
|
||||
LIST_VIRTUAL_MFA_DEVICES_TEMPLATE = """<ListVirtualMFADevicesResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
|
||||
<ListVirtualMFADevicesResult>
|
||||
{% if marker is none %}
|
||||
<IsTruncated>false</IsTruncated>
|
||||
{% else %}
|
||||
<IsTruncated>true</IsTruncated>
|
||||
<Marker>{{ marker }}</Marker>
|
||||
{% endif %}
|
||||
<VirtualMFADevices>
|
||||
{% for device in devices %}
|
||||
<member>
|
||||
<SerialNumber>{{ device.serial_number }}</SerialNumber>
|
||||
{% if device.enable_date %}
|
||||
<EnableDate>{{ device.enabled_iso_8601 }}</EnableDate>
|
||||
{% endif %}
|
||||
{% if device.user %}
|
||||
<User>
|
||||
<Path>{{ user.path }}</Path>
|
||||
<UserName>{{ user.name }}</UserName>
|
||||
<UserId>{{ user.id }}</UserId>
|
||||
<CreateDate>{{ user.created_iso_8601 }}</CreateDate>
|
||||
<Arn>{{ user.arn }}</Arn>
|
||||
</User>
|
||||
{% endif %}
|
||||
</member>
|
||||
{% endfor %}
|
||||
</VirtualMFADevices>
|
||||
</ListVirtualMFADevicesResult>
|
||||
<ResponseMetadata>
|
||||
<RequestId>b61ce1b1-0401-11e1-b2f8-2dEXAMPLEbfc</RequestId>
|
||||
</ResponseMetadata>
|
||||
</ListVirtualMFADevicesResponse>"""
|
||||
|
||||
|
||||
LIST_ACCOUNT_ALIASES_TEMPLATE = """<ListAccountAliasesResponse xmlns="https://iam.amazonaws.com/doc/2010-05-08/">
|
||||
<ListAccountAliasesResult>
|
||||
<IsTruncated>false</IsTruncated>
|
||||
|
@ -812,6 +812,11 @@ def test_delete_virtual_mfa_device():
|
||||
SerialNumber=serial_number
|
||||
)
|
||||
|
||||
response = client.list_virtual_mfa_devices()
|
||||
|
||||
response['VirtualMFADevices'].should.have.length_of(0)
|
||||
response['IsTruncated'].should_not.be.ok
|
||||
|
||||
|
||||
@mock_iam
|
||||
def test_delete_virtual_mfa_device_errors():
|
||||
@ -826,6 +831,94 @@ def test_delete_virtual_mfa_device_errors():
|
||||
)
|
||||
|
||||
|
||||
@mock_iam
|
||||
def test_list_virtual_mfa_devices():
|
||||
client = boto3.client('iam', region_name='us-east-1')
|
||||
response = client.create_virtual_mfa_device(
|
||||
VirtualMFADeviceName='test-device'
|
||||
)
|
||||
serial_number_1 = response['VirtualMFADevice']['SerialNumber']
|
||||
|
||||
response = client.create_virtual_mfa_device(
|
||||
Path='/test/',
|
||||
VirtualMFADeviceName='test-device'
|
||||
)
|
||||
serial_number_2 = response['VirtualMFADevice']['SerialNumber']
|
||||
|
||||
response = client.list_virtual_mfa_devices()
|
||||
|
||||
response['VirtualMFADevices'].should.equal([
|
||||
{
|
||||
'SerialNumber': serial_number_1
|
||||
},
|
||||
{
|
||||
'SerialNumber': serial_number_2
|
||||
}
|
||||
])
|
||||
response['IsTruncated'].should_not.be.ok
|
||||
|
||||
response = client.list_virtual_mfa_devices(
|
||||
AssignmentStatus='Assigned'
|
||||
)
|
||||
|
||||
response['VirtualMFADevices'].should.have.length_of(0)
|
||||
response['IsTruncated'].should_not.be.ok
|
||||
|
||||
response = client.list_virtual_mfa_devices(
|
||||
AssignmentStatus='Unassigned'
|
||||
)
|
||||
|
||||
response['VirtualMFADevices'].should.equal([
|
||||
{
|
||||
'SerialNumber': serial_number_1
|
||||
},
|
||||
{
|
||||
'SerialNumber': serial_number_2
|
||||
}
|
||||
])
|
||||
response['IsTruncated'].should_not.be.ok
|
||||
|
||||
response = client.list_virtual_mfa_devices(
|
||||
AssignmentStatus='Any',
|
||||
MaxItems=1
|
||||
)
|
||||
|
||||
response['VirtualMFADevices'].should.equal([
|
||||
{
|
||||
'SerialNumber': serial_number_1
|
||||
}
|
||||
])
|
||||
response['IsTruncated'].should.be.ok
|
||||
response['Marker'].should.equal('1')
|
||||
|
||||
response = client.list_virtual_mfa_devices(
|
||||
AssignmentStatus='Any',
|
||||
Marker=response['Marker']
|
||||
)
|
||||
|
||||
response['VirtualMFADevices'].should.equal([
|
||||
{
|
||||
'SerialNumber': serial_number_2
|
||||
}
|
||||
])
|
||||
response['IsTruncated'].should_not.be.ok
|
||||
|
||||
|
||||
@mock_iam
|
||||
def test_list_virtual_mfa_devices_errors():
|
||||
client = boto3.client('iam', region_name='us-east-1')
|
||||
client.create_virtual_mfa_device(
|
||||
VirtualMFADeviceName='test-device'
|
||||
)
|
||||
|
||||
client.list_virtual_mfa_devices.when.called_with(
|
||||
Marker='100'
|
||||
).should.throw(
|
||||
ClientError,
|
||||
'Invalid Marker.'
|
||||
)
|
||||
|
||||
|
||||
@mock_iam_deprecated()
|
||||
def test_delete_user_deprecated():
|
||||
conn = boto.connect_iam()
|
||||
|
Loading…
Reference in New Issue
Block a user