Skip to content

Commit 1fc389c

Browse files
committed
Supported new features etc.
1 parent 4aca544 commit 1fc389c

File tree

5 files changed

+197
-1
lines changed

5 files changed

+197
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-08-31 Version: 1.7.0
2+
- Supported new features etc.
3+
14
2022-08-26 Version: 1.0.25
25
- Update param NextHopType visibility for DeleteTransitRouterPrefixListAssociation .
36

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.VoiceNavigator.Transform;
26+
using Aliyun.Acs.VoiceNavigator.Transform.V20180612;
27+
28+
namespace Aliyun.Acs.VoiceNavigator.Model.V20180612
29+
{
30+
public class GetRealTimeConcurrencyRequest : RpcAcsRequest<GetRealTimeConcurrencyResponse>
31+
{
32+
public GetRealTimeConcurrencyRequest()
33+
: base("VoiceNavigator", "2018-06-12", "GetRealTimeConcurrency", "voicebot", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.VoiceNavigator.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.VoiceNavigator.Endpoint.endpointRegionalType, null);
39+
}
40+
}
41+
42+
private string instanceId;
43+
44+
public string InstanceId
45+
{
46+
get
47+
{
48+
return instanceId;
49+
}
50+
set
51+
{
52+
instanceId = value;
53+
DictionaryUtil.Add(QueryParameters, "InstanceId", value);
54+
}
55+
}
56+
57+
public override bool CheckShowJsonItemName()
58+
{
59+
return false;
60+
}
61+
62+
public override GetRealTimeConcurrencyResponse GetResponse(UnmarshallerContext unmarshallerContext)
63+
{
64+
return GetRealTimeConcurrencyResponseUnmarshaller.Unmarshall(unmarshallerContext);
65+
}
66+
}
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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+
using Newtonsoft.Json;
21+
using Aliyun.Acs.Core;
22+
23+
namespace Aliyun.Acs.VoiceNavigator.Model.V20180612
24+
{
25+
public class GetRealTimeConcurrencyResponse : AcsResponse
26+
{
27+
28+
private string requestId;
29+
30+
private long? timestamp;
31+
32+
private long? realTimeConcurrency;
33+
34+
private long? maxConcurrency;
35+
36+
public string RequestId
37+
{
38+
get
39+
{
40+
return requestId;
41+
}
42+
set
43+
{
44+
requestId = value;
45+
}
46+
}
47+
48+
public long? Timestamp
49+
{
50+
get
51+
{
52+
return timestamp;
53+
}
54+
set
55+
{
56+
timestamp = value;
57+
}
58+
}
59+
60+
public long? RealTimeConcurrency
61+
{
62+
get
63+
{
64+
return realTimeConcurrency;
65+
}
66+
set
67+
{
68+
realTimeConcurrency = value;
69+
}
70+
}
71+
72+
public long? MaxConcurrency
73+
{
74+
get
75+
{
76+
return maxConcurrency;
77+
}
78+
set
79+
{
80+
maxConcurrency = value;
81+
}
82+
}
83+
}
84+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.VoiceNavigator.Model.V20180612;
24+
25+
namespace Aliyun.Acs.VoiceNavigator.Transform.V20180612
26+
{
27+
public class GetRealTimeConcurrencyResponseUnmarshaller
28+
{
29+
public static GetRealTimeConcurrencyResponse Unmarshall(UnmarshallerContext _ctx)
30+
{
31+
GetRealTimeConcurrencyResponse getRealTimeConcurrencyResponse = new GetRealTimeConcurrencyResponse();
32+
33+
getRealTimeConcurrencyResponse.HttpResponse = _ctx.HttpResponse;
34+
getRealTimeConcurrencyResponse.RequestId = _ctx.StringValue("GetRealTimeConcurrency.RequestId");
35+
getRealTimeConcurrencyResponse.Timestamp = _ctx.LongValue("GetRealTimeConcurrency.Timestamp");
36+
getRealTimeConcurrencyResponse.RealTimeConcurrency = _ctx.LongValue("GetRealTimeConcurrency.RealTimeConcurrency");
37+
getRealTimeConcurrencyResponse.MaxConcurrency = _ctx.LongValue("GetRealTimeConcurrency.MaxConcurrency");
38+
39+
return getRealTimeConcurrencyResponse;
40+
}
41+
}
42+
}

aliyun-net-sdk-voicenavigator/aliyun-net-sdk-voicenavigator.vs2017.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
55
<RootNamespace>Aliyun.Acs.VoiceNavigator</RootNamespace>
6-
<Version>1.6.0</Version>
6+
<Version>1.7.0</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)