patchDBRPID method

Future<DBRPGet> patchDBRPID(
  1. String dbrpID,
  2. DBRPUpdate dBRPUpdate, {
  3. String? zapTraceSpan,
  4. String? orgID,
  5. String? org,
})

Update a database retention policy mapping

Parameters:

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

  • DBRPUpdate dBRPUpdate (required): Database retention policy update to apply

  • 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<DBRPGet> patchDBRPID(String dbrpID, DBRPUpdate dBRPUpdate,
    {String? zapTraceSpan, String? orgID, String? org}) async {
  final response = await patchDBRPIDWithHttpInfo(dbrpID, dBRPUpdate,
      zapTraceSpan: zapTraceSpan, orgID: orgID, org: org);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.statusCode != HttpStatus.noContent) {
    return await apiClient.deserializeAsync(
      await _decodeBodyBytes(response),
      'DBRPGet',
    ) as DBRPGet;
  }
  throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}