Skip to content

Commit 0d6ed37

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent b26237b commit 0d6ed37

File tree

5 files changed

+265
-1
lines changed

5 files changed

+265
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-05-20 Version: 3.3.15
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2021-05-20 Version: 3.5.3
25
- Upgrade mongodb sdk.
36

Lines changed: 114 additions & 0 deletions
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.dataworks_public;
26+
using Aliyun.Acs.dataworks_public.Transform;
27+
using Aliyun.Acs.dataworks_public.Transform.V20200518;
28+
29+
namespace Aliyun.Acs.dataworks_public.Model.V20200518
30+
{
31+
public class TestNetworkConnectionRequest : RpcAcsRequest<TestNetworkConnectionResponse>
32+
{
33+
public TestNetworkConnectionRequest()
34+
: base("dataworks-public", "2020-05-18", "TestNetworkConnection")
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 resourceGroup;
45+
46+
private string envType;
47+
48+
private string datasourceName;
49+
50+
private long? projectId;
51+
52+
public string ResourceGroup
53+
{
54+
get
55+
{
56+
return resourceGroup;
57+
}
58+
set
59+
{
60+
resourceGroup = value;
61+
DictionaryUtil.Add(QueryParameters, "ResourceGroup", value);
62+
}
63+
}
64+
65+
public string EnvType
66+
{
67+
get
68+
{
69+
return envType;
70+
}
71+
set
72+
{
73+
envType = value;
74+
DictionaryUtil.Add(QueryParameters, "EnvType", value);
75+
}
76+
}
77+
78+
public string DatasourceName
79+
{
80+
get
81+
{
82+
return datasourceName;
83+
}
84+
set
85+
{
86+
datasourceName = value;
87+
DictionaryUtil.Add(QueryParameters, "DatasourceName", value);
88+
}
89+
}
90+
91+
public long? ProjectId
92+
{
93+
get
94+
{
95+
return projectId;
96+
}
97+
set
98+
{
99+
projectId = value;
100+
DictionaryUtil.Add(QueryParameters, "ProjectId", value.ToString());
101+
}
102+
}
103+
104+
public override bool CheckShowJsonItemName()
105+
{
106+
return false;
107+
}
108+
109+
public override TestNetworkConnectionResponse GetResponse(UnmarshallerContext unmarshallerContext)
110+
{
111+
return TestNetworkConnectionResponseUnmarshaller.Unmarshall(unmarshallerContext);
112+
}
113+
}
114+
}
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.V20200518
24+
{
25+
public class TestNetworkConnectionResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private bool? success;
31+
32+
private TestNetworkConnection_TaskList taskList;
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 TestNetworkConnection_TaskList TaskList
59+
{
60+
get
61+
{
62+
return taskList;
63+
}
64+
set
65+
{
66+
taskList = value;
67+
}
68+
}
69+
70+
public class TestNetworkConnection_TaskList
71+
{
72+
73+
private bool? connectStatus;
74+
75+
private string connectMessage;
76+
77+
public bool? ConnectStatus
78+
{
79+
get
80+
{
81+
return connectStatus;
82+
}
83+
set
84+
{
85+
connectStatus = value;
86+
}
87+
}
88+
89+
public string ConnectMessage
90+
{
91+
get
92+
{
93+
return connectMessage;
94+
}
95+
set
96+
{
97+
connectMessage = value;
98+
}
99+
}
100+
}
101+
}
102+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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;
20+
using System.Collections.Generic;
21+
22+
using Aliyun.Acs.Core.Transform;
23+
using Aliyun.Acs.dataworks_public.Model.V20200518;
24+
25+
namespace Aliyun.Acs.dataworks_public.Transform.V20200518
26+
{
27+
public class TestNetworkConnectionResponseUnmarshaller
28+
{
29+
public static TestNetworkConnectionResponse Unmarshall(UnmarshallerContext _ctx)
30+
{
31+
TestNetworkConnectionResponse testNetworkConnectionResponse = new TestNetworkConnectionResponse();
32+
33+
testNetworkConnectionResponse.HttpResponse = _ctx.HttpResponse;
34+
testNetworkConnectionResponse.RequestId = _ctx.StringValue("TestNetworkConnection.RequestId");
35+
testNetworkConnectionResponse.Success = _ctx.BooleanValue("TestNetworkConnection.Success");
36+
37+
TestNetworkConnectionResponse.TestNetworkConnection_TaskList taskList = new TestNetworkConnectionResponse.TestNetworkConnection_TaskList();
38+
taskList.ConnectStatus = _ctx.BooleanValue("TestNetworkConnection.TaskList.ConnectStatus");
39+
taskList.ConnectMessage = _ctx.StringValue("TestNetworkConnection.TaskList.ConnectMessage");
40+
testNetworkConnectionResponse.TaskList = taskList;
41+
42+
return testNetworkConnectionResponse;
43+
}
44+
}
45+
}

aliyun-net-sdk-dataworks-public/aliyun-net-sdk-dataworks-public.vs2017.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.dataworks_public</RootNamespace>
6-
<Version>3.3.14</Version>
6+
<Version>3.3.15</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)