deleteMachineScopeWithHttpInfo method

Future<Response> deleteMachineScopeWithHttpInfo(
  1. String machineId,
  2. String otherMachineId
)

Delete a machine scope

Deletes a machine scope, removing access from one machine to another.

Note: This method returns the HTTP Response.

Parameters:

  • String machineId (required): The ID of the machine that has access to another machine

  • String otherMachineId (required): The ID of the machine that is being accessed

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,
  );
}