deleteProvisioningProfile method

Future<void> deleteProvisioningProfile({
  1. required String identifier,
})

Delete a provisioning profile.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ServiceUnavailableException. May throw ThrottlingException. May throw UnauthorizedException. May throw ValidationException.

Parameter identifier : The id of the provisioning profile.

Implementation

Future<void> deleteProvisioningProfile({
  required String identifier,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/provisioning-profiles/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
}