You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Boolean async =true; // Boolean | Perform the action in an asynchronous manner
41
+
String id ="id_example"; // String | ID of the enterprise data plane cluster
42
+
Boolean force =true; // Boolean | When provided with value: true - enterprise cluster will be deleted alongside all kafkas present on the cluster. When skipped and enterprise cluster has any kafkas associated with it, the request will fail.
43
+
try {
44
+
Error result = apiInstance.deleteEnterpriseClusterById(async, id, force);
45
+
System.out.println(result);
46
+
} catch (ApiException e) {
47
+
System.err.println("Exception when calling EnterpriseDataplaneClustersApi#deleteEnterpriseClusterById");
**async** | **Boolean**| Perform the action in an asynchronous manner |
63
+
**id** | **String**| ID of the enterprise data plane cluster |
64
+
**force** | **Boolean**| When provided with value: true - enterprise cluster will be deleted alongside all kafkas present on the cluster. When skipped and enterprise cluster has any kafkas associated with it, the request will fail. | [optional]
Copy file name to clipboardExpand all lines: packages/kafka-management-sdk/src/main/java/com/openshift/cloud/api/kas/EnterpriseDataplaneClustersApi.java
+53Lines changed: 53 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,59 @@ public void setApiClient(ApiClient apiClient) {
37
37
this.apiClient = apiClient;
38
38
}
39
39
40
+
/**
41
+
*
42
+
*
43
+
* @param async Perform the action in an asynchronous manner (required)
44
+
* @param id ID of the enterprise data plane cluster (required)
45
+
* @param force When provided with value: true - enterprise cluster will be deleted alongside all kafkas present on the cluster. When skipped and enterprise cluster has any kafkas associated with it, the request will fail. (optional)
0 commit comments