Skip to content

Commit

Permalink
release 3.0.1088
Browse files Browse the repository at this point in the history
  • Loading branch information
tencentcloudapi committed Feb 26, 2024
1 parent 2cf6b7b commit f633303
Show file tree
Hide file tree
Showing 4 changed files with 137 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"require": {
"tencentcloud/common": "3.0.1087"
"tencentcloud/common": "3.0.1088"
},
"autoload": {
"psr-4": {
Expand Down
1 change: 1 addition & 0 deletions src/TencentCloud/Cynosdb/V20190107/CynosdbClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
* @method Models\DescribeClusterDatabasesResponse DescribeClusterDatabases(Models\DescribeClusterDatabasesRequest $req) 获取集群数据库列表
* @method Models\DescribeClusterDetailResponse DescribeClusterDetail(Models\DescribeClusterDetailRequest $req) 该接口(DescribeClusterDetail)显示集群详情
* @method Models\DescribeClusterDetailDatabasesResponse DescribeClusterDetailDatabases(Models\DescribeClusterDetailDatabasesRequest $req) 查询数据库列表
* @method Models\DescribeClusterInstanceGroupsResponse DescribeClusterInstanceGroups(Models\DescribeClusterInstanceGroupsRequest $req) 本接口(DescribeClusterInstanceGrps)用于查询实例组信息。
* @method Models\DescribeClusterInstanceGrpsResponse DescribeClusterInstanceGrps(Models\DescribeClusterInstanceGrpsRequest $req) 本接口(DescribeClusterInstanceGrps)用于查询实例组信息。 该接口已废弃,推荐使用DescribeClusterInstanceGroups
* @method Models\DescribeClusterParamLogsResponse DescribeClusterParamLogs(Models\DescribeClusterParamLogsRequest $req) 本接口(DescribeClusterParamLogs)查询参数修改记录
* @method Models\DescribeClusterParamsResponse DescribeClusterParams(Models\DescribeClusterParamsRequest $req) 本接口(DescribeClusterParams)用于查询集群参数
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?php
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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 TencentCloud\Cynosdb\V20190107\Models;
use TencentCloud\Common\AbstractModel;

/**
* DescribeClusterInstanceGroups请求参数结构体
*
* @method string getClusterId() 获取集群ID
* @method void setClusterId(string $ClusterId) 设置集群ID
*/
class DescribeClusterInstanceGroupsRequest extends AbstractModel
{
/**
* @var string 集群ID
*/
public $ClusterId;

/**
* @param string $ClusterId 集群ID
*/
function __construct()
{

}

/**
* For internal only. DO NOT USE IT.
*/
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("ClusterId",$param) and $param["ClusterId"] !== null) {
$this->ClusterId = $param["ClusterId"];
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
<?php
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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 TencentCloud\Cynosdb\V20190107\Models;
use TencentCloud\Common\AbstractModel;

/**
* DescribeClusterInstanceGroups返回参数结构体
*
* @method integer getTotalCount() 获取实例组个数
* @method void setTotalCount(integer $TotalCount) 设置实例组个数
* @method array getInstanceGroupInfoList() 获取实例组列表
* @method void setInstanceGroupInfoList(array $InstanceGroupInfoList) 设置实例组列表
* @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
class DescribeClusterInstanceGroupsResponse extends AbstractModel
{
/**
* @var integer 实例组个数
*/
public $TotalCount;

/**
* @var array 实例组列表
*/
public $InstanceGroupInfoList;

/**
* @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public $RequestId;

/**
* @param integer $TotalCount 实例组个数
* @param array $InstanceGroupInfoList 实例组列表
* @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
function __construct()
{

}

/**
* For internal only. DO NOT USE IT.
*/
public function deserialize($param)
{
if ($param === null) {
return;
}
if (array_key_exists("TotalCount",$param) and $param["TotalCount"] !== null) {
$this->TotalCount = $param["TotalCount"];
}

if (array_key_exists("InstanceGroupInfoList",$param) and $param["InstanceGroupInfoList"] !== null) {
$this->InstanceGroupInfoList = [];
foreach ($param["InstanceGroupInfoList"] as $key => $value){
$obj = new CynosdbInstanceGroup();
$obj->deserialize($value);
array_push($this->InstanceGroupInfoList, $obj);
}
}

if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
}
}

0 comments on commit f633303

Please sign in to comment.