getServiceSettings method

Future<GetServiceSettingsResponse> getServiceSettings()

Lists the Linux subscriptions service settings for your account.

May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Implementation

Future<GetServiceSettingsResponse> getServiceSettings() async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/subscription/GetServiceSettings',
    exceptionFnMap: _exceptionFns,
  );
  return GetServiceSettingsResponse.fromJson(response);
}