Beispiel #1
0
def api_node_groups_delete_id(request):
    """Process delete requests for the /api/node_groups/{id} route."""

    return api_delete_by_id(request, 'NodeGroup')
def api_tag_node_group_assignments_delete_id(request):
    """Process delete requests for the /api/tag_node_group_assignments/{id} route."""

    return api_delete_by_id(request, 'TagNodeGroupAssignment')
Beispiel #3
0
def api_ec2_objects_delete_id(request):
    """Process delete requests for the /api/ec2_objects/{id} route."""

    return api_delete_by_id(request, 'Ec2')
Beispiel #4
0
def api_tags_delete_id(request):
    """Process delete requests for the /api/tags/{id} route."""

    return api_delete_by_id(request, 'Tag')
Beispiel #5
0
def api_statuses_delete_id(request):
    """Process delete requests for the /api/statuses/{id} route."""

    return api_delete_by_id(request, 'Status')
def api_hardware_profiles_delete_id(request):
    """Process delete requests for the /api/hardware_profiles/{id} route."""

    return api_delete_by_id(request, 'HardwareProfile')
def api_operating_systems_delete_id(request):
    """Process delete requests for the /api/operating_systems/{id} route."""

    return api_delete_by_id(request, 'OperatingSystem')
def api_hypervisor_vm_assignments_delete_id(request):
    """Process delete requests for the /api/hypervisor_vm_assignments/{id} route."""

    return api_delete_by_id(request, 'HypervisorVmAssignment')