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.40
0.3.41
153 changes: 153 additions & 0 deletions src/ULogService/Apis/BindULogServiceGroupToCollectConfRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
<?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\ULogService\Apis;

use UCloud\Core\Request\Request;

class BindULogServiceGroupToCollectConfRequest extends Request
{
public function __construct()
{
parent::__construct(["Action" => "BindULogServiceGroupToCollectConf"]);
$this->markRequired("Region");
$this->markRequired("Zone");
$this->markRequired("TopicId");
$this->markRequired("CollectConfId");
}



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

/**
* TopicId: 日志主题ID
*
* @return string|null
*/
public function getTopicId()
{
return $this->get("TopicId");
}

/**
* TopicId: 日志主题ID
*
* @param string $topicId
*/
public function setTopicId($topicId)
{
$this->set("TopicId", $topicId);
}

/**
* CollectConfId: 采集配置id
*
* @return integer|null
*/
public function getCollectConfId()
{
return $this->get("CollectConfId");
}

/**
* CollectConfId: 采集配置id
*
* @param int $collectConfId
*/
public function setCollectConfId($collectConfId)
{
$this->set("CollectConfId", $collectConfId);
}

/**
* MachineGroupIds: 机器组ID,是一个数组
*
* @return integer|null
*/
public function getMachineGroupIds()
{
return $this->get("MachineGroupIds");
}

/**
* MachineGroupIds: 机器组ID,是一个数组
*
* @param int $machineGroupIds
*/
public function setMachineGroupIds($machineGroupIds)
{
$this->set("MachineGroupIds", $machineGroupIds);
}
}
26 changes: 26 additions & 0 deletions src/ULogService/Apis/BindULogServiceGroupToCollectConfResponse.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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\ULogService\Apis;

use UCloud\Core\Response\Response;

class BindULogServiceGroupToCollectConfResponse extends Response
{



}
Loading