getProvisioningProfile method

Future<GetProvisioningProfileResponse> getProvisioningProfile({
  1. required String identifier,
})

Get details of a provisioning profile.

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

Parameter identifier : The id of a provisioning profile.

Implementation

Future<GetProvisioningProfileResponse> getProvisioningProfile({
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/provisioning-profiles/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetProvisioningProfileResponse.fromJson(response);
}