deletePolicyRuleWithHttpInfo method

Future<Response> deletePolicyRuleWithHttpInfo(
  1. int policyId,
  2. int ruleId
)

Delete rule

Delete a rule from a policy.

Note: This method returns the HTTP Response.

Parameters:

  • int policyId (required):

  • int ruleId (required):

Implementation

Future<Response> deletePolicyRuleWithHttpInfo(int policyId, int ruleId,) async {
  // ignore: prefer_const_declarations
  final path = r'/v1/policies/{policy_id}/rules/{rule_id}'
    .replaceAll('{policy_id}', policyId.toString())
    .replaceAll('{rule_id}', ruleId.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,
  );
}