Methods |
public
|
deleteTransform(array $params = []): array
$params['transform_id'] = (string) The id of the transform to delete
$params['force'] = (boolean) When `true`,…
$params['transform_id'] = (string) The id of the transform to delete
$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.
Parameters
$params |
Associative array of parameters
|
|
#
|
public
|
getTransform(array $params = []): array
$params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all'…
$params['transform_id'] = (string) The id or comma delimited list of id expressions of the transforms to get, '_all' or '*' implies get all transforms
$params['from'] = (int) skips a number of transform configs, defaults to 0
$params['size'] = (int) specifies a max number of transforms to get, defaults to 100
$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)
Parameters
$params |
Associative array of parameters
|
|
#
|
public
|
getTransformStats(array $params = []): array
$params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all…
$params['transform_id'] = (string) The id of the transform for which to get stats. '_all' or '*' implies all transforms
$params['from'] = (number) skips a number of transform stats, defaults to 0
$params['size'] = (number) specifies a max number of transform stats to get, defaults to 100
$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)
Parameters
$params |
Associative array of parameters
|
|
#
|
public
|
previewTransform(array $params = [])
|
#
|
public
|
putTransform(array $params = []): array
$params['transform_id'] = (string) The id of the new transform.
$params['defer_validation'] = (boolean) If…
$params['transform_id'] = (string) The id of the new transform.
$params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false.
$params['body'] = (array) The transform definition (Required)
Parameters
$params |
Associative array of parameters
|
|
#
|
public
|
startTransform(array $params = []): array
$params['transform_id'] = (string) The id of the transform to start
$params['timeout'] = (time) Controls the time…
$params['transform_id'] = (string) The id of the transform to start
$params['timeout'] = (time) Controls the time to wait for the transform to start
Parameters
$params |
Associative array of parameters
|
|
#
|
public
|
stopTransform(array $params = []): array
$params['transform_id'] = (string) The id of the transform to stop
$params['wait_for_completion'] = (boolean)…
$params['transform_id'] = (string) The id of the transform to stop
$params['wait_for_completion'] = (boolean) Whether to wait for the transform to fully stop before returning or not. Default to false
$params['timeout'] = (time) Controls the time to wait until the transform has stopped. Default to 30 seconds
$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)
Parameters
$params |
Associative array of parameters
|
|
#
|
public
|
updateTransform(array $params = []): array
$params['transform_id'] = (string) The id of the transform.
$params['defer_validation'] = (boolean) If validations…
$params['transform_id'] = (string) The id of the transform.
$params['defer_validation'] = (boolean) If validations should be deferred until transform starts, defaults to false.
$params['body'] = (array) The update transform definition (Required)
Parameters
$params |
Associative array of parameters
|
|
#
|