EnterpriseAllRegionFeeView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/fee', EnterpriseTeamFeeView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/recharge-records$', EnterpriseRechargeRecordsView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/all-region-fee$', EnterpriseAllRegionFeeView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/purchase-detail$', EnterprisePurchaseDetails.as_view()), # 数据中心相关 url(r'^enterprise/regions$', PublicRegionListView.as_view()), url(r'^enterprise/region/resource$', RegionResourceDetailView.as_view()), url(r'^enterprise/regions/(?P<region_name>[\w\-]+)/res-price$', RegionResPrice.as_view()), url(r'^enterprise/regions/(?P<region_name>[\w\-]+)/purchase$', RegionResPurchage.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()), # 应用组状态(应用) 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$',
# 安装应用 # url(r'^teams/(?P<team_name>[\w\-]+)/service/install$', InstallServiceView.as_view()), # 账户与费用相关 url(r'^enterprise/account$', EnterpriseAccountInfoView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/all-region-fee$', EnterpriseAllRegionFeeView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/fee', EnterpriseTeamFeeView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/recharge-records$', EnterpriseRechargeRecordsView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/all-region-fee$', EnterpriseAllRegionFeeView.as_view()), url(r'^enterprise/team/(?P<team_name>[\w\-]+)/purchase-detail$', EnterprisePurchaseDetails.as_view()), # 数据中心相关 url(r'^enterprise/regions$', PublicRegionListView.as_view()), url(r'^enterprise/region/resource$', RegionResourceDetailView.as_view()), url(r'^enterprise/regions/(?P<region_name>[\w\-]+)/res-price$', RegionResPrice.as_view()), url(r'^enterprise/regions/(?P<region_name>[\w\-]+)/purchase$', RegionResPurchage.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()), # 应用组状态(应用) 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()),