Lines Matching refs:params

33      * $params['transform_id'] = (string) The id of the transform to delete
34 * $params['force'] = (boolean) When `true`, the transform is deleted regardless of its current state. The default value is `false`, meaning that the transform must be `stopped` before it can be deleted.
36 * @param array $params Associative array of parameters
43 public function deleteTransform(array $params = [])
45 $transform_id = $this->extractArgument($params, 'transform_id');
49 $endpoint->setParams($params);
57 * $params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms
58 * $params['from'] = (int) skips a number of transform configs, defaults to 0
59 * $params['size'] = (int) specifies a max number of transforms to get, defaults to 100
60 * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)
61 * $params['exclude_generated'] = (boolean) Omits generated fields. Allows transform configurations to be easily copied between clusters and within the same cluster (Default = false)
63 * @param array $params Associative array of parameters
70 public function getTransform(array $params = [])
72 $transform_id = $this->extractArgument($params, 'transform_id');
76 $endpoint->setParams($params);
84 * $params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all transforms
85 * $params['from'] = (number) skips a number of transform stats, defaults to 0
86 * $params['size'] = (number) specifies a max number of transform stats to get, defaults to 100
87 * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)
89 * @param array $params Associative array of parameters
96 public function getTransformStats(array $params = [])
98 $transform_id = $this->extractArgument($params, 'transform_id');
102 $endpoint->setParams($params);
110 * $params['body'] = (array) The definition for the transform to preview (Required)
112 * @param array $params Associative array of parameters
119 public function previewTransform(array $params = [])
121 $body = $this->extractArgument($params, 'body');
125 $endpoint->setParams($params);
133 * $params['transform_id'] = (string) The id of the new transform.
134 * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false.
135 * $params['body'] = (array) The transform definition (Required)
137 * @param array $params Associative array of parameters
144 public function putTransform(array $params = [])
146 $transform_id = $this->extractArgument($params, 'transform_id');
147 $body = $this->extractArgument($params, 'body');
151 $endpoint->setParams($params);
160 * $params['transform_id'] = (string) The id of the transform to start
161 * $params['timeout'] = (time) Controls the time to wait for the transform to start
163 * @param array $params Associative array of parameters
170 public function startTransform(array $params = [])
172 $transform_id = $this->extractArgument($params, 'transform_id');
176 $endpoint->setParams($params);
184 * $params['transform_id'] = (string) The id of the transform to stop
185 * $params['wait_for_completion'] = (boolean) Whether to wait for the transform to fully stop before returning or not. Default to false
186 * $params['timeout'] = (time) Controls the time to wait until the transform has stopped. Default to 30 seconds
187 * $params['allow_no_match'] = (boolean) Whether to ignore if a wildcard expression matches no transforms. (This includes `_all` string or when no transforms have been specified)
189 * @param array $params Associative array of parameters
196 public function stopTransform(array $params = [])
198 $transform_id = $this->extractArgument($params, 'transform_id');
202 $endpoint->setParams($params);
210 * $params['transform_id'] = (string) The id of the transform.
211 * $params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false.
212 * $params['body'] = (array) The update transform definition (Required)
214 * @param array $params Associative array of parameters
221 public function updateTransform(array $params = [])
223 $transform_id = $this->extractArgument($params, 'transform_id');
224 $body = $this->extractArgument($params, 'body');
228 $endpoint->setParams($params);