Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.23
0.3.24
214 changes: 214 additions & 0 deletions src/UAIModelverse/Apis/DownloadUMInferRequestLogRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
<?php
/**
* Copyright 2026 UCloud Technology Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace UCloud\UAIModelverse\Apis;

use UCloud\Core\Request\Request;

class DownloadUMInferRequestLogRequest extends Request
{
public function __construct()
{
parent::__construct(["Action" => "DownloadUMInferRequestLog"]);
$this->markRequired("Region");
$this->markRequired("Zone");
$this->markRequired("StartTime");
$this->markRequired("EndTime");
$this->markRequired("Email");
}



/**
* Region: 业务地域,如 cn-wlcb。可先调用 ListUMInferRegions 获取可选地域
*
* @return string|null
*/
public function getRegion()
{
return $this->get("Region");
}

/**
* Region: 业务地域,如 cn-wlcb。可先调用 ListUMInferRegions 获取可选地域
*
* @param string $region
*/
public function setRegion($region)
{
$this->set("Region", $region);
}

/**
* Zone: 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
*
* @return string|null
*/
public function getZone()
{
return $this->get("Zone");
}

/**
* Zone: 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
*
* @param string $zone
*/
public function setZone($zone)
{
$this->set("Zone", $zone);
}

/**
* ProjectId: 项目ID。不填写为默认项目,子帐号必须填写。请参考 [GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
*
* @return string|null
*/
public function getProjectId()
{
return $this->get("ProjectId");
}

/**
* ProjectId: 项目ID。不填写为默认项目,子帐号必须填写。请参考 [GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
*
* @param string $projectId
*/
public function setProjectId($projectId)
{
$this->set("ProjectId", $projectId);
}

/**
* StartTime: 导出开始时间,Unix 毫秒时间戳
*
* @return integer|null
*/
public function getStartTime()
{
return $this->get("StartTime");
}

/**
* StartTime: 导出开始时间,Unix 毫秒时间戳
*
* @param int $startTime
*/
public function setStartTime($startTime)
{
$this->set("StartTime", $startTime);
}

/**
* EndTime: 导出结束时间,Unix 毫秒时间戳,最长支持 30 天范围
*
* @return integer|null
*/
public function getEndTime()
{
return $this->get("EndTime");
}

/**
* EndTime: 导出结束时间,Unix 毫秒时间戳,最长支持 30 天范围
*
* @param int $endTime
*/
public function setEndTime($endTime)
{
$this->set("EndTime", $endTime);
}

/**
* Email: 接收导出结果的邮箱地址
*
* @return string|null
*/
public function getEmail()
{
return $this->get("Email");
}

/**
* Email: 接收导出结果的邮箱地址
*
* @param string $email
*/
public function setEmail($email)
{
$this->set("Email", $email);
}

/**
* ModelNames: 模型名称列表,用于过滤
*
* @return string[]|null
*/
public function getModelNames()
{
return $this->get("ModelNames");
}

/**
* ModelNames: 模型名称列表,用于过滤
*
* @param string[] $modelNames
*/
public function setModelNames(array $modelNames)
{
$this->set("ModelNames", $modelNames);
}

/**
* ApiKeyIds: API Key ID 列表,用于过滤
*
* @return string[]|null
*/
public function getApiKeyIds()
{
return $this->get("ApiKeyIds");
}

/**
* ApiKeyIds: API Key ID 列表,用于过滤
*
* @param string[] $apiKeyIds
*/
public function setApiKeyIds(array $apiKeyIds)
{
$this->set("ApiKeyIds", $apiKeyIds);
}

/**
* RequestId: 请求 ID,用于精确过滤
*
* @return string|null
*/
public function getRequestId()
{
return $this->get("RequestId");
}

/**
* RequestId: 请求 ID,用于精确过滤
*
* @param string $requestId
*/
public function setRequestId($requestId)
{
$this->set("RequestId", $requestId);
}
}
64 changes: 64 additions & 0 deletions src/UAIModelverse/Apis/DownloadUMInferRequestLogResponse.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<?php
/**
* Copyright 2026 UCloud Technology Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace UCloud\UAIModelverse\Apis;

use UCloud\Core\Response\Response;

class DownloadUMInferRequestLogResponse extends Response
{


/**
* TaskId: 导出任务 ID
*
* @return string|null
*/
public function getTaskId()
{
return $this->get("TaskId");
}

/**
* TaskId: 导出任务 ID
*
* @param string $taskId
*/
public function setTaskId($taskId)
{
$this->set("TaskId", $taskId);
}

/**
* TotalCount: 本次导出查询命中的日志行数
*
* @return integer|null
*/
public function getTotalCount()
{
return $this->get("TotalCount");
}

/**
* TotalCount: 本次导出查询命中的日志行数
*
* @param int $totalCount
*/
public function setTotalCount($totalCount)
{
$this->set("TotalCount", $totalCount);
}
}
112 changes: 112 additions & 0 deletions src/UAIModelverse/Apis/GetUFSquareModelDetailRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
<?php
/**
* Copyright 2026 UCloud Technology Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace UCloud\UAIModelverse\Apis;

use UCloud\Core\Request\Request;

class GetUFSquareModelDetailRequest extends Request
{
public function __construct()
{
parent::__construct(["Action" => "GetUFSquareModelDetail"]);
$this->markRequired("Region");
$this->markRequired("Zone");
$this->markRequired("Id");
}



/**
* Region: 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
*
* @return string|null
*/
public function getRegion()
{
return $this->get("Region");
}

/**
* Region: 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
*
* @param string $region
*/
public function setRegion($region)
{
$this->set("Region", $region);
}

/**
* Zone: 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
*
* @return string|null
*/
public function getZone()
{
return $this->get("Zone");
}

/**
* Zone: 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
*
* @param string $zone
*/
public function setZone($zone)
{
$this->set("Zone", $zone);
}

/**
* ProjectId: 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
*
* @return string|null
*/
public function getProjectId()
{
return $this->get("ProjectId");
}

/**
* ProjectId: 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
*
* @param string $projectId
*/
public function setProjectId($projectId)
{
$this->set("ProjectId", $projectId);
}

/**
* Id: 主键
*
* @return string|null
*/
public function getId()
{
return $this->get("Id");
}

/**
* Id: 主键
*
* @param string $id
*/
public function setId($id)
{
$this->set("Id", $id);
}
}
Loading
Loading