updateSystemConfiguration method

Updates the system configuration.

@param {SystemConfigurationRequest} request The request that contains all the new system configuration information. @returns {Promise<ClientResponse

Implementation

Future<ClientResponse<SystemConfigurationResponse, Errors>>
    updateSystemConfiguration(SystemConfigurationRequest request) {
  return _start<SystemConfigurationResponse, Errors>()
      .withUri('/api/system-configuration')
      .withJSONBody(request)
      .withMethod('PUT')
      .withResponseHandler(defaultResponseHandlerBuilder(
          (d) => SystemConfigurationResponse.fromJson(d)))
      .go();
}