All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| pipelineconfigServiceDeleteTenantResources | DELETE /api/v3/resources/{tenant_id}/{resource} | Summary: Delete a tenant resource Description: Delete tenant specific resources such as data warehouse, mongo, postgres and s3. |
Pipelineconfigv3DeleteTenantResponse pipelineconfigServiceDeleteTenantResources()
import { createConfiguration, PipelineconfigServiceApi } from '';
import type { PipelineconfigServiceApiPipelineconfigServiceDeleteTenantResourcesRequest } from '';
const configuration = createConfiguration();
const apiInstance = new PipelineconfigServiceApi(configuration);
const request: PipelineconfigServiceApiPipelineconfigServiceDeleteTenantResourcesRequest = {
// unique tenant ID
tenantId: "tenant_id_example",
// resource specifies the specific resource to delete
resource: "resource_example",
};
const data = await apiInstance.pipelineconfigServiceDeleteTenantResources(request);
console.log('API called successfully. Returned data:', data);| Name | Type | Description | Notes |
|---|---|---|---|
| tenantId | [string] | unique tenant ID | defaults to undefined |
| resource | [string] | resource specifies the specific resource to delete | defaults to undefined |
Pipelineconfigv3DeleteTenantResponse
- Content-Type: Not defined
- Accept: application/json
| Status code | Description | Response headers |
|---|---|---|
| 200 | A successful response. | - |
| 0 | An unexpected error response. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]