Lines Matching defs:params

34      * @param array $params Associative array of parameters
38 public function delete(array $params = [])
43 $endpoint->setParams($params);
50 * $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false)
51 * $params['accept_enterprise'] = (boolean) If the active license is an enterprise license, return type as 'enterprise' (default: false)
53 * @param array $params Associative array of parameters
57 public function get(array $params = [])
62 $endpoint->setParams($params);
70 * @param array $params Associative array of parameters
74 public function getBasicStatus(array $params = [])
79 $endpoint->setParams($params);
87 * @param array $params Associative array of parameters
91 public function getTrialStatus(array $params = [])
96 $endpoint->setParams($params);
103 * $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false)
104 * $params['body'] = (array) licenses to be installed
106 * @param array $params Associative array of parameters
110 public function post(array $params = [])
112 $body = $this->extractArgument($params, 'body');
116 $endpoint->setParams($params);
124 * $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false)
126 * @param array $params Associative array of parameters
130 public function postStartBasic(array $params = [])
135 $endpoint->setParams($params);
142 * $params['type'] = (string) The type of trial license to generate (default: "trial")
143 * $params['acknowledge'] = (boolean) whether the user has acknowledged acknowledge messages (default: false)
145 * @param array $params Associative array of parameters
149 public function postStartTrial(array $params = [])
154 $endpoint->setParams($params);