Skip to content

Commit 605e8e9

Browse files
committed
Generated 2019-03-01 for LinkWAN.
1 parent 990bde6 commit 605e8e9

File tree

291 files changed

+29857
-0
lines changed

Some content is hidden

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

291 files changed

+29857
-0
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-09-13 Version: 1.0.4
2+
- Generated 2019-03-01 for `LinkWAN`.
3+
14
2021-09-13 Version: 2.0.17
25
- Supported CallerLocation, CalleeLocation in CDR API.
36

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
20+
using System.Collections.Generic;
21+
22+
namespace Aliyun.Acs.LinkWAN
23+
{
24+
public class Endpoint
25+
{
26+
public static Dictionary<string, string> endpointMap = new Dictionary<string, string>()
27+
{};
28+
29+
public static string endpointRegionalType = "regional";
30+
}
31+
}
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.LinkWAN.Transform;
26+
using Aliyun.Acs.LinkWAN.Transform.V20190301;
27+
28+
namespace Aliyun.Acs.LinkWAN.Model.V20190301
29+
{
30+
public class AcceptJoinPermissionAuthOrderRequest : RpcAcsRequest<AcceptJoinPermissionAuthOrderResponse>
31+
{
32+
public AcceptJoinPermissionAuthOrderRequest()
33+
: base("LinkWAN", "2019-03-01", "AcceptJoinPermissionAuthOrder", "linkwan", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.LinkWAN.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.LinkWAN.Endpoint.endpointRegionalType, null);
39+
}
40+
Protocol = ProtocolType.HTTPS;
41+
Method = MethodType.POST;
42+
}
43+
44+
private string orderId;
45+
46+
public string OrderId
47+
{
48+
get
49+
{
50+
return orderId;
51+
}
52+
set
53+
{
54+
orderId = value;
55+
DictionaryUtil.Add(QueryParameters, "OrderId", value);
56+
}
57+
}
58+
59+
public override bool CheckShowJsonItemName()
60+
{
61+
return false;
62+
}
63+
64+
public override AcceptJoinPermissionAuthOrderResponse GetResponse(UnmarshallerContext unmarshallerContext)
65+
{
66+
return AcceptJoinPermissionAuthOrderResponseUnmarshaller.Unmarshall(unmarshallerContext);
67+
}
68+
}
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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.LinkWAN.Model.V20190301
24+
{
25+
public class AcceptJoinPermissionAuthOrderResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private bool? success;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public bool? Success
45+
{
46+
get
47+
{
48+
return success;
49+
}
50+
set
51+
{
52+
success = value;
53+
}
54+
}
55+
}
56+
}
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.LinkWAN.Transform;
26+
using Aliyun.Acs.LinkWAN.Transform.V20190301;
27+
28+
namespace Aliyun.Acs.LinkWAN.Model.V20190301
29+
{
30+
public class AddNodeToGroupRequest : RpcAcsRequest<AddNodeToGroupResponse>
31+
{
32+
public AddNodeToGroupRequest()
33+
: base("LinkWAN", "2019-03-01", "AddNodeToGroup", "linkwan", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.LinkWAN.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.LinkWAN.Endpoint.endpointRegionalType, null);
39+
}
40+
Protocol = ProtocolType.HTTPS;
41+
Method = MethodType.POST;
42+
}
43+
44+
private string pinCode;
45+
46+
private string devEui;
47+
48+
private string nodeGroupId;
49+
50+
public string PinCode
51+
{
52+
get
53+
{
54+
return pinCode;
55+
}
56+
set
57+
{
58+
pinCode = value;
59+
DictionaryUtil.Add(QueryParameters, "PinCode", value);
60+
}
61+
}
62+
63+
public string DevEui
64+
{
65+
get
66+
{
67+
return devEui;
68+
}
69+
set
70+
{
71+
devEui = value;
72+
DictionaryUtil.Add(QueryParameters, "DevEui", value);
73+
}
74+
}
75+
76+
public string NodeGroupId
77+
{
78+
get
79+
{
80+
return nodeGroupId;
81+
}
82+
set
83+
{
84+
nodeGroupId = value;
85+
DictionaryUtil.Add(QueryParameters, "NodeGroupId", value);
86+
}
87+
}
88+
89+
public override bool CheckShowJsonItemName()
90+
{
91+
return false;
92+
}
93+
94+
public override AddNodeToGroupResponse GetResponse(UnmarshallerContext unmarshallerContext)
95+
{
96+
return AddNodeToGroupResponseUnmarshaller.Unmarshall(unmarshallerContext);
97+
}
98+
}
99+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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.LinkWAN.Model.V20190301
24+
{
25+
public class AddNodeToGroupResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private bool? success;
31+
32+
public string RequestId
33+
{
34+
get
35+
{
36+
return requestId;
37+
}
38+
set
39+
{
40+
requestId = value;
41+
}
42+
}
43+
44+
public bool? Success
45+
{
46+
get
47+
{
48+
return success;
49+
}
50+
set
51+
{
52+
success = value;
53+
}
54+
}
55+
}
56+
}

0 commit comments

Comments
 (0)