deleteDBRPID method

Future<void> deleteDBRPID(
  1. String dbrpID, {
  2. String? zapTraceSpan,
  3. String? orgID,
  4. String? org,
})

Delete a database retention policy

Parameters:

  • String dbrpID (required): The database retention policy mapping

  • String zapTraceSpan: OpenTracing span context

  • String orgID: Specifies the organization ID of the mapping

  • String org: Specifies the organization name of the mapping

Implementation

Future<void> deleteDBRPID(String dbrpID,
    {String? zapTraceSpan, String? orgID, String? org}) async {
  final response = await deleteDBRPIDWithHttpInfo(dbrpID,
      zapTraceSpan: zapTraceSpan, orgID: orgID, org: org);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}