# 账户与费用相关 url(r'^enterprise/(?P<team_name>[\w\-]+)/account/info$', EnterpriseAccountInfoView.as_view()), url(r'^enterprise/(?P<team_name>[\w\-]+)/team/fee', EnterpriseTeamFeeView.as_view()), # 数据中心相关 url(r'^enterprise/(?P<team_name>[\w\-]+)/regions$', PublicRegionListView.as_view()), url(r'^enterprise/(?P<team_name>[\w\-]+)/region/resource$', RegionResourceDetailView.as_view()), # 租户数据中心组信息 url(r'^teams/(?P<tenantName>[\w\-]+)/groups$', TenantGroupView.as_view()), url(r'^teams/(?P<tenantName>[\w\-]+)/groups/(?P<group_id>[\w\-]+)$', TenantGroupOperationView.as_view()), # git仓库对接 url(r'^teams/(?P<tenantName>[\w\-]+)/code_repo/github$', GithubCodeRepoView.as_view()), url(r'^teams/(?P<tenantName>[\w\-]+)/code_repo/gitlab$', GitlabCodeRepoView.as_view()), # 获取代码仓库 url(r'^teams/(?P<tenantName>[\w\-]+)/code_repo/branchs$', CodeBranchView.as_view()), # github回调地址 url(r'^github/callback$', GithubCallBackView.as_view()), # gitlab仓库用户创建 url(r'^gitlab/register$', GitLabUserRegisterView.as_view()), # url(r'^teams/(?P<tenantName>[\w\-]+)/gitlab/register$', GitLabUserRegisterView.as_view()), # 源码创建 url(r'^teams/(?P<tenantName>[\w\-]+)/apps/source_code$', SourceCodeCreateView.as_view()), # docker镜像创建 url(r'^teams/(?P<tenantName>[\w\-]+)/apps/docker_run$', DockerRunCreateView.as_view()), # docker-compose文件创建 url(r'^teams/(?P<tenantName>[\w\-]+)/apps/docker_compose$', DockerComposeCreateView.as_view()), # 应用检测 url(r'^teams/(?P<tenantName>[\w\-]+)/apps/(?P<serviceAlias>[\w\-]+)/check$', AppCheck.as_view()),
TenantGroupOperationView.as_view()), # 应用组状态(应用) url(r'^teams/(?P<tenantName>[\w\-]+)/groups/(?P<group_id>[\w\-]+)$', GroupStatusView.as_view()), # 应用(组)常见操作 url( r'^teams/(?P<tenantName>[\w\-]+)/groups/(?P<group_id>[\w\-]+)/common_operation$', TenantGroupCommonOperationView.as_view()), # git仓库对接 url(r'^teams/(?P<tenantName>[\w\-]+)/code_repo/github$', GithubCodeRepoView.as_view()), url(r'^teams/(?P<tenantName>[\w\-]+)/code_repo/gitlab$', GitlabCodeRepoView.as_view()), # 获取代码仓库 url(r'^teams/(?P<tenantName>[\w\-]+)/code_repo/branchs$', CodeBranchView.as_view()), # github回调地址 url(r'^github/callback$', GithubCallBackView.as_view()), # gitlab仓库用户创建 url(r'^gitlab/register$', GitLabUserRegisterView.as_view()), # url(r'^teams/(?P<tenantName>[\w\-]+)/gitlab/register$', GitLabUserRegisterView.as_view()), # 源码创建 url(r'^teams/(?P<tenantName>[\w\-]+)/apps/source_code$', SourceCodeCreateView.as_view()), # 三方服务创建 url(r'^teams/(?P<tenantName>[\w\-]+)/apps/third_party$', ThirdPartyServiceCreateView.as_view()), # 三方服务api注册方式回调地址 url(r'^third_party/(?P<service_id>[\w\-]+)',