deleteDBRPIDWithHttpInfo method
Delete a database retention policy
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> deleteDBRPIDWithHttpInfo(
String dbrpID, {
String? zapTraceSpan,
String? orgID,
String? org,
}) async {
final path = r'/dbrps/{dbrpID}'.replaceAll('{dbrpID}', dbrpID);
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
if (orgID != null) {
queryParams
.addAll(_convertParametersForCollectionFormat('', 'orgID', orgID));
}
if (org != null) {
queryParams.addAll(_convertParametersForCollectionFormat('', 'org', org));
}
if (zapTraceSpan != null) {
headerParams[r'Zap-Trace-Span'] = parameterToString(zapTraceSpan);
}
const authNames = <String>[
'BasicAuthentication',
'QuerystringAuthentication',
'TokenAuthentication'
];
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'DELETE',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes[0],
authNames,
);
}