Skip to content

Commit 126c852

Browse files
committed
Generated 2025-04-29 for WebsiteBuild.
1 parent 84a5943 commit 126c852

34 files changed

+4758
-44
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-06 Version: 1.0.8
2+
- Generated 2025-04-29 for `WebsiteBuild`.
3+
14
2025-11-03 Version: 1.0.1
25
- DescribeSoarRecords remove the following fields,TriggerDataId Success DataSourceName ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
36
- DescribeSoarTaskAndActions remove the following fields,TriggerDataId Sao Success All DataSourceName ResultLevel ResultMessage ResultDetailInfo TaskTenantId TaskType FlowTag.
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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.WebsiteBuild;
26+
using Aliyun.Acs.WebsiteBuild.Transform;
27+
using Aliyun.Acs.WebsiteBuild.Transform.V20250429;
28+
29+
namespace Aliyun.Acs.WebsiteBuild.Model.V20250429
30+
{
31+
public class BindAppDomainRequest : RpcAcsRequest<BindAppDomainResponse>
32+
{
33+
public BindAppDomainRequest()
34+
: base("WebsiteBuild", "2025-04-29", "BindAppDomain")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string domainName;
41+
42+
private string extend;
43+
44+
private string bizId;
45+
46+
private string operateType;
47+
48+
public string DomainName
49+
{
50+
get
51+
{
52+
return domainName;
53+
}
54+
set
55+
{
56+
domainName = value;
57+
DictionaryUtil.Add(QueryParameters, "DomainName", value);
58+
}
59+
}
60+
61+
public string Extend
62+
{
63+
get
64+
{
65+
return extend;
66+
}
67+
set
68+
{
69+
extend = value;
70+
DictionaryUtil.Add(QueryParameters, "Extend", value);
71+
}
72+
}
73+
74+
public string BizId
75+
{
76+
get
77+
{
78+
return bizId;
79+
}
80+
set
81+
{
82+
bizId = value;
83+
DictionaryUtil.Add(QueryParameters, "BizId", value);
84+
}
85+
}
86+
87+
public string OperateType
88+
{
89+
get
90+
{
91+
return operateType;
92+
}
93+
set
94+
{
95+
operateType = value;
96+
DictionaryUtil.Add(QueryParameters, "OperateType", value);
97+
}
98+
}
99+
100+
public override bool CheckShowJsonItemName()
101+
{
102+
return false;
103+
}
104+
105+
public override BindAppDomainResponse GetResponse(UnmarshallerContext unmarshallerContext)
106+
{
107+
return BindAppDomainResponseUnmarshaller.Unmarshall(unmarshallerContext);
108+
}
109+
}
110+
}
Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
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.WebsiteBuild.Model.V20250429
24+
{
25+
public class BindAppDomainResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string dynamicCode;
31+
32+
private string dynamicMessage;
33+
34+
private bool? synchro;
35+
36+
private string accessDeniedDetail;
37+
38+
private string rootErrorMsg;
39+
40+
private string rootErrorCode;
41+
42+
private bool? allowRetry;
43+
44+
private string appName;
45+
46+
private List<string> errorArgs;
47+
48+
private BindAppDomain_Module module;
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 DynamicCode
63+
{
64+
get
65+
{
66+
return dynamicCode;
67+
}
68+
set
69+
{
70+
dynamicCode = value;
71+
}
72+
}
73+
74+
public string DynamicMessage
75+
{
76+
get
77+
{
78+
return dynamicMessage;
79+
}
80+
set
81+
{
82+
dynamicMessage = value;
83+
}
84+
}
85+
86+
public bool? Synchro
87+
{
88+
get
89+
{
90+
return synchro;
91+
}
92+
set
93+
{
94+
synchro = value;
95+
}
96+
}
97+
98+
public string AccessDeniedDetail
99+
{
100+
get
101+
{
102+
return accessDeniedDetail;
103+
}
104+
set
105+
{
106+
accessDeniedDetail = value;
107+
}
108+
}
109+
110+
public string RootErrorMsg
111+
{
112+
get
113+
{
114+
return rootErrorMsg;
115+
}
116+
set
117+
{
118+
rootErrorMsg = value;
119+
}
120+
}
121+
122+
public string RootErrorCode
123+
{
124+
get
125+
{
126+
return rootErrorCode;
127+
}
128+
set
129+
{
130+
rootErrorCode = value;
131+
}
132+
}
133+
134+
public bool? AllowRetry
135+
{
136+
get
137+
{
138+
return allowRetry;
139+
}
140+
set
141+
{
142+
allowRetry = value;
143+
}
144+
}
145+
146+
public string AppName
147+
{
148+
get
149+
{
150+
return appName;
151+
}
152+
set
153+
{
154+
appName = value;
155+
}
156+
}
157+
158+
public List<string> ErrorArgs
159+
{
160+
get
161+
{
162+
return errorArgs;
163+
}
164+
set
165+
{
166+
errorArgs = value;
167+
}
168+
}
169+
170+
public BindAppDomain_Module Module
171+
{
172+
get
173+
{
174+
return module;
175+
}
176+
set
177+
{
178+
module = value;
179+
}
180+
}
181+
182+
public class BindAppDomain_Module
183+
{
184+
185+
private bool? success;
186+
187+
public bool? Success
188+
{
189+
get
190+
{
191+
return success;
192+
}
193+
set
194+
{
195+
success = value;
196+
}
197+
}
198+
}
199+
}
200+
}
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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.WebsiteBuild;
26+
using Aliyun.Acs.WebsiteBuild.Transform;
27+
using Aliyun.Acs.WebsiteBuild.Transform.V20250429;
28+
29+
namespace Aliyun.Acs.WebsiteBuild.Model.V20250429
30+
{
31+
public class DeleteAppDomainCertificateRequest : RpcAcsRequest<DeleteAppDomainCertificateResponse>
32+
{
33+
public DeleteAppDomainCertificateRequest()
34+
: base("WebsiteBuild", "2025-04-29", "DeleteAppDomainCertificate")
35+
{
36+
Protocol = ProtocolType.HTTPS;
37+
Method = MethodType.POST;
38+
}
39+
40+
private string domainName;
41+
42+
private string bizId;
43+
44+
public string DomainName
45+
{
46+
get
47+
{
48+
return domainName;
49+
}
50+
set
51+
{
52+
domainName = value;
53+
DictionaryUtil.Add(QueryParameters, "DomainName", value);
54+
}
55+
}
56+
57+
public string BizId
58+
{
59+
get
60+
{
61+
return bizId;
62+
}
63+
set
64+
{
65+
bizId = value;
66+
DictionaryUtil.Add(QueryParameters, "BizId", value);
67+
}
68+
}
69+
70+
public override bool CheckShowJsonItemName()
71+
{
72+
return false;
73+
}
74+
75+
public override DeleteAppDomainCertificateResponse GetResponse(UnmarshallerContext unmarshallerContext)
76+
{
77+
return DeleteAppDomainCertificateResponseUnmarshaller.Unmarshall(unmarshallerContext);
78+
}
79+
}
80+
}

0 commit comments

Comments
 (0)