Name

global.SysClusterAjax

Description

Ajax functions around the sys_cluster_* tables

Script

var SysClusterAjax = Class.create();

SysClusterAjax.prototype =  Object.extendsObject(AbstractAjaxProcessor, {

runScript: function() {
  if (!gs.hasRole("admin")) {
      gs.log("Missing admin role, skipping");
      return;
  }

  var script = this.getParameter('sysparm_script');
  var node = this.getParameter('sysparm_node');

  GlideClusterMessage.postScript(script, node);         
},

isPublic: function() {
  return false;
},

type: "SysClusterAjax"
});

Sys ID

3cbcecfd3b320000be32a1b28ecf3d75

Offical Documentation

Official Docs: