(self, object: str, id: str)
| 110 | ) |
| 111 | |
| 112 | def delete(self, object: str, id: str) -> dict[str, Any]: |
| 113 | return get_result( |
| 114 | requests.delete( |
| 115 | f"{self.controlplane_api_url}/v1beta2/{object}/{id}", |
| 116 | headers=self.headers(), |
| 117 | ) |
| 118 | ) |
| 119 | |
| 120 | def get_cluster(self, cluster_info: dict[str, Any]) -> RedpandaCluster: |
| 121 | return RedpandaCluster(self.token, cluster_info["dataplane_api"]["url"]) |
nothing calls this directly
no test coverage detected