deleteMachineScopeWithHttpInfo method
Delete a machine scope
Deletes a machine scope, removing access from one machine to another.
Note: This method returns the HTTP Response.
Parameters:
Implementation
Future<http.Response> deleteMachineScopeWithHttpInfo(
String machineId,
String otherMachineId,
) async {
// ignore: prefer_const_declarations
final path = r'/machines/{machine_id}/scopes/{other_machine_id}'
.replaceAll('{machine_id}', machineId)
.replaceAll('{other_machine_id}', otherMachineId);
// 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,
);
}