Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Universal Controller supports the following CLI functions for Agents, which are listed alphabetically on this page.

  • Delete Agent
  • List Agents Status
  • Resume Agent
  • Resume Agent Cluster
  • Resume Agent Cluster Membership
  • Set Agent Cluster Task Execution Limit
  • Set Agent Task Execution Limit
  • Suspend Agent
  • Suspend Agent Cluster
  • Suspend Agent Cluster Membership

Syntax, parameters, and examples for each function are provided.

...

Description

Resumes the ability of the identified Agent Cluster to run tasks.

Syntax

uagcmd ops-resume-agent-cluster global parameters agent-cluster-name=name
 

Note
titleNote

For backward-compatibility, you can exclude uagcmd from the command line for this function and all pre-6.2.0.0 CLI functions.


Parameter

  • agent-cluster-name=
    Required; Agent cluster name of the Agent Cluster whose ability to run tasks is to be resumed.

Example


Panel
uagcmd ops-resume-agent-cluster -c config.cfg agent-cluster-name=cluster A


Anchor
ops-resume-agent-cluster-membership
ops-resume-agent-cluster-membership

Resume Agent Cluster Membership

Description

Resumes the membership of the identified Agent in the identified Agent Cluster.

Syntax

uagcmd ops-resume-agent-cluster-membership global parameters {agent-name=name | agent-id=ID} agent-cluster-name=name
 

Note
titleNote

For backward-compatibility, you can exclude uagcmd from the command line for this function and all pre-6.2.0.0 CLI functions.


Parameters

  • agent-name=
    Required if agent-id= is not specified; Agent name of the Agent whose membership in the Agent Cluster is to be resumed (agent-name= and agent-id= are mutually exclusive).
  • agent-id=
    Required if agent-name= is not specified; Agent ID of the Agent whose membership in the Agent Cluster is to be resumed (agent-id= and agent-name= are mutually exclusive).
  • agent-cluster-name=
    Required; Agent cluster name of the Agent Cluster in whose membership the identified Agent is to be resumed.

Example


Panel
uagcmd ops-resume-agent-cluster-membership -c config.cfg agent-name=agent A agent-cluster-name=cluster A


...