deletePolicyWithHttpInfo method
Delete policy
Delete a policy and all its rules.
Note: This method returns the HTTP Response.
Parameters:
- int policyId (required):
Implementation
Future<Response> deletePolicyWithHttpInfo(int policyId,) async {
// ignore: prefer_const_declarations
final path = r'/v1/policies/{policy_id}'
.replaceAll('{policy_id}', policyId.toString());
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'DELETE',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}