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.21
0.3.22
2 changes: 1 addition & 1 deletion src/UK8S/Apis/AddUK8SExistingUHostRequest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright 2022 UCloud Technology Co., Ltd.
* 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.
Expand Down
2 changes: 1 addition & 1 deletion src/UK8S/Apis/AddUK8SExistingUHostResponse.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright 2022 UCloud Technology Co., Ltd.
* 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.
Expand Down
42 changes: 41 additions & 1 deletion src/UK8S/Apis/AddUK8SNodeGroupRequest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright 2022 UCloud Technology Co., Ltd.
* 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.
Expand Down Expand Up @@ -369,4 +369,44 @@ public function setChargeType($chargeType)
{
$this->set("ChargeType", $chargeType);
}

/**
* BootDiskSize: 系统盘大小,单位GB。默认40。范围:[40, 500]。注意SSD本地盘无法调整。
*
* @return integer|null
*/
public function getBootDiskSize()
{
return $this->get("BootDiskSize");
}

/**
* BootDiskSize: 系统盘大小,单位GB。默认40。范围:[40, 500]。注意SSD本地盘无法调整。
*
* @param int $bootDiskSize
*/
public function setBootDiskSize($bootDiskSize)
{
$this->set("BootDiskSize", $bootDiskSize);
}

/**
* SubnetId: 子网 ID。默认为集群创建时填写的子网ID,也可以填写集群同VPC内的子网ID。
*
* @return string|null
*/
public function getSubnetId()
{
return $this->get("SubnetId");
}

/**
* SubnetId: 子网 ID。默认为集群创建时填写的子网ID,也可以填写集群同VPC内的子网ID。
*
* @param string $subnetId
*/
public function setSubnetId($subnetId)
{
$this->set("SubnetId", $subnetId);
}
}
2 changes: 1 addition & 1 deletion src/UK8S/Apis/AddUK8SNodeGroupResponse.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright 2022 UCloud Technology Co., Ltd.
* 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.
Expand Down
2 changes: 1 addition & 1 deletion src/UK8S/Apis/AddUK8SPHostNodeRequest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright 2022 UCloud Technology Co., Ltd.
* 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.
Expand Down
2 changes: 1 addition & 1 deletion src/UK8S/Apis/AddUK8SPHostNodeResponse.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright 2022 UCloud Technology Co., Ltd.
* 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.
Expand Down
Loading
Loading