Skip to content

Commit adafabe

Browse files
committed
Generated 2018-06-01, 2020-05-18 for dataworks-public.
1 parent 7e5554d commit adafabe

File tree

51 files changed

+3892
-4
lines changed

Some content is hidden

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

51 files changed

+3892
-4
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-07-22 Version: 3.3.23
2+
- Generated 2018-06-01, 2020-05-18 for `dataworks-public`.
3+
14
2021-07-22 Version: 3.0.24
25
- Add private-link support.
36
- Add download dicts.

aliyun-net-sdk-dataworks-public/Dataworks_public/Model/V20180601/CreateRealTimeProcessRequest.cs

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ public CreateRealTimeProcessRequest()
4141
Method = MethodType.POST;
4242
}
4343

44+
private string actionType;
45+
4446
private string jobConfig;
4547

4648
private bool? createResGroup;
@@ -55,6 +57,23 @@ public CreateRealTimeProcessRequest()
5557

5658
private string dataSource;
5759

60+
private long? projectId;
61+
62+
private long? fileId;
63+
64+
public string ActionType
65+
{
66+
get
67+
{
68+
return actionType;
69+
}
70+
set
71+
{
72+
actionType = value;
73+
DictionaryUtil.Add(QueryParameters, "ActionType", value);
74+
}
75+
}
76+
5877
public string JobConfig
5978
{
6079
get
@@ -146,6 +165,32 @@ public string DataSource
146165
}
147166
}
148167

168+
public long? ProjectId
169+
{
170+
get
171+
{
172+
return projectId;
173+
}
174+
set
175+
{
176+
projectId = value;
177+
DictionaryUtil.Add(QueryParameters, "ProjectId", value.ToString());
178+
}
179+
}
180+
181+
public long? FileId
182+
{
183+
get
184+
{
185+
return fileId;
186+
}
187+
set
188+
{
189+
fileId = value;
190+
DictionaryUtil.Add(QueryParameters, "FileId", value.ToString());
191+
}
192+
}
193+
149194
public override bool CheckShowJsonItemName()
150195
{
151196
return false;
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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 DeleteDISyncTaskRequest : RpcAcsRequest<DeleteDISyncTaskResponse>
32+
{
33+
public DeleteDISyncTaskRequest()
34+
: base("dataworks-public", "2018-06-01", "DeleteDISyncTask")
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 taskType;
45+
46+
private long? projectId;
47+
48+
private long? fileId;
49+
50+
public string TaskType
51+
{
52+
get
53+
{
54+
return taskType;
55+
}
56+
set
57+
{
58+
taskType = value;
59+
DictionaryUtil.Add(QueryParameters, "TaskType", value);
60+
}
61+
}
62+
63+
public long? ProjectId
64+
{
65+
get
66+
{
67+
return projectId;
68+
}
69+
set
70+
{
71+
projectId = value;
72+
DictionaryUtil.Add(QueryParameters, "ProjectId", value.ToString());
73+
}
74+
}
75+
76+
public long? FileId
77+
{
78+
get
79+
{
80+
return fileId;
81+
}
82+
set
83+
{
84+
fileId = value;
85+
DictionaryUtil.Add(QueryParameters, "FileId", value.ToString());
86+
}
87+
}
88+
89+
public override bool CheckShowJsonItemName()
90+
{
91+
return false;
92+
}
93+
94+
public override DeleteDISyncTaskResponse GetResponse(UnmarshallerContext unmarshallerContext)
95+
{
96+
return DeleteDISyncTaskResponseUnmarshaller.Unmarshall(unmarshallerContext);
97+
}
98+
}
99+
}
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 DeleteDISyncTaskResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private bool? success;
31+
32+
private DeleteDISyncTask_Data data;
33+
34+
public string RequestId
35+
{
36+
get
37+
{
38+
return requestId;
39+
}
40+
set
41+
{
42+
requestId = value;
43+
}
44+
}
45+
46+
public bool? Success
47+
{
48+
get
49+
{
50+
return success;
51+
}
52+
set
53+
{
54+
success = value;
55+
}
56+
}
57+
58+
public DeleteDISyncTask_Data Data
59+
{
60+
get
61+
{
62+
return data;
63+
}
64+
set
65+
{
66+
data = value;
67+
}
68+
}
69+
70+
public class DeleteDISyncTask_Data
71+
{
72+
73+
private string status;
74+
75+
private string message;
76+
77+
public string Status
78+
{
79+
get
80+
{
81+
return status;
82+
}
83+
set
84+
{
85+
status = value;
86+
}
87+
}
88+
89+
public string Message
90+
{
91+
get
92+
{
93+
return message;
94+
}
95+
set
96+
{
97+
message = value;
98+
}
99+
}
100+
}
101+
}
102+
}
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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 DeployDISyncTaskRequest : RpcAcsRequest<DeployDISyncTaskResponse>
32+
{
33+
public DeployDISyncTaskRequest()
34+
: base("dataworks-public", "2018-06-01", "DeployDISyncTask")
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 taskType;
45+
46+
private long? projectId;
47+
48+
private long? fileId;
49+
50+
public string TaskType
51+
{
52+
get
53+
{
54+
return taskType;
55+
}
56+
set
57+
{
58+
taskType = value;
59+
DictionaryUtil.Add(QueryParameters, "TaskType", value);
60+
}
61+
}
62+
63+
public long? ProjectId
64+
{
65+
get
66+
{
67+
return projectId;
68+
}
69+
set
70+
{
71+
projectId = value;
72+
DictionaryUtil.Add(QueryParameters, "ProjectId", value.ToString());
73+
}
74+
}
75+
76+
public long? FileId
77+
{
78+
get
79+
{
80+
return fileId;
81+
}
82+
set
83+
{
84+
fileId = value;
85+
DictionaryUtil.Add(QueryParameters, "FileId", value.ToString());
86+
}
87+
}
88+
89+
public override bool CheckShowJsonItemName()
90+
{
91+
return false;
92+
}
93+
94+
public override DeployDISyncTaskResponse GetResponse(UnmarshallerContext unmarshallerContext)
95+
{
96+
return DeployDISyncTaskResponseUnmarshaller.Unmarshall(unmarshallerContext);
97+
}
98+
}
99+
}

0 commit comments

Comments
 (0)