Skip to content

Commit 84fdac5

Browse files
committed
Add CreateDcdnSubTask.
1 parent e0886d8 commit 84fdac5

10 files changed

+587
-2
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-12-27 Version: 2.1.9
2+
- Add CreateDcdnSubTask.
3+
14
2021-12-27 Version: 2.2.7
25
- Add DescribeScdnDomainCcInfo.
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.dcdn;
26+
using Aliyun.Acs.dcdn.Transform;
27+
using Aliyun.Acs.dcdn.Transform.V20180115;
28+
29+
namespace Aliyun.Acs.dcdn.Model.V20180115
30+
{
31+
public class DescribeDcdnEsExceptionDataRequest : RpcAcsRequest<DescribeDcdnEsExceptionDataResponse>
32+
{
33+
public DescribeDcdnEsExceptionDataRequest()
34+
: base("dcdn", "2018-01-15", "DescribeDcdnEsExceptionData")
35+
{
36+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
37+
{
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.dcdn.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.dcdn.Endpoint.endpointRegionalType, null);
40+
}
41+
Method = MethodType.POST;
42+
}
43+
44+
private string startTime;
45+
46+
private string endTime;
47+
48+
private long? ownerId;
49+
50+
private string ruleId;
51+
52+
public string StartTime
53+
{
54+
get
55+
{
56+
return startTime;
57+
}
58+
set
59+
{
60+
startTime = value;
61+
DictionaryUtil.Add(QueryParameters, "StartTime", value);
62+
}
63+
}
64+
65+
public string EndTime
66+
{
67+
get
68+
{
69+
return endTime;
70+
}
71+
set
72+
{
73+
endTime = value;
74+
DictionaryUtil.Add(QueryParameters, "EndTime", value);
75+
}
76+
}
77+
78+
public long? OwnerId
79+
{
80+
get
81+
{
82+
return ownerId;
83+
}
84+
set
85+
{
86+
ownerId = value;
87+
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
88+
}
89+
}
90+
91+
public string RuleId
92+
{
93+
get
94+
{
95+
return ruleId;
96+
}
97+
set
98+
{
99+
ruleId = value;
100+
DictionaryUtil.Add(QueryParameters, "RuleId", value);
101+
}
102+
}
103+
104+
public override bool CheckShowJsonItemName()
105+
{
106+
return false;
107+
}
108+
109+
public override DescribeDcdnEsExceptionDataResponse GetResponse(UnmarshallerContext unmarshallerContext)
110+
{
111+
return DescribeDcdnEsExceptionDataResponseUnmarshaller.Unmarshall(unmarshallerContext);
112+
}
113+
}
114+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
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.dcdn.Model.V20180115
24+
{
25+
public class DescribeDcdnEsExceptionDataResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private List<DescribeDcdnEsExceptionData_Content> contents;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public List<DescribeDcdnEsExceptionData_Content> Contents
45+
{
46+
get
47+
{
48+
return contents;
49+
}
50+
set
51+
{
52+
contents = value;
53+
}
54+
}
55+
56+
public class DescribeDcdnEsExceptionData_Content
57+
{
58+
59+
private string name;
60+
61+
private List<string> columns;
62+
63+
private List<string> points;
64+
65+
public string Name
66+
{
67+
get
68+
{
69+
return name;
70+
}
71+
set
72+
{
73+
name = value;
74+
}
75+
}
76+
77+
public List<string> Columns
78+
{
79+
get
80+
{
81+
return columns;
82+
}
83+
set
84+
{
85+
columns = value;
86+
}
87+
}
88+
89+
public List<string> Points
90+
{
91+
get
92+
{
93+
return points;
94+
}
95+
set
96+
{
97+
points = value;
98+
}
99+
}
100+
}
101+
}
102+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.dcdn;
26+
using Aliyun.Acs.dcdn.Transform;
27+
using Aliyun.Acs.dcdn.Transform.V20180115;
28+
29+
namespace Aliyun.Acs.dcdn.Model.V20180115
30+
{
31+
public class DescribeDcdnEsExecuteDataRequest : RpcAcsRequest<DescribeDcdnEsExecuteDataResponse>
32+
{
33+
public DescribeDcdnEsExecuteDataRequest()
34+
: base("dcdn", "2018-01-15", "DescribeDcdnEsExecuteData")
35+
{
36+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
37+
{
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.dcdn.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.dcdn.Endpoint.endpointRegionalType, null);
40+
}
41+
Method = MethodType.POST;
42+
}
43+
44+
private string startTime;
45+
46+
private string endTime;
47+
48+
private long? ownerId;
49+
50+
private string ruleId;
51+
52+
public string StartTime
53+
{
54+
get
55+
{
56+
return startTime;
57+
}
58+
set
59+
{
60+
startTime = value;
61+
DictionaryUtil.Add(QueryParameters, "StartTime", value);
62+
}
63+
}
64+
65+
public string EndTime
66+
{
67+
get
68+
{
69+
return endTime;
70+
}
71+
set
72+
{
73+
endTime = value;
74+
DictionaryUtil.Add(QueryParameters, "EndTime", value);
75+
}
76+
}
77+
78+
public long? OwnerId
79+
{
80+
get
81+
{
82+
return ownerId;
83+
}
84+
set
85+
{
86+
ownerId = value;
87+
DictionaryUtil.Add(QueryParameters, "OwnerId", value.ToString());
88+
}
89+
}
90+
91+
public string RuleId
92+
{
93+
get
94+
{
95+
return ruleId;
96+
}
97+
set
98+
{
99+
ruleId = value;
100+
DictionaryUtil.Add(QueryParameters, "RuleId", value);
101+
}
102+
}
103+
104+
public override bool CheckShowJsonItemName()
105+
{
106+
return false;
107+
}
108+
109+
public override DescribeDcdnEsExecuteDataResponse GetResponse(UnmarshallerContext unmarshallerContext)
110+
{
111+
return DescribeDcdnEsExecuteDataResponseUnmarshaller.Unmarshall(unmarshallerContext);
112+
}
113+
}
114+
}

0 commit comments

Comments
 (0)