Skip to content

Commit 426be28

Browse files
committed
Fix API
1 parent d14f8ed commit 426be28

28 files changed

+484
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-03-25 Version: 1.0.10
2+
- Fix API
3+
14
2024-03-19 Version: 2.1.5
25
- Add QueryWorkspaceRoleConfig, ListWorkspaceRoleUsers, ListWorkspaceRoles, QueryOrganizationRoleConfig, ListOrganizationRoleUsers and ListOrganizationRoles APIs.
36

aliyun-net-sdk-sddp/Sddp/Model/V20190103/CreateConfigRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,14 @@ public CreateConfigRequest()
4444

4545
private string description;
4646

47+
private string sourceIp;
48+
4749
private string lang;
4850

4951
private string _value;
5052

53+
private int? featureType;
54+
5155
public string Code
5256
{
5357
get
@@ -74,6 +78,19 @@ public string Description
7478
}
7579
}
7680

81+
public string SourceIp
82+
{
83+
get
84+
{
85+
return sourceIp;
86+
}
87+
set
88+
{
89+
sourceIp = value;
90+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
91+
}
92+
}
93+
7794
public string Lang
7895
{
7996
get
@@ -100,6 +117,19 @@ public string _Value
100117
}
101118
}
102119

120+
public int? FeatureType
121+
{
122+
get
123+
{
124+
return featureType;
125+
}
126+
set
127+
{
128+
featureType = value;
129+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
130+
}
131+
}
132+
103133
public override bool CheckShowJsonItemName()
104134
{
105135
return false;

aliyun-net-sdk-sddp/Sddp/Model/V20190103/CreateDataLimitRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ public CreateDataLimitRequest()
4848

4949
private string password;
5050

51+
private string sourceIp;
52+
5153
private int? enable;
5254

5355
private string lang;
@@ -60,6 +62,8 @@ public CreateDataLimitRequest()
6062

6163
private int? autoScan;
6264

65+
private int? featureType;
66+
6367
private int? logStoreDay;
6468

6569
private string certificatePermission;
@@ -124,6 +128,19 @@ public string Password
124128
}
125129
}
126130

131+
public string SourceIp
132+
{
133+
get
134+
{
135+
return sourceIp;
136+
}
137+
set
138+
{
139+
sourceIp = value;
140+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
141+
}
142+
}
143+
127144
public int? Enable
128145
{
129146
get
@@ -202,6 +219,19 @@ public int? AutoScan
202219
}
203220
}
204221

222+
public int? FeatureType
223+
{
224+
get
225+
{
226+
return featureType;
227+
}
228+
set
229+
{
230+
featureType = value;
231+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
232+
}
233+
}
234+
205235
public int? LogStoreDay
206236
{
207237
get

aliyun-net-sdk-sddp/Sddp/Model/V20190103/CreateRuleRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ public CreateRuleRequest()
5252

5353
private string content;
5454

55+
private string sourceIp;
56+
5557
private int? matchType;
5658

5759
private string lang;
@@ -150,6 +152,19 @@ public string Content
150152
}
151153
}
152154

155+
public string SourceIp
156+
{
157+
get
158+
{
159+
return sourceIp;
160+
}
161+
set
162+
{
163+
sourceIp = value;
164+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
165+
}
166+
}
167+
153168
public int? MatchType
154169
{
155170
get

aliyun-net-sdk-sddp/Sddp/Model/V20190103/CreateScanTaskRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,16 @@ public CreateScanTaskRequest()
5050

5151
private int? runMinute;
5252

53+
private string sourceIp;
54+
5355
private int? intervalDay;
5456

5557
private int? scanRange;
5658

5759
private string lang;
5860

61+
private int? featureType;
62+
5963
private string ossScanPath;
6064

6165
private long? resourceType;
@@ -127,6 +131,19 @@ public int? RunMinute
127131
}
128132
}
129133

