aboutsummaryrefslogtreecommitdiffstats
path: root/api/urls.py
blob: 5c7e9f7b5ec2ff3508ae46a9e0525881e35875aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: itali
##############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
from __future__ import absolute_import

from api import Url


urlpatterns = [
    Url('/yardstick/asynctask', 'v1_async_task'),
    Url('/yardstick/testcases', 'v1_test_case'),
    Url('/yardstick/testcases/release/action', 'v1_release_case'),
    Url('/yardstick/testcases/samples/action', 'v1_sample_case'),
    Url('/yardstick/testcases/<case_name>/docs', 'v1_case_docs'),
    Url('/yardstick/testsuites/action', 'v1_test_suite'),
    Url('/yardstick/results', 'v1_result'),
    Url('/yardstick/env/action', 'v1_env'),

    # api v2
    Url('/api/v2/yardstick/environments', 'v2_environments'),
    Url('/api/v2/yardstick/environments/action', 'v2_environments'),
    Url('/api/v2/yardstick/environments/<environment_id>', 'v2_environment'),

    Url('/api/v2/yardstick/openrcs/action', 'v2_openrcs'),
    Url('/api/v2/yardstick/openrcs/<openrc_id>', 'v2_openrc'),

    Url('/api/v2/yardstick/pods/action', 'v2_pods'),
    Url('/api/v2/yardstick/pods/<pod_id>', 'v2_pod'),

    Url('/api/v2/yardstick/images', 'v2_images'),
    Url('/api/v2/yardstick/images/action', 'v2_images'),

    Url('/api/v2/yardstick/containers/action', 'v2_containers'),
    Url('/api/v2/yardstick/containers/<container_id>', 'v2_container'),

    Url('/api/v2/yardstick/projects', 'v2_projects'),
    Url('/api/v2/yardstick/projects/action', 'v2_projects'),
    Url('/api/v2/yardstick/projects/<project_id>', 'v2_project'),

    Url('/api/v2/yardstick/tasks', 'v2_tasks'),
    Url('/api/v2/yardstick/tasks/action', 'v2_tasks'),
    Url('/api/v2/yardstick/tasks/<task_id>', 'v2_task'),

    Url('/api/v2/yardstick/testcases', 'v2_testcases'),
    Url('/api/v2/yardstick/testcases/action', 'v2_testcases'),
    Url('/api/v2/yardstick/testcases/<case_name>', 'v2_testcase'),

    Url('/api/v2/yardstick/testsuites', 'v2_testsuites'),
    Url('/api/v2/yardstick/testsuites/action', 'v2_testsuites'),
    Url('/api/v2/yardstick/testsuites/<suite_name>', 'v2_testsuites')
]