addRule('range', [ 'type' => self::TYPE_STRING, 'description' => 'The time range of the usage stats.', 'default' => '', 'example' => '30d', ]) ->addRule('functionsExecutions', [ 'type' => Response::MODEL_METRIC_LIST, 'description' => 'Aggregated stats for function executions.', 'default' => [], 'example' => new \stdClass(), 'array' => true ]) ->addRule('functionsFailures', [ 'type' => Response::MODEL_METRIC_LIST, 'description' => 'Aggregated stats for function execution failures.', 'default' => [], 'example' => new \stdClass(), 'array' => true ]) ->addRule('functionsCompute', [ 'type' => Response::MODEL_METRIC_LIST, 'description' => 'Aggregated stats for function execution duration.', 'default' => [], 'example' => new \stdClass(), 'array' => true ]) ; } /** * Get Name * * @return string */ public function getName(): string { return 'UsageFunction'; } /** * Get Type * * @return string */ public function getType(): string { return Response::MODEL_USAGE_FUNCTION; } }