getDBRPsID method

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

Retrieve a database retention policy mapping

Parameters:

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

  • 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> getDBRPsID(String dbrpID,
    {String? zapTraceSpan, String? orgID, String? org}) async {
  final response = await getDBRPsIDWithHttpInfo(dbrpID,
      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));
}