Skip to content

Commit 84a5943

Browse files
committed
DescribeSoarRecords remove the following fields,TriggerDataId Success DataSourceName ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
1 parent d0bfe12 commit 84a5943

File tree

50 files changed

+4378
-501
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+4378
-501
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-11-03 Version: 1.0.1
2+
- DescribeSoarRecords remove the following fields,TriggerDataId Success DataSourceName ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
3+
- DescribeSoarTaskAndActions remove the following fields,TriggerDataId Sao Success All DataSourceName ResultLevel ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
4+
15
2025-11-03 Version: 3.7.24
26
- Generated 2015-12-01 for `Dds`.
37

Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.sophonsoar;
26+
using Aliyun.Acs.sophonsoar.Transform;
27+
using Aliyun.Acs.sophonsoar.Transform.V20220728;
28+
29+
namespace Aliyun.Acs.sophonsoar.Model.V20220728
30+
{
31+
public class CopyPlaybookRequest : RpcAcsRequest<CopyPlaybookResponse>
32+
{
33+
public CopyPlaybookRequest()
34+
: base("sophonsoar", "2022-07-28", "CopyPlaybook")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string sourcePlaybookUuid;
41+
42+
private long? roleFor;
43+
44+
private string description;
45+
46+
private string releaseVersion;
47+
48+
private string displayName;
49+
50+
private string roleType;
51+
52+
private string lang;
53+
54+
public string SourcePlaybookUuid
55+
{
56+
get
57+
{
58+
return sourcePlaybookUuid;
59+
}
60+
set
61+
{
62+
sourcePlaybookUuid = value;
63+
DictionaryUtil.Add(BodyParameters, "SourcePlaybookUuid", value);
64+
}
65+
}
66+
67+
public long? RoleFor
68+
{
69+
get
70+
{
71+
return roleFor;
72+
}
73+
set
74+
{
75+
roleFor = value;
76+
DictionaryUtil.Add(QueryParameters, "RoleFor", value.ToString());
77+
}
78+
}
79+
80+
public string Description
81+
{
82+
get
83+
{
84+
return description;
85+
}
86+
set
87+
{
88+
description = value;
89+
DictionaryUtil.Add(BodyParameters, "Description", value);
90+
}
91+
}
92+
93+
public string ReleaseVersion
94+
{
95+
get
96+
{
97+
return releaseVersion;
98+
}
99+
set
100+
{
101+
releaseVersion = value;
102+
DictionaryUtil.Add(BodyParameters, "ReleaseVersion", value);
103+
}
104+
}
105+
106+
public string DisplayName
107+
{
108+
get
109+
{
110+
return displayName;
111+
}
112+
set
113+
{
114+
displayName = value;
115+
DictionaryUtil.Add(BodyParameters, "DisplayName", value);
116+
}
117+
}
118+
119+
public string RoleType
120+
{
121+
get
122+
{
123+
return roleType;
124+
}
125+
set
126+
{
127+
roleType = value;
128+
DictionaryUtil.Add(QueryParameters, "RoleType", value);
129+
}
130+
}
131+
132+
public string Lang
133+
{
134+
get
135+
{
136+
return lang;
137+
}
138+
set
139+
{
140+
lang = value;
141+
DictionaryUtil.Add(QueryParameters, "Lang", value);
142+
}
143+
}
144+
145+
public override bool CheckShowJsonItemName()
146+
{
147+
return false;
148+
}
149+
150+
public override CopyPlaybookResponse GetResponse(UnmarshallerContext unmarshallerContext)
151+
{
152+
return CopyPlaybookResponseUnmarshaller.Unmarshall(unmarshallerContext);
153+
}
154+
}
155+
}

0 commit comments

Comments
 (0)