(bundle_instance_id: str)
| 45 | |
| 46 | # For DELETE /{project_id}/bundle_instances/{bundle_instance_id} |
| 47 | async def delete_bundle_instance(bundle_instance_id: str): |
| 48 | headers = get_headers(CONFIG.Authentication) |
| 49 | async with aiohttp.ClientSession(headers=headers) as session: |
| 50 | request_url = f"{BUNDLE_INSTANCE_BASE_URL}/{bundle_instance_id}" |
| 51 | response = await session.delete(request_url) |
| 52 | return ResponseWrapper(response.status, await response.json()) |
| 53 | |
| 54 | |
| 55 | async def list_bundles(params: Dict): |