Skip to content

Commit e250d24

Browse files
committed
Generated 2020-05-18, 2018-06-01 for dataworks-public.
1 parent e34b690 commit e250d24

20 files changed

+1381
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-07-08 Version: 3.3.20
2+
- Generated 2020-05-18, 2018-06-01 for `dataworks-public`.
3+
14
2021-07-08 Version: 1.0.7
25
- Generated 2019-01-01 for `Cassandra`.
36

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.dataworks_public;
26+
using Aliyun.Acs.dataworks_public.Transform;
27+
using Aliyun.Acs.dataworks_public.Transform.V20180601;
28+
29+
namespace Aliyun.Acs.dataworks_public.Model.V20180601
30+
{
31+
public class QueryDataImportProcessRequest : RpcAcsRequest<QueryDataImportProcessResponse>
32+
{
33+
public QueryDataImportProcessRequest()
34+
: base("dataworks-public", "2018-06-01", "QueryDataImportProcess")
35+
{
36+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
37+
{
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.dataworks_public.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.dataworks_public.Endpoint.endpointRegionalType, null);
40+
}
41+
Method = MethodType.POST;
42+
}
43+
44+
private string subUid;
45+
46+
public string SubUid
47+
{
48+
get
49+
{
50+
return subUid;
51+
}
52+
set
53+
{
54+
subUid = value;
55+
DictionaryUtil.Add(QueryParameters, "SubUid", value);
56+
}
57+
}
58+
59+
public override bool CheckShowJsonItemName()
60+
{
61+
return false;
62+
}
63+
64+
public override QueryDataImportProcessResponse GetResponse(UnmarshallerContext unmarshallerContext)
65+
{
66+
return QueryDataImportProcessResponseUnmarshaller.Unmarshall(unmarshallerContext);
67+
}
68+
}
69+
}
Lines changed: 102 additions & 0 deletions
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.dataworks_public.Model.V20180601
24+
{
25+
public class QueryDataImportProcessResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private string message;
31+
32+
private int? code;
33+
34+
private QueryDataImportProcess_Data data;
35+
36+
public string RequestId
37+
{
38+
get
39+
{
40+
return requestId;
41+
}
42+
set
43+
{
44+
requestId = value;
45+
}
46+
}
47+
48+
public string Message
49+
{
50+
get
51+
{
52+
return message;
53+
}
54+
set
55+
{
56+
message = value;
57+
}
58+
}
59+
60+
public int? Code
61+
{
62+
get
63+
{
64+
return code;
65+
}
66+
set
67+
{
68+
code = value;
69+
}
70+
}
71+
72+
public QueryDataImportProcess_Data Data
73+
{
74+
get
75+
{
76+
return data;
77+
}
78+
set
79+
{
80+
data = value;
81+
}
82+
}
83+
84+
public class QueryDataImportProcess_Data
85+
{
86+
87+
private string taskId;
88+
89+
public string TaskId
90+
{
91+
get
92+
{
93+
return taskId;
94+
}
95+
set
96+
{
97+
taskId = value;
98+
}
99+
}
100+
}
101+
}
102+
}
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.dataworks_public;
26+
using Aliyun.Acs.dataworks_public.Transform;
27+
using Aliyun.Acs.dataworks_public.Transform.V20180601;
28+
29+
namespace Aliyun.Acs.dataworks_public.Model.V20180601
30+
{
31+
public class QueryDataImportProcessStatusRequest : RpcAcsRequest<QueryDataImportProcessStatusResponse>
32+
{
33+
public QueryDataImportProcessStatusRequest()
34+
: base("dataworks-public", "2018-06-01", "QueryDataImportProcessStatus")
35+
{
36+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
37+
{
38+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.dataworks_public.Endpoint.endpointMap, null);
39+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.dataworks_public.Endpoint.endpointRegionalType, null);
40+
}
41+
Method = MethodType.POST;
42+
}
43+
44+
private string taskId;
45+
46+
public string TaskId
47+
{
48+
get
49+
{
50+
return taskId;
51+
}
52+
set
53+
{
54+
taskId = value;
55+
DictionaryUtil.Add(QueryParameters, "TaskId", value);
56+
}
57+
}
58+
59+
public override bool CheckShowJsonItemName()
60+
{
61+
return false;
62+
}
63+
64+
public override QueryDataImportProcessStatusResponse GetResponse(UnmarshallerContext unmarshallerContext)
65+
{
66+
return QueryDataImportProcessStatusResponseUnmarshaller.Unmarshall(unmarshallerContext);
67+
}
68+
}
69+
}

0 commit comments

Comments
 (0)