mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
395 lines
16 KiB
395 lines
16 KiB
{
|
|
"modules": {
|
|
"multi-tenancy": {
|
|
"rootPath": "multi-tenancy",
|
|
"remoteServiceName": "AbpTenantManagement",
|
|
"controllers": {
|
|
"Volo.Abp.TenantManagement.TenantController": {
|
|
"controllerName": "Tenant",
|
|
"controllerGroupName": "Tenant",
|
|
"type": "Volo.Abp.TenantManagement.TenantController",
|
|
"interfaces": [
|
|
{
|
|
"type": "Volo.Abp.TenantManagement.ITenantAppService"
|
|
}
|
|
],
|
|
"actions": {
|
|
"GetAsyncById": {
|
|
"uniqueName": "GetAsyncById",
|
|
"name": "GetAsync",
|
|
"httpMethod": "GET",
|
|
"url": "api/multi-tenancy/tenants/{id}",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "id",
|
|
"typeAsString": "System.Guid, System.Private.CoreLib",
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "id",
|
|
"name": "id",
|
|
"jsonName": null,
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": [],
|
|
"bindingSourceId": "Path",
|
|
"descriptorName": ""
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "Volo.Abp.TenantManagement.TenantDto",
|
|
"typeSimple": "Volo.Abp.TenantManagement.TenantDto"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService<Volo.Abp.TenantManagement.TenantDto,Volo.Abp.TenantManagement.TenantDto,System.Guid,Volo.Abp.TenantManagement.GetTenantsInput>"
|
|
},
|
|
"GetListAsyncByInput": {
|
|
"uniqueName": "GetListAsyncByInput",
|
|
"name": "GetListAsync",
|
|
"httpMethod": "GET",
|
|
"url": "api/multi-tenancy/tenants",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "input",
|
|
"typeAsString": "Volo.Abp.TenantManagement.GetTenantsInput, Volo.Abp.TenantManagement.Application.Contracts",
|
|
"type": "Volo.Abp.TenantManagement.GetTenantsInput",
|
|
"typeSimple": "Volo.Abp.TenantManagement.GetTenantsInput",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "input",
|
|
"name": "Filter",
|
|
"jsonName": null,
|
|
"type": "System.String",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": null,
|
|
"bindingSourceId": "ModelBinding",
|
|
"descriptorName": "input"
|
|
},
|
|
{
|
|
"nameOnMethod": "input",
|
|
"name": "Sorting",
|
|
"jsonName": null,
|
|
"type": "System.String",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": null,
|
|
"bindingSourceId": "ModelBinding",
|
|
"descriptorName": "input"
|
|
},
|
|
{
|
|
"nameOnMethod": "input",
|
|
"name": "SkipCount",
|
|
"jsonName": null,
|
|
"type": "System.Int32",
|
|
"typeSimple": "number",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": null,
|
|
"bindingSourceId": "ModelBinding",
|
|
"descriptorName": "input"
|
|
},
|
|
{
|
|
"nameOnMethod": "input",
|
|
"name": "MaxResultCount",
|
|
"jsonName": null,
|
|
"type": "System.Int32",
|
|
"typeSimple": "number",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": null,
|
|
"bindingSourceId": "ModelBinding",
|
|
"descriptorName": "input"
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "Volo.Abp.Application.Dtos.PagedResultDto<Volo.Abp.TenantManagement.TenantDto>",
|
|
"typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto<Volo.Abp.TenantManagement.TenantDto>"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.Application.Services.IReadOnlyAppService<Volo.Abp.TenantManagement.TenantDto,Volo.Abp.TenantManagement.TenantDto,System.Guid,Volo.Abp.TenantManagement.GetTenantsInput>"
|
|
},
|
|
"CreateAsyncByInput": {
|
|
"uniqueName": "CreateAsyncByInput",
|
|
"name": "CreateAsync",
|
|
"httpMethod": "POST",
|
|
"url": "api/multi-tenancy/tenants",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "input",
|
|
"typeAsString": "Volo.Abp.TenantManagement.TenantCreateDto, Volo.Abp.TenantManagement.Application.Contracts",
|
|
"type": "Volo.Abp.TenantManagement.TenantCreateDto",
|
|
"typeSimple": "Volo.Abp.TenantManagement.TenantCreateDto",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "input",
|
|
"name": "input",
|
|
"jsonName": null,
|
|
"type": "Volo.Abp.TenantManagement.TenantCreateDto",
|
|
"typeSimple": "Volo.Abp.TenantManagement.TenantCreateDto",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": null,
|
|
"bindingSourceId": "Body",
|
|
"descriptorName": ""
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "Volo.Abp.TenantManagement.TenantDto",
|
|
"typeSimple": "Volo.Abp.TenantManagement.TenantDto"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.Application.Services.ICreateAppService<Volo.Abp.TenantManagement.TenantDto,Volo.Abp.TenantManagement.TenantCreateDto>"
|
|
},
|
|
"UpdateAsyncByIdAndInput": {
|
|
"uniqueName": "UpdateAsyncByIdAndInput",
|
|
"name": "UpdateAsync",
|
|
"httpMethod": "PUT",
|
|
"url": "api/multi-tenancy/tenants/{id}",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "id",
|
|
"typeAsString": "System.Guid, System.Private.CoreLib",
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
},
|
|
{
|
|
"name": "input",
|
|
"typeAsString": "Volo.Abp.TenantManagement.TenantUpdateDto, Volo.Abp.TenantManagement.Application.Contracts",
|
|
"type": "Volo.Abp.TenantManagement.TenantUpdateDto",
|
|
"typeSimple": "Volo.Abp.TenantManagement.TenantUpdateDto",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "id",
|
|
"name": "id",
|
|
"jsonName": null,
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": [],
|
|
"bindingSourceId": "Path",
|
|
"descriptorName": ""
|
|
},
|
|
{
|
|
"nameOnMethod": "input",
|
|
"name": "input",
|
|
"jsonName": null,
|
|
"type": "Volo.Abp.TenantManagement.TenantUpdateDto",
|
|
"typeSimple": "Volo.Abp.TenantManagement.TenantUpdateDto",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": null,
|
|
"bindingSourceId": "Body",
|
|
"descriptorName": ""
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "Volo.Abp.TenantManagement.TenantDto",
|
|
"typeSimple": "Volo.Abp.TenantManagement.TenantDto"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.Application.Services.IUpdateAppService<Volo.Abp.TenantManagement.TenantDto,System.Guid,Volo.Abp.TenantManagement.TenantUpdateDto>"
|
|
},
|
|
"DeleteAsyncById": {
|
|
"uniqueName": "DeleteAsyncById",
|
|
"name": "DeleteAsync",
|
|
"httpMethod": "DELETE",
|
|
"url": "api/multi-tenancy/tenants/{id}",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "id",
|
|
"typeAsString": "System.Guid, System.Private.CoreLib",
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "id",
|
|
"name": "id",
|
|
"jsonName": null,
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": [],
|
|
"bindingSourceId": "Path",
|
|
"descriptorName": ""
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "System.Void",
|
|
"typeSimple": "System.Void"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.Application.Services.IDeleteAppService<System.Guid>"
|
|
},
|
|
"GetDefaultConnectionStringAsyncById": {
|
|
"uniqueName": "GetDefaultConnectionStringAsyncById",
|
|
"name": "GetDefaultConnectionStringAsync",
|
|
"httpMethod": "GET",
|
|
"url": "api/multi-tenancy/tenants/{id}/default-connection-string",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "id",
|
|
"typeAsString": "System.Guid, System.Private.CoreLib",
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "id",
|
|
"name": "id",
|
|
"jsonName": null,
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": [],
|
|
"bindingSourceId": "Path",
|
|
"descriptorName": ""
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "System.String",
|
|
"typeSimple": "string"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.TenantManagement.ITenantAppService"
|
|
},
|
|
"UpdateDefaultConnectionStringAsyncByIdAndDefaultConnectionString": {
|
|
"uniqueName": "UpdateDefaultConnectionStringAsyncByIdAndDefaultConnectionString",
|
|
"name": "UpdateDefaultConnectionStringAsync",
|
|
"httpMethod": "PUT",
|
|
"url": "api/multi-tenancy/tenants/{id}/default-connection-string",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "id",
|
|
"typeAsString": "System.Guid, System.Private.CoreLib",
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
},
|
|
{
|
|
"name": "defaultConnectionString",
|
|
"typeAsString": "System.String, System.Private.CoreLib",
|
|
"type": "System.String",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "id",
|
|
"name": "id",
|
|
"jsonName": null,
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": [],
|
|
"bindingSourceId": "Path",
|
|
"descriptorName": ""
|
|
},
|
|
{
|
|
"nameOnMethod": "defaultConnectionString",
|
|
"name": "defaultConnectionString",
|
|
"jsonName": null,
|
|
"type": "System.String",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": null,
|
|
"bindingSourceId": "ModelBinding",
|
|
"descriptorName": ""
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "System.Void",
|
|
"typeSimple": "System.Void"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.TenantManagement.ITenantAppService"
|
|
},
|
|
"DeleteDefaultConnectionStringAsyncById": {
|
|
"uniqueName": "DeleteDefaultConnectionStringAsyncById",
|
|
"name": "DeleteDefaultConnectionStringAsync",
|
|
"httpMethod": "DELETE",
|
|
"url": "api/multi-tenancy/tenants/{id}/default-connection-string",
|
|
"supportedVersions": [],
|
|
"parametersOnMethod": [
|
|
{
|
|
"name": "id",
|
|
"typeAsString": "System.Guid, System.Private.CoreLib",
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"nameOnMethod": "id",
|
|
"name": "id",
|
|
"jsonName": null,
|
|
"type": "System.Guid",
|
|
"typeSimple": "string",
|
|
"isOptional": false,
|
|
"defaultValue": null,
|
|
"constraintTypes": [],
|
|
"bindingSourceId": "Path",
|
|
"descriptorName": ""
|
|
}
|
|
],
|
|
"returnValue": {
|
|
"type": "System.Void",
|
|
"typeSimple": "System.Void"
|
|
},
|
|
"allowAnonymous": null,
|
|
"implementFrom": "Volo.Abp.TenantManagement.ITenantAppService"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"types": {}
|
|
} |