Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 56427bb

Browse files
committed
Generated cpp 2025年09月10日 for AgentRun.
1 parent daebcea commit 56427bb

12 files changed

+443
-1
lines changed

‎agentrun-20250910/ChangeLog.txt‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025年10月29日 Version: 2.0.1
2+
- Generated cpp 2025年09月10日 for AgentRun.
3+
14
2025年10月21日 Version: 2.0.0
25
- Update API CreateMemory: add request parameters body.permanent.
36
- Update API CreateMemory: add request parameters body.strategy.

‎agentrun-20250910/include/alibabacloud/AgentRun20250910Model.hpp‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include <alibabacloud/models/AiFallbackServiceConfig.hpp>
2020
#include <alibabacloud/models/AiFallbackConfig.hpp>
2121
#include <alibabacloud/models/AiServiceConfig.hpp>
22+
#include <alibabacloud/models/ApigLlmModel.hpp>
2223
#include <alibabacloud/models/AttachPolicyConfig.hpp>
2324
#include <alibabacloud/models/BrowserOssLocation.hpp>
2425
#include <alibabacloud/models/BrowserRecordingConfiguration.hpp>
@@ -41,6 +42,7 @@
4142
#include <alibabacloud/models/CreateAgentRuntimeEndpointInput.hpp>
4243
#include <alibabacloud/models/CreateAgentRuntimeInput.hpp>
4344
#include <alibabacloud/models/CreateAgentRuntimeVersionInput.hpp>
45+
#include <alibabacloud/models/CreateApigLlmModelInput.hpp>
4446
#include <alibabacloud/models/CreateBrowserInput.hpp>
4547
#include <alibabacloud/models/CreateCodeInterpreterInput.hpp>
4648
#include <alibabacloud/models/CreateCredentialInput.hpp>
@@ -119,6 +121,7 @@
119121
#include <alibabacloud/models/TriggerConfig.hpp>
120122
#include <alibabacloud/models/UpdateAgentRuntimeEndpointInput.hpp>
121123
#include <alibabacloud/models/UpdateAgentRuntimeInput.hpp>
124+
#include <alibabacloud/models/UpdateApigLlmModelInput.hpp>
122125
#include <alibabacloud/models/UpdateCredentialInput.hpp>
123126
#include <alibabacloud/models/UpdateCredentialOutput.hpp>
124127
#include <alibabacloud/models/UpdateDomainInput.hpp>
Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
#ifndef ALIBABACLOUD_MODELS_APIGLLMMODEL_HPP_
3+
#define ALIBABACLOUD_MODELS_APIGLLMMODEL_HPP_
4+
#include <darabonba/Core.hpp>
5+
using namespace std;
6+
using json = nlohmann::json;
7+
namespace AlibabaCloud
8+
{
9+
namespace AgentRun20250910
10+
{
11+
namespace Models
12+
{
13+
class ApigLLMModel : public Darabonba::Model {
14+
public:
15+
friend void to_json(Darabonba::Json& j, const ApigLLMModel& obj) {
16+
DARABONBA_PTR_TO_JSON(address, address_);
17+
DARABONBA_PTR_TO_JSON(apiKey, apiKey_);
18+
DARABONBA_PTR_TO_JSON(createdTime, createdTime_);
19+
DARABONBA_PTR_TO_JSON(desc, desc_);
20+
DARABONBA_PTR_TO_JSON(gatewayId, gatewayId_);
21+
DARABONBA_PTR_TO_JSON(modelId, modelId_);
22+
DARABONBA_PTR_TO_JSON(models, models_);
23+
DARABONBA_PTR_TO_JSON(modelsWeight, modelsWeight_);
24+
DARABONBA_PTR_TO_JSON(name, name_);
25+
DARABONBA_PTR_TO_JSON(provider, provider_);
26+
DARABONBA_PTR_TO_JSON(targetId, targetId_);
27+
DARABONBA_PTR_TO_JSON(tenantId, tenantId_);
28+
DARABONBA_PTR_TO_JSON(type, type_);
29+
DARABONBA_PTR_TO_JSON(updateTime, updateTime_);
30+
};
31+
friend void from_json(const Darabonba::Json& j, ApigLLMModel& obj) {
32+
DARABONBA_PTR_FROM_JSON(address, address_);
33+
DARABONBA_PTR_FROM_JSON(apiKey, apiKey_);
34+
DARABONBA_PTR_FROM_JSON(createdTime, createdTime_);
35+
DARABONBA_PTR_FROM_JSON(desc, desc_);
36+
DARABONBA_PTR_FROM_JSON(gatewayId, gatewayId_);
37+
DARABONBA_PTR_FROM_JSON(modelId, modelId_);
38+
DARABONBA_PTR_FROM_JSON(models, models_);
39+
DARABONBA_PTR_FROM_JSON(modelsWeight, modelsWeight_);
40+
DARABONBA_PTR_FROM_JSON(name, name_);
41+
DARABONBA_PTR_FROM_JSON(provider, provider_);
42+
DARABONBA_PTR_FROM_JSON(targetId, targetId_);
43+
DARABONBA_PTR_FROM_JSON(tenantId, tenantId_);
44+
DARABONBA_PTR_FROM_JSON(type, type_);
45+
DARABONBA_PTR_FROM_JSON(updateTime, updateTime_);
46+
};
47+
ApigLLMModel() = default ;
48+
ApigLLMModel(const ApigLLMModel &) = default ;
49+
ApigLLMModel(ApigLLMModel &&) = default ;
50+
ApigLLMModel(const Darabonba::Json & obj) { from_json(obj, *this); };
51+
virtual ~ApigLLMModel() = default ;
52+
ApigLLMModel& operator=(const ApigLLMModel &) = default ;
53+
ApigLLMModel& operator=(ApigLLMModel &&) = default ;
54+
virtual void validate() const override {
55+
};
56+
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
57+
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
58+
virtual bool empty() const override { return this->address_ == nullptr
59+
&& return this->apiKey_ == nullptr && return this->createdTime_ == nullptr && return this->desc_ == nullptr && return this->gatewayId_ == nullptr && return this->modelId_ == nullptr
60+
&& return this->models_ == nullptr && return this->modelsWeight_ == nullptr && return this->name_ == nullptr && return this->provider_ == nullptr && return this->targetId_ == nullptr
61+
&& return this->tenantId_ == nullptr && return this->type_ == nullptr && return this->updateTime_ == nullptr; };
62+
// address Field Functions
63+
bool hasAddress() const { return this->address_ != nullptr;};
64+
void deleteAddress() { this->address_ = nullptr;};
65+
inline string address() const { DARABONBA_PTR_GET_DEFAULT(address_, "") };
66+
inline ApigLLMModel& setAddress(string address) { DARABONBA_PTR_SET_VALUE(address_, address) };
67+
68+
69+
// apiKey Field Functions
70+
bool hasApiKey() const { return this->apiKey_ != nullptr;};
71+
void deleteApiKey() { this->apiKey_ = nullptr;};
72+
inline string apiKey() const { DARABONBA_PTR_GET_DEFAULT(apiKey_, "") };
73+
inline ApigLLMModel& setApiKey(string apiKey) { DARABONBA_PTR_SET_VALUE(apiKey_, apiKey) };
74+
75+
76+
// createdTime Field Functions
77+
bool hasCreatedTime() const { return this->createdTime_ != nullptr;};
78+
void deleteCreatedTime() { this->createdTime_ = nullptr;};
79+
inline string createdTime() const { DARABONBA_PTR_GET_DEFAULT(createdTime_, "") };
80+
inline ApigLLMModel& setCreatedTime(string createdTime) { DARABONBA_PTR_SET_VALUE(createdTime_, createdTime) };
81+
82+
83+
// desc Field Functions
84+
bool hasDesc() const { return this->desc_ != nullptr;};
85+
void deleteDesc() { this->desc_ = nullptr;};
86+
inline string desc() const { DARABONBA_PTR_GET_DEFAULT(desc_, "") };
87+
inline ApigLLMModel& setDesc(string desc) { DARABONBA_PTR_SET_VALUE(desc_, desc) };
88+
89+
90+
// gatewayId Field Functions
91+
bool hasGatewayId() const { return this->gatewayId_ != nullptr;};
92+
void deleteGatewayId() { this->gatewayId_ = nullptr;};
93+
inline string gatewayId() const { DARABONBA_PTR_GET_DEFAULT(gatewayId_, "") };
94+
inline ApigLLMModel& setGatewayId(string gatewayId) { DARABONBA_PTR_SET_VALUE(gatewayId_, gatewayId) };
95+
96+
97+
// modelId Field Functions
98+
bool hasModelId() const { return this->modelId_ != nullptr;};
99+
void deleteModelId() { this->modelId_ = nullptr;};
100+
inline string modelId() const { DARABONBA_PTR_GET_DEFAULT(modelId_, "") };
101+
inline ApigLLMModel& setModelId(string modelId) { DARABONBA_PTR_SET_VALUE(modelId_, modelId) };
102+
103+
104+
// models Field Functions
105+
bool hasModels() const { return this->models_ != nullptr;};
106+
void deleteModels() { this->models_ = nullptr;};
107+
inline string models() const { DARABONBA_PTR_GET_DEFAULT(models_, "") };
108+
inline ApigLLMModel& setModels(string models) { DARABONBA_PTR_SET_VALUE(models_, models) };
109+
110+
111+
// modelsWeight Field Functions
112+
bool hasModelsWeight() const { return this->modelsWeight_ != nullptr;};
113+
void deleteModelsWeight() { this->modelsWeight_ = nullptr;};
114+
inline string modelsWeight() const { DARABONBA_PTR_GET_DEFAULT(modelsWeight_, "") };
115+
inline ApigLLMModel& setModelsWeight(string modelsWeight) { DARABONBA_PTR_SET_VALUE(modelsWeight_, modelsWeight) };
116+
117+
118+
// name Field Functions
119+
bool hasName() const { return this->name_ != nullptr;};
120+
void deleteName() { this->name_ = nullptr;};
121+
inline string name() const { DARABONBA_PTR_GET_DEFAULT(name_, "") };
122+
inline ApigLLMModel& setName(string name) { DARABONBA_PTR_SET_VALUE(name_, name) };
123+
124+
125+
// provider Field Functions
126+
bool hasProvider() const { return this->provider_ != nullptr;};
127+
void deleteProvider() { this->provider_ = nullptr;};
128+
inline string provider() const { DARABONBA_PTR_GET_DEFAULT(provider_, "") };
129+
inline ApigLLMModel& setProvider(string provider) { DARABONBA_PTR_SET_VALUE(provider_, provider) };
130+
131+
132+
// targetId Field Functions
133+
bool hasTargetId() const { return this->targetId_ != nullptr;};
134+
void deleteTargetId() { this->targetId_ = nullptr;};
135+
inline string targetId() const { DARABONBA_PTR_GET_DEFAULT(targetId_, "") };
136+
inline ApigLLMModel& setTargetId(string targetId) { DARABONBA_PTR_SET_VALUE(targetId_, targetId) };
137+
138+
139+
// tenantId Field Functions
140+
bool hasTenantId() const { return this->tenantId_ != nullptr;};
141+
void deleteTenantId() { this->tenantId_ = nullptr;};
142+
inline string tenantId() const { DARABONBA_PTR_GET_DEFAULT(tenantId_, "") };
143+
inline ApigLLMModel& setTenantId(string tenantId) { DARABONBA_PTR_SET_VALUE(tenantId_, tenantId) };
144+
145+
146+
// type Field Functions
147+
bool hasType() const { return this->type_ != nullptr;};
148+
void deleteType() { this->type_ = nullptr;};
149+
inline string type() const { DARABONBA_PTR_GET_DEFAULT(type_, "") };
150+
inline ApigLLMModel& setType(string type) { DARABONBA_PTR_SET_VALUE(type_, type) };
151+
152+
153+
// updateTime Field Functions
154+
bool hasUpdateTime() const { return this->updateTime_ != nullptr;};
155+
void deleteUpdateTime() { this->updateTime_ = nullptr;};
156+
inline string updateTime() const { DARABONBA_PTR_GET_DEFAULT(updateTime_, "") };
157+
inline ApigLLMModel& setUpdateTime(string updateTime) { DARABONBA_PTR_SET_VALUE(updateTime_, updateTime) };
158+
159+
160+
protected:
161+
std::shared_ptr<string> address_ = nullptr;
162+
std::shared_ptr<string> apiKey_ = nullptr;
163+
std::shared_ptr<string> createdTime_ = nullptr;
164+
std::shared_ptr<string> desc_ = nullptr;
165+
std::shared_ptr<string> gatewayId_ = nullptr;
166+
std::shared_ptr<string> modelId_ = nullptr;
167+
std::shared_ptr<string> models_ = nullptr;
168+
std::shared_ptr<string> modelsWeight_ = nullptr;
169+
std::shared_ptr<string> name_ = nullptr;
170+
std::shared_ptr<string> provider_ = nullptr;
171+
std::shared_ptr<string> targetId_ = nullptr;
172+
std::shared_ptr<string> tenantId_ = nullptr;
173+
std::shared_ptr<string> type_ = nullptr;
174+
std::shared_ptr<string> updateTime_ = nullptr;
175+
};
176+
177+
} // namespace Models
178+
} // namespace AlibabaCloud
179+
} // namespace AgentRun20250910
180+
#endif