134+
public string SourceIp
135+
{
136+
get
137+
{
138+
return sourceIp;
139+
}
140+
set
141+
{
142+
sourceIp = value;
143+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
144+
}
145+
}
146+
130147
public int? IntervalDay
131148
{
132149
get
@@ -166,6 +183,19 @@ public string Lang
166183
}
167184
}
168185

186+
public int? FeatureType
187+
{
188+
get
189+
{
190+
return featureType;
191+
}
192+
set
193+
{
194+
featureType = value;
195+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
196+
}
197+
}
198+
169199
public string OssScanPath
170200
{
171201
get

aliyun-net-sdk-sddp/Sddp/Model/V20190103/CreateSlrRoleRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,38 @@ public CreateSlrRoleRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private int? featureType;
44+
45+
private string sourceIp;
46+
4347
private string lang;
4448

49+
public int? FeatureType
50+
{
51+
get
52+
{
53+
return featureType;
54+
}
55+
set
56+
{
57+
featureType = value;
58+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
59+
}
60+
}
61+
62+
public string SourceIp
63+
{
64+
get
65+
{
66+
return sourceIp;
67+
}
68+
set
69+
{
70+
sourceIp = value;
71+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
72+
}
73+
}
74+
4575
public string Lang
4676
{
4777
get

aliyun-net-sdk-sddp/Sddp/Model/V20190103/DeleteDataLimitRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,40 @@ public DeleteDataLimitRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private int? featureType;
44+
45+
private string sourceIp;
46+
4347
private long? id;
4448

4549
private string lang;
4650

51+
public int? FeatureType
52+
{
53+
get
54+
{
55+
return featureType;
56+
}
57+
set
58+
{
59+
featureType = value;
60+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
61+
}
62+
}
63+
64+
public string SourceIp
65+
{
66+
get
67+
{
68+
return sourceIp;
69+
}
70+
set
71+
{
72+
sourceIp = value;
73+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
74+
}
75+
}
76+
4777
public long? Id
4878
{
4979
get

aliyun-net-sdk-sddp/Sddp/Model/V20190103/DeleteRuleRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,40 @@ public DeleteRuleRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private int? featureType;
44+
45+
private string sourceIp;
46+
4347
private long? id;
4448

4549
private string lang;
4650

51+
public int? FeatureType
52+
{
53+
get
54+
{
55+
return featureType;
56+
}
57+
set
58+
{
59+
featureType = value;
60+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
61+
}
62+
}
63+
64+
public string SourceIp
65+
{
66+
get
67+
{
68+
return sourceIp;
69+
}
70+
set
71+
{
72+
sourceIp = value;
73+
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
74+
}
75+
}
76+
4777
public long? Id
4878
{
4979
get

aliyun-net-sdk-sddp/Sddp/Model/V20190103/DescribeCategoryTemplateListRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ public DescribeCategoryTemplateListRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private int? featureType;
44+
4345
private int? currentPage;
4446

4547
private int? pageSize;
@@ -48,6 +50,19 @@ public DescribeCategoryTemplateListRequest()
4850

4951
private string lang;
5052

53+
public int? FeatureType
54+
{
55+
get
56+
{
57+
return featureType;
58+
}
59+
set
60+
{
61+
featureType = value;
62+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
63+
}
64+
}
65+
5166
public int? CurrentPage
5267
{
5368
get

aliyun-net-sdk-sddp/Sddp/Model/V20190103/DescribeCategoryTemplateRuleListRequest.cs

+15
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ public DescribeCategoryTemplateRuleListRequest()
4646

4747
private string lang;
4848

49+
private int? featureType;
50+
4951
private int? currentPage;
5052

5153
private int? status;
@@ -89,6 +91,19 @@ public string Lang
8991
}
9092
}
9193

94+
public int? FeatureType
95+
{
96+
get
97+
{
98+
return featureType;
99+
}
100+
set
101+
{
102+
featureType = value;
103+
DictionaryUtil.Add(QueryParameters, "FeatureType", value.ToString());
104+
}
105+
}
106+
92107
public int? CurrentPage
93108
{
94109
get

0 commit comments

Comments
 (0)