Skip to content

Commit f92e5c3

Browse files
committed
Aaaaa.
1 parent d1e7647 commit f92e5c3

File tree

60 files changed

+4573
-0
lines changed

Some content is hidden

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

60 files changed

+4573
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-05-22 Version: 1.0.0
2+
- Aaaaa.
3+
14
2021-05-21 Version: 3.3.7
25
- Supported DescribeLoadBalancers with DeleteProtection and so on.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
20+
using System.Collections.Generic;
21+
22+
namespace Aliyun.Acs.address_purification
23+
{
24+
public class Endpoint
25+
{
26+
public static Dictionary<string, string> endpointMap = new Dictionary<string, string>()
27+
{};
28+
29+
public static string endpointRegionalType = "regional";
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
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.address_purification.Transform;
26+
using Aliyun.Acs.address_purification.Transform.V20191118;
27+
28+
namespace Aliyun.Acs.address_purification.Model.V20191118
29+
{
30+
public class ClassifyPOIRequest : RpcAcsRequest<ClassifyPOIResponse>
31+
{
32+
public ClassifyPOIRequest()
33+
: base("address-purification", "2019-11-18", "ClassifyPOI", "addrp", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.address_purification.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.address_purification.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string defaultProvince;
44+
45+
private string serviceCode;
46+
47+
private string defaultCity;
48+
49+
private string defaultDistrict;
50+
51+
private string appKey;
52+
53+
private string text;
54+
55+
public string DefaultProvince
56+
{
57+
get
58+
{
59+
return defaultProvince;
60+
}
61+
set
62+
{
63+
defaultProvince = value;
64+
DictionaryUtil.Add(BodyParameters, "DefaultProvince", value);
65+
}
66+
}
67+
68+
public string ServiceCode
69+
{
70+
get
71+
{
72+
return serviceCode;
73+
}
74+
set
75+
{
76+
serviceCode = value;
77+
DictionaryUtil.Add(BodyParameters, "ServiceCode", value);
78+
}
79+
}
80+
81+
public string DefaultCity
82+
{
83+
get
84+
{
85+
return defaultCity;
86+
}
87+
set
88+
{
89+
defaultCity = value;
90+
DictionaryUtil.Add(BodyParameters, "DefaultCity", value);
91+
}
92+
}
93+
94+
public string DefaultDistrict
95+
{
96+
get
97+
{
98+
return defaultDistrict;
99+
}
100+
set
101+
{
102+
defaultDistrict = value;
103+
DictionaryUtil.Add(BodyParameters, "DefaultDistrict", value);
104+
}
105+
}
106+
107+
public string AppKey
108+
{
109+
get
110+
{
111+
return appKey;
112+
}
113+
set
114+
{
115+
appKey = value;
116+
DictionaryUtil.Add(BodyParameters, "AppKey", value);
117+
}
118+
}
119+
120+
public string Text
121+
{
122+
get
123+
{
124+
return text;
125+
}
126+
set
127+
{
128+
text = value;
129+
DictionaryUtil.Add(BodyParameters, "Text", value);
130+
}
131+
}
132+
133+
public override bool CheckShowJsonItemName()
134+
{
135+
return false;
136+
}
137+
138+
public override ClassifyPOIResponse GetResponse(UnmarshallerContext unmarshallerContext)
139+
{
140+
return ClassifyPOIResponseUnmarshaller.Unmarshall(unmarshallerContext);
141+
}
142+
}
143+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
23+
namespace Aliyun.Acs.address_purification.Model.V20191118
24+
{
25+
public class ClassifyPOIResponse : AcsResponse
26+
{
27+
28+
private string data;
29+
30+
private string requestId;
31+
32+
public string Data
33+
{
34+
get
35+
{
36+
return data;
37+
}
38+
set
39+
{
40+
data = value;
41+
}
42+
}
43+
44+
public string RequestId
45+
{
46+
get
47+
{
48+
return requestId;
49+
}
50+
set
51+
{
52+
requestId = value;
53+
}
54+
}
55+
}
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
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.address_purification.Transform;
26+
using Aliyun.Acs.address_purification.Transform.V20191118;
27+
28+
namespace Aliyun.Acs.address_purification.Model.V20191118
29+
{
30+
public class CompleteAddressRequest : RpcAcsRequest<CompleteAddressResponse>
31+
{
32+
public CompleteAddressRequest()
33+
: base("address-purification", "2019-11-18", "CompleteAddress", "addrp", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.address_purification.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.address_purification.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string defaultProvince;
44+
45+
private string serviceCode;
46+
47+
private string defaultCity;
48+
49+
private string defaultDistrict;
50+
51+
private string appKey;
52+
53+
private string text;
54+
55+
public string DefaultProvince
56+
{
57+
get
58+
{
59+
return defaultProvince;
60+
}
61+
set
62+
{
63+
defaultProvince = value;
64+
DictionaryUtil.Add(BodyParameters, "DefaultProvince", value);
65+
}
66+
}
67+
68+
public string ServiceCode
69+
{
70+
get
71+
{
72+
return serviceCode;
73+
}
74+
set
75+
{
76+
serviceCode = value;
77+
DictionaryUtil.Add(BodyParameters, "ServiceCode", value);
78+
}
79+
}
80+
81+
public string DefaultCity
82+
{
83+
get
84+
{
85+
return defaultCity;
86+
}
87+
set
88+
{
89+
defaultCity = value;
90+
DictionaryUtil.Add(BodyParameters, "DefaultCity", value);
91+
}
92+
}
93+
94+
public string DefaultDistrict
95+
{
96+
get
97+
{
98+
return defaultDistrict;
99+
}
100+
set
101+
{
102+
defaultDistrict = value;
103+
DictionaryUtil.Add(BodyParameters, "DefaultDistrict", value);
104+
}
105+
}
106+
107+
public string AppKey
108+
{
109+
get
110+
{
111+
return appKey;
112+
}
113+
set
114+
{
115+
appKey = value;
116+
DictionaryUtil.Add(BodyParameters, "AppKey", value);
117+
}
118+
}
119+
120+
public string Text
121+
{
122+
get
123+
{
124+
return text;
125+
}
126+
set
127+
{
128+
text = value;
129+
DictionaryUtil.Add(BodyParameters, "Text", value);
130+
}
131+
}
132+
133+
public override bool CheckShowJsonItemName()
134+
{
135+
return false;
136+
}
137+
138+
public override CompleteAddressResponse GetResponse(UnmarshallerContext unmarshallerContext)
139+
{
140+
return CompleteAddressResponseUnmarshaller.Unmarshall(unmarshallerContext);
141+
}
142+
}
143+
}

0 commit comments

Comments
 (0)