‎agentrun-20250910/include/alibabacloud/models/CodeConfiguration.hpp‎

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@ namespace Models
1717
DARABONBA_PTR_TO_JSON(checksum, checksum_);
1818
DARABONBA_PTR_TO_JSON(command, command_);
1919
DARABONBA_PTR_TO_JSON(language, language_);
20+
DARABONBA_PTR_TO_JSON(ossBucketName, ossBucketName_);
21+
DARABONBA_PTR_TO_JSON(ossObjectName, ossObjectName_);
2022
DARABONBA_PTR_TO_JSON(zipFile, zipFile_);
2123
};
2224
friend void from_json(const Darabonba::Json& j, CodeConfiguration& obj) {
2325
DARABONBA_PTR_FROM_JSON(checksum, checksum_);
2426
DARABONBA_PTR_FROM_JSON(command, command_);
2527
DARABONBA_PTR_FROM_JSON(language, language_);
28+
DARABONBA_PTR_FROM_JSON(ossBucketName, ossBucketName_);
29+
DARABONBA_PTR_FROM_JSON(ossObjectName, ossObjectName_);
2630
DARABONBA_PTR_FROM_JSON(zipFile, zipFile_);
2731
};
2832
CodeConfiguration() = default ;
@@ -37,7 +41,7 @@ namespace Models
3741
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
3842
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
3943
virtual bool empty() const override { return this->checksum_ == nullptr
40-
&& return this->command_ == nullptr && return this->language_ == nullptr && return this->zipFile_ == nullptr; };
44+
&& return this->command_ == nullptr && return this->language_ == nullptr && return this->ossBucketName_ == nullptr && returnthis->ossObjectName_ == nullptr && returnthis->zipFile_ == nullptr; };
4145
// checksum Field Functions
4246
bool hasChecksum() const { return this->checksum_ != nullptr;};
4347
void deleteChecksum() { this->checksum_ = nullptr;};
@@ -61,6 +65,20 @@ namespace Models
6165
inline CodeConfiguration& setLanguage(string language) { DARABONBA_PTR_SET_VALUE(language_, language) };
6266

