deleteFleet method

Future<void> deleteFleet({
  1. required String name,
})

Deletes the specified fleet.

May throw ConcurrentModificationException. May throw ResourceInUseException. May throw ResourceNotFoundException.

Parameter name : The name of the fleet.

Implementation

Future<void> deleteFleet({
  required String name,
}) async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'PhotonAdminProxyService.DeleteFleet'
  };
  await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'Name': name,
    },
  );
}