Skip to content

Commit 90ee08f

Browse files
committed
Optimize GetInternetTuple API.
1 parent d86a6de commit 90ee08f

32 files changed

+4413
-0
lines changed

CHANGELOG

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2024-04-10 Version: 1.0.0
2+
- Optimize GetInternetTuple API.
3+
- Optimize CreateNetworkPath API.
4+
- Optimize DeleteNetworkPath API.
5+
- Optimize CreateNetworkReachableAnalysis API.
6+
- Optimize GetNetworkReachableAnalysis API.
7+
- Publish DeleteNetworkReachableAnalysis API.
8+
- Publish CreateAndAnalyzeNetworkPath API.
9+
110
2024-04-03 Version: 1.0.0
211
- Generated 2024-03-25 for `aps`.
312

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
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.nis.Transform;
26+
using Aliyun.Acs.nis.Transform.V20211216;
27+
28+
namespace Aliyun.Acs.nis.Model.V20211216
29+
{
30+
public class CreateAndAnalyzeNetworkPathRequest : RpcAcsRequest<CreateAndAnalyzeNetworkPathResponse>
31+
{
32+
public CreateAndAnalyzeNetworkPathRequest()
33+
: base("nis", "2021-12-16", "CreateAndAnalyzeNetworkPath", "networkana", "openAPI")
34+
{
35+
}
36+
37+
private string targetId;
38+
39+
private string targetType;
40+
41+
private string targetIpAddress;
42+
43+
private int? sourcePort;
44+
45+
private string protocol;
46+
47+
private string sourceType;
48+
49+
private int? targetPort;
50+
51+
private string sourceId;
52+
53+
private string sourceIpAddress;
54+
55+
public string TargetId
56+
{
57+
get
58+
{
59+
return targetId;
60+
}
61+
set
62+
{
63+
targetId = value;
64+
DictionaryUtil.Add(QueryParameters, "TargetId", value);
65+
}
66+
}
67+
68+
public string TargetType
69+
{
70+
get
71+
{
72+
return targetType;
73+
}
74+
set
75+
{
76+
targetType = value;
77+
DictionaryUtil.Add(QueryParameters, "TargetType", value);
78+
}
79+
}
80+
81+
public string TargetIpAddress
82+
{
83+
get
84+
{
85+
return targetIpAddress;
86+
}
87+
set
88+
{
89+
targetIpAddress = value;
90+
DictionaryUtil.Add(QueryParameters, "TargetIpAddress", value);
91+
}
92+
}
93+
94+
public int? SourcePort
95+
{
96+
get
97+
{
98+
return sourcePort;
99+
}
100+
set
101+
{
102+
sourcePort = value;
103+
DictionaryUtil.Add(QueryParameters, "SourcePort", value.ToString());
104+
}
105+
}
106+
107+
public string Protocol
108+
{
109+
get
110+
{
111+
return protocol;
112+
}
113+
set
114+
{
115+
protocol = value;
116+
DictionaryUtil.Add(QueryParameters, "Protocol", value);
117+
}
118+
}
119+
120+
public string SourceType
121+
{
122+
get
123+
{
124+
return sourceType;
125+
}
126+
set
127+
{
128+
sourceType = value;
129+
DictionaryUtil.Add(QueryParameters, "SourceType", value);
130+
}
131+
}
132+
133+
public int? TargetPort
134+
{
135+
get
136+
{
137+
return targetPort;
138+
}
139+
set
140+
{
141+
targetPort = value;
142+
DictionaryUtil.Add(QueryParameters, "TargetPort", value.ToString());
143+
}
144+
}
145+
146+
public string SourceId
147+
{
148+
get
149+
{
150+
return sourceId;
151+
}
152+
set
153+
{
154+
sourceId = value;
155+
DictionaryUtil.Add(QueryParameters, "SourceId", value);
156+
}
157+
}
158+
159+
public string SourceIpAddress
160+
{
161+
get
162+
{
163+
return sourceIpAddress;
164+
}
165+
set
166+
{
167+
sourceIpAddress = value;
168+
DictionaryUtil.Add(QueryParameters, "SourceIpAddress", value);
169+
}
170+
}
171+
172+
public override bool CheckShowJsonItemName()
173+
{
174+
return false;
175+
}
176+
177+
public override CreateAndAnalyzeNetworkPathResponse GetResponse(UnmarshallerContext unmarshallerContext)
178+
{
179+
return CreateAndAnalyzeNetworkPathResponseUnmarshaller.Unmarshall(unmarshallerContext);
180+
}
181+
}
182+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
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.nis.Model.V20211216
24+
{
25+
public class CreateAndAnalyzeNetworkPathResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string networkReachableAnalysisId;
31+
32+
private string sourceId;
33+
34+
private string targetId;
35+
36+
private string sourceType;
37+
38+
private string targetType;
39+
40+
private string sourcePort;
41+
42+
private string targetPort;
43+
44+
private string protocol;
45+
46+
private string sourceIpAddress;
47+
48+
private string targetIpAddress;
49+
50+
public string RequestId
51+
{
52+
get
53+
{
54+
return requestId;
55+
}
56+
set
57+
{
58+
requestId = value;
59+
}
60+
}
61+
62+
public string NetworkReachableAnalysisId
63+
{
64+
get
65+
{
66+
return networkReachableAnalysisId;
67+
}
68+
set
69+
{
70+
networkReachableAnalysisId = value;
71+
}
72+
}
73+
74+
public string SourceId
75+
{
76+
get
77+
{
78+
return sourceId;
79+
}
80+
set
81+
{
82+
sourceId = value;
83+
}
84+
}
85+
86+
public string TargetId
87+
{
88+
get
89+
{
90+
return targetId;
91+
}
92+
set
93+
{
94+
targetId = value;
95+
}
96+
}
97+
98+
public string SourceType
99+
{
100+
get
101+
{
102+
return sourceType;
103+
}
104+
set
105+
{
106+
sourceType = value;
107+
}
108+
}
109+
110+
public string TargetType
111+
{
112+
get
113+
{
114+
return targetType;
115+
}
116+
set
117+
{
118+
targetType = value;
119+
}
120+
}
121+
122+
public string SourcePort
123+
{
124+
get
125+
{
126+
return sourcePort;
127+
}
128+
set
129+
{
130+
sourcePort = value;
131+
}
132+
}
133+
134+
public string TargetPort
135+
{
136+
get
137+
{
138+
return targetPort;
139+
}
140+
set
141+
{
142+
targetPort = value;
143+
}
144+
}
145+
146+
public string Protocol
147+
{
148+
get
149+
{
150+
return protocol;
151+
}
152+
set
153+
{
154+
protocol = value;
155+
}
156+
}
157+
158+
public string SourceIpAddress
159+
{
160+
get
161+
{
162+
return sourceIpAddress;
163+
}
164+
set
165+
{
166+
sourceIpAddress = value;
167+
}
168+
}
169+
170+
public string TargetIpAddress
171+
{
172+
get
173+
{
174+
return targetIpAddress;
175+
}
176+
set
177+
{
178+
targetIpAddress = value;
179+
}
180+
}
181+
}
182+
}

0 commit comments

Comments
 (0)