Skip to content

Commit 4a237e1

Browse files
committed
Add GetGraphQueryTemplates.
1 parent 4d9fe3f commit 4a237e1

14 files changed

+1329
-0
lines changed

CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2023-07-24 Version: 1.0.0
2+
- Add GetGraphQueryTemplates.
3+
- Add Api GetGraphQueryResult.
4+
- Support http.
5+
16
2023-07-23 Version: 2.9.5
27
- Fix 500 for CreateOrder.
38
- Support sts.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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.Sasti;
26+
using Aliyun.Acs.Sasti.Transform;
27+
using Aliyun.Acs.Sasti.Transform.V20200512;
28+
29+
namespace Aliyun.Acs.Sasti.Model.V20200512
30+
{
31+
public class DescribeDomainReportRequest : RpcAcsRequest<DescribeDomainReportResponse>
32+
{
33+
public DescribeDomainReportRequest()
34+
: base("Sasti", "2020-05-12", "DescribeDomainReport")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private string field;
40+
41+
private string domain;
42+
43+
private string serviceLang;
44+
45+
public string Field
46+
{
47+
get
48+
{
49+
return field;
50+
}
51+
set
52+
{
53+
field = value;
54+
DictionaryUtil.Add(QueryParameters, "Field", value);
55+
}
56+
}
57+
58+
public string Domain
59+
{
60+
get
61+
{
62+
return domain;
63+
}
64+
set
65+
{
66+
domain = value;
67+
DictionaryUtil.Add(QueryParameters, "Domain", value);
68+
}
69+
}
70+
71+
public string ServiceLang
72+
{
73+
get
74+
{
75+
return serviceLang;
76+
}
77+
set
78+
{
79+
serviceLang = value;
80+
DictionaryUtil.Add(QueryParameters, "ServiceLang", value);
81+
}
82+
}
83+
84+
public override bool CheckShowJsonItemName()
85+
{
86+
return false;
87+
}
88+
89+
public override DescribeDomainReportResponse GetResponse(UnmarshallerContext unmarshallerContext)
90+
{
91+
return DescribeDomainReportResponseUnmarshaller.Unmarshall(unmarshallerContext);
92+
}
93+
}
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
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+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.Sasti.Model.V20200512
24+
{
25+
public class DescribeDomainReportResponse : AcsResponse
26+
{
27+
28+
private string intelligences;
29+
30+
private string domain;
31+
32+
private string sslCert;
33+
34+
private string attackPreferenceTop5;
35+
36+
private string threatTypes;
37+
38+
private string confidence;
39+
40+
private string threatLevel;
41+
42+
private string attackCntByThreatType;
43+
44+
private string context;
45+
46+
private string whois;
47+
48+
private string requestId;
49+
50+
private string scenario;
51+
52+
private string basic;
53+
54+
private string group;
55+
56+
public string Intelligences
57+
{
58+
get
59+
{
60+
return intelligences;
61+
}
62+
set
63+
{
64+
intelligences = value;
65+
}
66+
}
67+
68+
public string Domain
69+
{
70+
get
71+
{
72+
return domain;
73+
}
74+
set
75+
{
76+
domain = value;
77+
}
78+
}
79+
80+
public string SslCert
81+
{
82+
get
83+
{
84+
return sslCert;
85+
}
86+
set
87+
{
88+
sslCert = value;
89+
}
90+
}
91+
92+
public string AttackPreferenceTop5
93+
{
94+
get
95+
{
96+
return attackPreferenceTop5;
97+
}
98+
set
99+
{
100+
attackPreferenceTop5 = value;
101+
}
102+
}
103+
104+
public string ThreatTypes
105+
{
106+
get
107+
{
108+
return threatTypes;
109+
}
110+
set
111+
{
112+
threatTypes = value;
113+
}
114+
}
115+
116+
public string Confidence
117+
{
118+
get
119+
{
120+
return confidence;
121+
}
122+
set
123+
{
124+
confidence = value;
125+
}
126+
}
127+
128+
public string ThreatLevel
129+
{
130+
get
131+
{
132+
return threatLevel;
133+
}
134+
set
135+
{
136+
threatLevel = value;
137+
}
138+
}
139+
140+
public string AttackCntByThreatType
141+
{
142+
get
143+
{
144+
return attackCntByThreatType;
145+
}
146+
set
147+
{
148+
attackCntByThreatType = value;
149+
}
150+
}
151+
152+
public string Context
153+
{
154+
get
155+
{
156+
return context;
157+
}
158+
set
159+
{
160+
context = value;
161+
}
162+
}
163+
164+
public string Whois
165+
{
166+
get
167+
{
168+
return whois;
169+
}
170+
set
171+
{
172+
whois = value;
173+
}
174+
}
175+
176+
public string RequestId
177+
{
178+
get
179+
{
180+
return requestId;
181+
}
182+
set
183+
{
184+
requestId = value;
185+
}
186+
}
187+
188+
public string Scenario
189+
{
190+
get
191+
{
192+
return scenario;
193+
}
194+
set
195+
{
196+
scenario = value;
197+
}
198+
}
199+
200+
public string Basic
201+
{
202+
get
203+
{
204+
return basic;
205+
}
206+
set
207+
{
208+
basic = value;
209+
}
210+
}
211+
212+
public string Group
213+
{
214+
get
215+
{
216+
return group;
217+
}
218+
set
219+
{
220+
group = value;
221+
}
222+
}
223+
}
224+
}

0 commit comments

Comments
 (0)