6367

68+
// ossBucketName Field Functions
69+
bool hasOssBucketName() const { return this->ossBucketName_ != nullptr;};
70+
void deleteOssBucketName() { this->ossBucketName_ = nullptr;};
71+
inline string ossBucketName() const { DARABONBA_PTR_GET_DEFAULT(ossBucketName_, "") };
72+
inline CodeConfiguration& setOssBucketName(string ossBucketName) { DARABONBA_PTR_SET_VALUE(ossBucketName_, ossBucketName) };
73+
74+
75+
// ossObjectName Field Functions
76+
bool hasOssObjectName() const { return this->ossObjectName_ != nullptr;};
77+
void deleteOssObjectName() { this->ossObjectName_ = nullptr;};
78+
inline string ossObjectName() const { DARABONBA_PTR_GET_DEFAULT(ossObjectName_, "") };
79+
inline CodeConfiguration& setOssObjectName(string ossObjectName) { DARABONBA_PTR_SET_VALUE(ossObjectName_, ossObjectName) };
80+
81+
6482
// zipFile Field Functions
6583
bool hasZipFile() const { return this->zipFile_ != nullptr;};
6684
void deleteZipFile() { this->zipFile_ = nullptr;};
@@ -75,6 +93,8 @@ namespace Models
7593
std::shared_ptr<vector<string>> command_ = nullptr;
7694
// 代码运行时的编程语言,如 python3、nodejs 等
7795
std::shared_ptr<string> language_ = nullptr;
96+
std::shared_ptr<string> ossBucketName_ = nullptr;
97+
std::shared_ptr<string> ossObjectName_ = nullptr;
7898
// 智能体代码ZIP包的Base64编码
7999
std::shared_ptr<string> zipFile_ = nullptr;
80100
};
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
#ifndef ALIBABACLOUD_MODELS_CREATEAPIGLLMMODELINPUT_HPP_
3+
#define ALIBABACLOUD_MODELS_CREATEAPIGLLMMODELINPUT_HPP_
4+
#include <darabonba/Core.hpp>
5+
#include <vector>
6+
using namespace std;
7+
using json = nlohmann::json;
8+
namespace AlibabaCloud
9+
{
10+
namespace AgentRun20250910
11+
{
12+
namespace Models
13+
{
14+
class CreateApigLLMModelInput : public Darabonba::Model {
15+
public:
16+
friend void to_json(Darabonba::Json& j, const CreateApigLLMModelInput& obj) {
17+
DARABONBA_PTR_TO_JSON(address, address_);
18+
DARABONBA_PTR_TO_JSON(apiKey, apiKey_);
19+
DARABONBA_PTR_TO_JSON(desc, desc_);
20+
DARABONBA_PTR_TO_JSON(models, models_);
21+
DARABONBA_PTR_TO_JSON(name, name_);
22+
DARABONBA_PTR_TO_JSON(provider, provider_);
23+
DARABONBA_PTR_TO_JSON(type, type_);
24+
};
25+
friend void from_json(const Darabonba::Json& j, CreateApigLLMModelInput& obj) {
26+
DARABONBA_PTR_FROM_JSON(address, address_);
27+
DARABONBA_PTR_FROM_JSON(apiKey, apiKey_);
28+
DARABONBA_PTR_FROM_JSON(desc, desc_);
29+
DARABONBA_PTR_FROM_JSON(models, models_);
30+
DARABONBA_PTR_FROM_JSON(name, name_);
31+
DARABONBA_PTR_FROM_JSON(provider, provider_);
32+
DARABONBA_PTR_FROM_JSON(type, type_);
33+
};
34+
CreateApigLLMModelInput() = default ;
35+
CreateApigLLMModelInput(const CreateApigLLMModelInput &) = default ;
36+
CreateApigLLMModelInput(CreateApigLLMModelInput &&) = default ;
37+
CreateApigLLMModelInput(const Darabonba::Json & obj) { from_json(obj, *this); };
38+
virtual ~CreateApigLLMModelInput() = default ;
39+
CreateApigLLMModelInput& operator=(const CreateApigLLMModelInput &) = default ;
40+
CreateApigLLMModelInput& operator=(CreateApigLLMModelInput &&) = default ;
41+
virtual void validate() const override {
42+
};
43+
virtual void fromMap(const Darabonba::Json &obj) override { from_json(obj, *this); validate(); };
44+
virtual Darabonba::Json toMap() const override { Darabonba::Json obj; to_json(obj, *this); return obj; };
45+
virtual bool empty() const override { return this->address_ == nullptr
46+
&& return this->apiKey_ == nullptr && return this->desc_ == nullptr && return this->models_ == nullptr && return this->name_ == nullptr && return this->provider_ == nullptr
47+
&& return this->type_ == nullptr; };
48+
// address Field Functions
49+
bool hasAddress() const { return this->address_ != nullptr;};
50+
void deleteAddress() { this->address_ = nullptr;};
51+
inline string address() const { DARABONBA_PTR_GET_DEFAULT(address_, "") };
52+
inline CreateApigLLMModelInput& setAddress(string address) { DARABONBA_PTR_SET_VALUE(address_, address) };
53+
54+
55+
// apiKey Field Functions
56+
bool hasApiKey() const { return this->apiKey_ != nullptr;};
57+
void deleteApiKey() { this->apiKey_ = nullptr;};
58+
inline string apiKey() const { DARABONBA_PTR_GET_DEFAULT(apiKey_, "") };
59+
inline CreateApigLLMModelInput& setApiKey(string apiKey) { DARABONBA_PTR_SET_VALUE(apiKey_, apiKey) };
60+
61+
62+
// desc Field Functions
63+
bool hasDesc() const { return this->desc_ != nullptr;};
64+
void deleteDesc() { this->desc_ = nullptr;};
65+
inline string desc() const { DARABONBA_PTR_GET_DEFAULT(desc_, "") };
66+
inline CreateApigLLMModelInput& setDesc(string desc) { DARABONBA_PTR_SET_VALUE(desc_, desc) };
67+
68+
69+
// models Field Functions
70+
bool hasModels() const { return this->models_ != nullptr;};
71+
void deleteModels() { this->models_ = nullptr;};
72+
inline const vector<string> & models() const { DARABONBA_PTR_GET_CONST(models_, vector<string>) };
73+
inline vector<string> models() { DARABONBA_PTR_GET(models_, vector<string>) };
74+
inline CreateApigLLMModelInput& setModels(const vector<string> & models) { DARABONBA_PTR_SET_VALUE(models_, models) };
75+
inline CreateApigLLMModelInput& setModels(vector<string> && models) { DARABONBA_PTR_SET_RVALUE(models_, models) };
76+
77+
78+
// name Field Functions
79+
bool hasName() const { return this->name_ != nullptr;};
80+
void deleteName() { this->name_ = nullptr;};
81+
inline string name() const { DARABONBA_PTR_GET_DEFAULT(name_, "") };
82+
inline CreateApigLLMModelInput& setName(string name) { DARABONBA_PTR_SET_VALUE(name_, name) };
83+
84+
85+
// provider Field Functions
86+
bool hasProvider() const { return this->provider_ != nullptr;};
87+
void deleteProvider() { this->provider_ = nullptr;};
88+
inline string provider() const { DARABONBA_PTR_GET_DEFAULT(provider_, "") };
89+
inline CreateApigLLMModelInput& setProvider(string provider) { DARABONBA_PTR_SET_VALUE(provider_, provider) };
90+
91+
92+
// type Field Functions
93+
bool hasType() const { return this->type_ != nullptr;};
94+
void deleteType() { this->type_ = nullptr;};
95+
inline string type() const { DARABONBA_PTR_GET_DEFAULT(type_, "") };
96+
inline CreateApigLLMModelInput& setType(string type) { DARABONBA_PTR_SET_VALUE(type_, type) };
97+
98+
99+
protected:
100+
std::shared_ptr<string> address_ = nullptr;
101+
std::shared_ptr<string> apiKey_ = nullptr;
102+
std::shared_ptr<string> desc_ = nullptr;
103+
std::shared_ptr<vector<string>> models_ = nullptr;
104+
std::shared_ptr<string> name_ = nullptr;
105+
std::shared_ptr<string> provider_ = nullptr;
106+
std::shared_ptr<string> type_ = nullptr;
107+
};
108+
109+
} // namespace Models
110+
} // namespace AlibabaCloud
111+
} // namespace AgentRun20250910
112+
#endif

‎agentrun-20250910/include/alibabacloud/models/CreateCredentialInput.hpp‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ namespace Models
7878

7979

8080
protected:
81+
// 凭证的配置参数,以键值对形式存储
8182
std::shared_ptr<map<string, string>> config_ = nullptr;
8283
std::shared_ptr<string> description_ = nullptr;
8384
std::shared_ptr<string> name_ = nullptr;

‎agentrun-20250910/include/alibabacloud/models/DeleteBrowserResult.hpp‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ namespace Models
6262
protected:
6363
// SUCCESS 为成功,失败情况返回对应错误类型,比如 ERR_BAD_REQUEST ERR_VALIDATION_FAILED ERR_INTERNAL_SERVER_ERROR
6464
std::shared_ptr<string> code_ = nullptr;
65+
// 被删除的浏览器详细信息
6566
std::shared_ptr<Browser> data_ = nullptr;
67+
// 唯一的请求标识符,用于问题追踪
6668
std::shared_ptr<string> requestId_ = nullptr;
6769
};
6870

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /