Пример #1
0
def api_node_group_read(request):
    """Process read requests for the /api/node_groups route."""
    
    return api_read_by_params(request, 'NodeGroup')
def api_tag_node_group_assignment_read(request):
    """Process read requests for the /api/tag_node_group_assignments route."""

    return api_read_by_params(request, 'TagNodeGroupAssignment')
Пример #3
0
def api_ec2_object_read(request):
    """Process read requests for the /api/ec2_objects route."""

    return api_read_by_params(request, 'Ec2')
Пример #4
0
def api_tag_read(request):
    """Process read requests for the /api/tags route."""

    return api_read_by_params(request, 'Tag')
Пример #5
0
def api_status_read(request):
    """Process read requests for the /api/statuses route."""

    return api_read_by_params(request, 'Status')
Пример #6
0
def api_hardware_profile_read(request):
    """Process read requests for the /api/hardware_profiles route."""

    return api_read_by_params(request, 'HardwareProfile')
Пример #7
0
def api_operating_system_read(request):

    return api_read_by_params(request, 'OperatingSystem')
def api_hypervisor_vm_assignment_read(request):
    """Process read requests for the /api/hypervisor_vm_assignments route."""

    return api_read_by_params(request, 'HypervisorVmAssignment')