getLaunchConfiguration method
Gets a LaunchConfiguration, filtered by Source Server IDs.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw UninitializedAccountException.
Parameter sourceServerID :
The ID of the Source Server that we want to retrieve a Launch
Configuration for.
Implementation
Future<LaunchConfiguration> getLaunchConfiguration({
required String sourceServerID,
}) async {
final $payload = <String, dynamic>{
'sourceServerID': sourceServerID,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/GetLaunchConfiguration',
exceptionFnMap: _exceptionFns,
);
return LaunchConfiguration.fromJson(response);
}