addRule('range', [ 'type' => self::TYPE_STRING, 'description' => 'The time range of the usage stats.', 'default' => '', 'example' => '30d', ]) ->addRule('deploymentsTotal', [ 'type' => self::TYPE_INTEGER, 'description' => 'Aggregated total statistics of function deployments.', 'default' => 0, 'example' => 0, ]) ->addRule('deploymentsStorageTotal', [ 'type' => self::TYPE_INTEGER, 'description' => 'Aggregated total statistics of function deployments storage.', 'default' => 0, 'example' => 0, ]) ->addRule('buildsTotal', [ 'type' => self::TYPE_INTEGER, 'description' => 'Aggregated total statistics of function builds.', 'default' => 0, 'example' => 0, ]) ->addRule('buildsStorageTotal', [ 'type' => self::TYPE_INTEGER, 'description' => 'Aggregate total statistics of builds storage.', 'default' => 0, 'example' => 0, ]) ->addRule('buildsTimeTotal', [ 'type' => self::TYPE_INTEGER, 'description' => 'Aggregate total statistics of build compute time.', 'default' => 0, 'example' => 0, ]) ->addRule('executionsTotal', [ 'type' => self::TYPE_INTEGER, 'description' => 'Aggregated total statistics of executions.', 'default' => 0, 'example' => 0, ]) ->addRule('executionsTimeTotal', [ 'type' => self::TYPE_INTEGER, 'description' => 'Aggregated total statistics if execution compute time.', 'default' => 0, 'example' => 0, ]) ->addRule('deployments', [ 'type' => Response::MODEL_METRIC, 'description' => 'Aggregated statistics of deployments per time period.', 'default' => [], 'example' => [], 'array' => true ]) ->addRule('deploymentsStorage', [ 'type' => Response::MODEL_METRIC, 'description' => 'Aggregated statistics of deployment storage per time period.', 'default' => [], 'example' => [], 'array' => true ]) ->addRule('builds', [ 'type' => Response::MODEL_METRIC, 'description' => 'Aggregated statistics of builds per time period.', 'default' => [], 'example' => [], 'array' => true ]) ->addRule('buildsStorage', [ 'type' => Response::MODEL_METRIC, 'description' => 'Aggregated statistics of build storage per time period.', 'default' => [], 'example' => [], 'array' => true ]) ->addRule('buildsTime', [ 'type' => Response::MODEL_METRIC, 'description' => 'Aggregated statistics of build compute per time period.', 'default' => [], 'example' => [], 'array' => true ]) ->addRule('executions', [ 'type' => Response::MODEL_METRIC, 'description' => 'Aggregated statistics of executions per time period.', 'default' => [], 'example' => [], 'array' => true ]) ->addRule('executionsTime', [ 'type' => Response::MODEL_METRIC, 'description' => 'Aggregated statistics of executions compute per time period.', 'default' => [], 'example' => [], '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; } }