Skip to content

Commit ed9b735

Browse files
committed
Release.
1 parent e4b2107 commit ed9b735

File tree

227 files changed

+21828
-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.

227 files changed

+21828
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-03-02 Version: 1.0.0
2+
- Release.
3+
14
2023-03-02 Version: 1.0.0
25
- Generated 2019-05-10 for `ltl`.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,259 @@
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.lto;
26+
using Aliyun.Acs.lto.Transform;
27+
using Aliyun.Acs.lto.Transform.V20210707;
28+
29+
namespace Aliyun.Acs.lto.Model.V20210707
30+
{
31+
public class AddBaaSAntChainBizChainRequest : RpcAcsRequest<AddBaaSAntChainBizChainResponse>
32+
{
33+
public AddBaaSAntChainBizChainRequest()
34+
: base("lto", "2021-07-07", "AddBaaSAntChainBizChain")
35+
{
36+
Method = MethodType.POST;
37+
}
38+
39+
private string caCertPassword;
40+
41+
private string nodeNameList;
42+
43+
private string remark;
44+
45+
private string userKey;
46+
47+
private string clientCert;
48+
49+
private string baaSAntChainConsortiumId;
50+
51+
private string userKeyPassword;
52+
53+
private string baaSAntChainChainId;
54+
55+
private string clientKey;
56+
57+
private string caCert;
58+
59+
private string name;
60+
61+
private string clientKeyPassword;
62+
63+
private string contractTemplateIdList;
64+
65+
private string userName;
66+
67+
public string CaCertPassword
68+
{
69+
get
70+
{
71+
return caCertPassword;
72+
}
73+
set
74+
{
75+
caCertPassword = value;
76+
DictionaryUtil.Add(QueryParameters, "CaCertPassword", value);
77+
}
78+
}
79+
80+
public string NodeNameList
81+
{
82+
get
83+
{
84+
return nodeNameList;
85+
}
86+
set
87+
{
88+
nodeNameList = value;
89+
DictionaryUtil.Add(QueryParameters, "NodeNameList", value);
90+
}
91+
}
92+
93+
public string Remark
94+
{
95+
get
96+
{
97+
return remark;
98+
}
99+
set
100+
{
101+
remark = value;
102+
DictionaryUtil.Add(QueryParameters, "Remark", value);
103+
}
104+
}
105+
106+
public string UserKey
107+
{
108+
get
109+
{
110+
return userKey;
111+
}
112+
set
113+
{
114+
userKey = value;
115+
DictionaryUtil.Add(QueryParameters, "UserKey", value);
116+
}
117+
}
118+
119+
public string ClientCert
120+
{
121+
get
122+
{
123+
return clientCert;
124+
}
125+
set
126+
{
127+
clientCert = value;
128+
DictionaryUtil.Add(QueryParameters, "ClientCert", value);
129+
}
130+
}
131+
132+
public string BaaSAntChainConsortiumId
133+
{
134+
get
135+
{
136+
return baaSAntChainConsortiumId;
137+
}
138+
set
139+
{
140+
baaSAntChainConsortiumId = value;
141+
DictionaryUtil.Add(QueryParameters, "BaaSAntChainConsortiumId", value);
142+
}
143+
}
144+
145+
public string UserKeyPassword
146+
{
147+
get
148+
{
149+
return userKeyPassword;
150+
}
151+
set
152+
{
153+
userKeyPassword = value;
154+
DictionaryUtil.Add(QueryParameters, "UserKeyPassword", value);
155+
}
156+
}
157+
158+
public string BaaSAntChainChainId
159+
{
160+
get
161+
{
162+
return baaSAntChainChainId;
163+
}
164+
set
165+
{
166+
baaSAntChainChainId = value;
167+
DictionaryUtil.Add(QueryParameters, "BaaSAntChainChainId", value);
168+
}
169+
}
170+
171+
public string ClientKey
172+
{
173+
get
174+
{
175+
return clientKey;
176+
}
177+
set
178+
{
179+
clientKey = value;
180+
DictionaryUtil.Add(QueryParameters, "ClientKey", value);
181+
}
182+
}
183+
184+
public string CaCert
185+
{
186+
get
187+
{
188+
return caCert;
189+
}
190+
set
191+
{
192+
caCert = value;
193+
DictionaryUtil.Add(QueryParameters, "CaCert", value);
194+
}
195+
}
196+
197+
public string Name
198+
{
199+
get
200+
{
201+
return name;
202+
}
203+
set
204+
{
205+
name = value;
206+
DictionaryUtil.Add(QueryParameters, "Name", value);
207+
}
208+
}
209+
210+
public string ClientKeyPassword
211+
{
212+
get
213+
{
214+
return clientKeyPassword;
215+
}
216+
set
217+
{
218+
clientKeyPassword = value;
219+
DictionaryUtil.Add(QueryParameters, "ClientKeyPassword", value);
220+
}
221+
}
222+
223+
public string ContractTemplateIdList
224+
{
225+
get
226+
{
227+
return contractTemplateIdList;
228+
}
229+
set
230+
{
231+
contractTemplateIdList = value;
232+
DictionaryUtil.Add(QueryParameters, "ContractTemplateIdList", value);
233+
}
234+
}
235+
236+
public string UserName
237+
{
238+
get
239+
{
240+
return userName;
241+
}
242+
set
243+
{
244+
userName = value;
245+
DictionaryUtil.Add(QueryParameters, "UserName", value);
246+
}
247+
}
248+
249+
public override bool CheckShowJsonItemName()
250+
{
251+
return false;
252+
}
253+
254+
public override AddBaaSAntChainBizChainResponse GetResponse(UnmarshallerContext unmarshallerContext)
255+
{
256+
return AddBaaSAntChainBizChainResponseUnmarshaller.Unmarshall(unmarshallerContext);
257+
}
258+
}
259+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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.lto.Model.V20210707
24+
{
25+
public class AddBaaSAntChainBizChainResponse : AcsResponse
26+
{
27+
28+
private string code;
29+
30+
private int? httpStatusCode;
31+
32+
private string message;
33+
34+
private string requestId;
35+
36+
private bool? success;
37+
38+
public string Code
39+
{
40+
get
41+
{
42+
return code;
43+
}
44+
set
45+
{
46+
code = value;
47+
}
48+
}
49+
50+
public int? HttpStatusCode
51+
{
52+
get
53+
{
54+
return httpStatusCode;
55+
}
56+
set
57+
{
58+
httpStatusCode = value;
59+
}
60+
}
61+
62+
public string Message
63+
{
64+
get
65+
{
66+
return message;
67+
}
68+
set
69+
{
70+
message = value;
71+
}
72+
}
73+
74+
public string RequestId
75+
{
76+
get
77+
{
78+
return requestId;
79+
}
80+
set
81+
{
82+
requestId = value;
83+
}
84+
}
85+
86+
public bool? Success
87+
{
88+
get
89+
{
90+
return success;
91+
}
92+
set
93+
{
94+
success = value;
95+
}
96+
}
97+
}
98+
}

0 commit comments

Comments
 (0)