Skip to content

Commit

Permalink
release 3.0.921
Browse files Browse the repository at this point in the history
  • Loading branch information
tencentcloudapi committed Jun 30, 2023
1 parent 0a5eb57 commit e4a15c6
Show file tree
Hide file tree
Showing 3 changed files with 25 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.920"
"tencentcloud/common": "3.0.921"
},
"autoload": {
"psr-4": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* @method void setFlowId(integer $FlowId) 设置异步流程ID
* @method integer getTaskId() 获取异步任务ID
* @method void setTaskId(integer $TaskId) 设置异步任务ID
* @method string getProxyGroupId() 获取数据库代理组ID
* @method void setProxyGroupId(string $ProxyGroupId) 设置数据库代理组ID
* @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
Expand All @@ -39,6 +41,11 @@ class CreateProxyEndPointResponse extends AbstractModel
*/
public $TaskId;

/**
* @var string 数据库代理组ID
*/
public $ProxyGroupId;

/**
* @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
Expand All @@ -47,6 +54,7 @@ class CreateProxyEndPointResponse extends AbstractModel
/**
* @param integer $FlowId 异步流程ID
* @param integer $TaskId 异步任务ID
* @param string $ProxyGroupId 数据库代理组ID
* @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
function __construct()
Expand All @@ -70,6 +78,10 @@ public function deserialize($param)
$this->TaskId = $param["TaskId"];
}

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

if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
$this->RequestId = $param["RequestId"];
}
Expand Down
12 changes: 12 additions & 0 deletions src/TencentCloud/Cynosdb/V20190107/Models/CreateProxyResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
* @method void setFlowId(integer $FlowId) 设置异步流程ID
* @method integer getTaskId() 获取异步任务ID
* @method void setTaskId(integer $TaskId) 设置异步任务ID
* @method string getProxyGroupId() 获取数据库代理组ID
* @method void setProxyGroupId(string $ProxyGroupId) 设置数据库代理组ID
* @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
Expand All @@ -39,6 +41,11 @@ class CreateProxyResponse extends AbstractModel
*/
public $TaskId;

/**
* @var string 数据库代理组ID
*/
public $ProxyGroupId;

/**
* @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
Expand All @@ -47,6 +54,7 @@ class CreateProxyResponse extends AbstractModel
/**
* @param integer $FlowId 异步流程ID
* @param integer $TaskId 异步任务ID
* @param string $ProxyGroupId 数据库代理组ID
* @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
function __construct()
Expand All @@ -70,6 +78,10 @@ public function deserialize($param)
$this->TaskId = $param["TaskId"];
}

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

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

0 comments on commit e4a15c6

Please sign in to comment.