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.4
0.3.5
3 changes: 1 addition & 2 deletions src/Core/Logger/compatibility/DefaultLoggerPsrLogV3.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ public function log(
$level,
string|\Stringable $message,
array $context = []
): void
{
): void {
$line = $level . " " . $message;
if (!empty($context)) {
$line = " " . json_encode($context, JSON_PRETTY_PRINT);
Expand Down
3 changes: 1 addition & 2 deletions src/Core/Logger/compatibility/DisabledLoggerPsrLogV3.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ public function log(
$level,
string|\Stringable $message,
array $context = []
): void
{
): void {
// Do nothing
}
}
Expand Down
253 changes: 253 additions & 0 deletions src/UPFS/Apis/CreateUPFSVolumeRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,253 @@
<?php
/**
* Copyright 2025 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\UPFS\Apis;

use UCloud\Core\Request\Request;

class CreateUPFSVolumeRequest extends Request
{
public function __construct()
{
parent::__construct(["Action" => "CreateUPFSVolume"]);
$this->markRequired("Region");
$this->markRequired("Zone");
$this->markRequired("Size");
$this->markRequired("ProtocolType");
}



/**
* 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);
}

/**
* Size: 文件系统大小,单位为GB,必须为100的整数倍,Size最小为500GB
*
* @return integer|null
*/
public function getSize()
{
return $this->get("Size");
}

/**
* Size: 文件系统大小,单位为GB,必须为100的整数倍,Size最小为500GB
*
* @param int $size
*/
public function setSize($size)
{
$this->set("Size", $size);
}

/**
* ProtocolType: 文件系统协议,目前仅支持POSIX
*
* @return string|null
*/
public function getProtocolType()
{
return $this->get("ProtocolType");
}

/**
* ProtocolType: 文件系统协议,目前仅支持POSIX
*
* @param string $protocolType
*/
public function setProtocolType($protocolType)
{
$this->set("ProtocolType", $protocolType);
}

/**
* VolumeName: 文件系统名称
*
* @return string|null
*/
public function getVolumeName()
{
return $this->get("VolumeName");
}

/**
* VolumeName: 文件系统名称
*
* @param string $volumeName
*/
public function setVolumeName($volumeName)
{
$this->set("VolumeName", $volumeName);
}

/**
* Remark: 备注
*
* @return string|null
*/
public function getRemark()
{
return $this->get("Remark");
}

/**
* Remark: 备注
*
* @param string $remark
*/
public function setRemark($remark)
{
$this->set("Remark", $remark);
}

/**
* Tag: 文件系统所属业务组
*
* @return string|null
*/
public function getTag()
{
return $this->get("Tag");
}

/**
* Tag: 文件系统所属业务组
*
* @param string $tag
*/
public function setTag($tag)
{
$this->set("Tag", $tag);
}

/**
* ChargeType: 计费模式,枚举值为: Year,按年付费; Month,按月付费
*
* @return string|null
*/
public function getChargeType()
{
return $this->get("ChargeType");
}

/**
* ChargeType: 计费模式,枚举值为: Year,按年付费; Month,按月付费
*
* @param string $chargeType
*/
public function setChargeType($chargeType)
{
$this->set("ChargeType", $chargeType);
}

/**
* Quantity: 购买时长 默认: 1
*
* @return integer|null
*/
public function getQuantity()
{
return $this->get("Quantity");
}

/**
* Quantity: 购买时长 默认: 1
*
* @param int $quantity
*/
public function setQuantity($quantity)
{
$this->set("Quantity", $quantity);
}

/**
* CouponId: 使用的代金券id
*
* @return string|null
*/
public function getCouponId()
{
return $this->get("CouponId");
}

/**
* CouponId: 使用的代金券id
*
* @param string $couponId
*/
public function setCouponId($couponId)
{
$this->set("CouponId", $couponId);
}
}
64 changes: 64 additions & 0 deletions src/UPFS/Apis/CreateUPFSVolumeResponse.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<?php
/**
* Copyright 2025 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\UPFS\Apis;

use UCloud\Core\Response\Response;

class CreateUPFSVolumeResponse extends Response
{


/**
* VolumeName: UPFS文件系统名称
*
* @return string|null
*/
public function getVolumeName()
{
return $this->get("VolumeName");
}

/**
* VolumeName: UPFS文件系统名称
*
* @param string $volumeName
*/
public function setVolumeName($volumeName)
{
$this->set("VolumeName", $volumeName);
}

/**
* VolumeId: UPFS文件系统ID
*
* @return string|null
*/
public function getVolumeId()
{
return $this->get("VolumeId");
}

/**
* VolumeId: UPFS文件系统ID
*
* @param string $volumeId
*/
public function setVolumeId($volumeId)
{
$this->set("VolumeId", $volumeId);
}
}
Loading