Skip to content

Commit b96ff6d

Browse files
committed
Generated 2022-12-01 for ResourceCenter.
1 parent 7e4fd14 commit b96ff6d

File tree

4 files changed

+64
-1
lines changed

4 files changed

+64
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-10-10 Version: 1.0.5
2+
- Generated 2022-12-01 for `ResourceCenter`.
3+
14
2024-10-10 Version: 3.13.17
25
- Support Android badge.
36
- Support Harmony badge.

aliyun-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/ExecuteMultiAccountSQLQueryRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,12 @@ public ExecuteMultiAccountSQLQueryRequest()
3939

4040
private string expression;
4141

42+
private string nextToken;
43+
4244
private string scope;
4345

46+
private int? maxResults;
47+
4448
public string Expression
4549
{
4650
get
@@ -54,6 +58,19 @@ public string Expression
5458
}
5559
}
5660

61+
public string NextToken
62+
{
63+
get
64+
{
65+
return nextToken;
66+
}
67+
set
68+
{
69+
nextToken = value;
70+
DictionaryUtil.Add(QueryParameters, "NextToken", value);
71+
}
72+
}
73+
5774
public string Scope
5875
{
5976
get
@@ -67,6 +84,19 @@ public string Scope
6784
}
6885
}
6986

87+
public int? MaxResults
88+
{
89+
get
90+
{
91+
return maxResults;
92+
}
93+
set
94+
{
95+
maxResults = value;
96+
DictionaryUtil.Add(QueryParameters, "MaxResults", value.ToString());
97+
}
98+
}
99+
70100
public override bool CheckShowJsonItemName()
71101
{
72102
return false;

aliyun-net-sdk-resourcecenter/ResourceCenter/Model/V20221201/ExecuteSQLQueryRequest.cs

+30
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,12 @@ public ExecuteSQLQueryRequest()
3939

4040
private string expression;
4141

42+
private string nextToken;
43+
4244
private string scope;
4345

46+
private int? maxResults;
47+
4448
public string Expression
4549
{
4650
get
@@ -54,6 +58,19 @@ public string Expression
5458
}
5559
}
5660

61+
public string NextToken
62+
{
63+
get
64+
{
65+
return nextToken;
66+
}
67+
set
68+
{
69+
nextToken = value;
70+
DictionaryUtil.Add(QueryParameters, "NextToken", value);
71+
}
72+
}
73+
5774
public string Scope
5875
{
5976
get
@@ -67,6 +84,19 @@ public string Scope
6784
}
6885
}
6986

87+
public int? MaxResults
88+
{
89+
get
90+
{
91+
return maxResults;
92+
}
93+
set
94+
{
95+
maxResults = value;
96+
DictionaryUtil.Add(QueryParameters, "MaxResults", value.ToString());
97+
}
98+
}
99+
70100
public override bool CheckShowJsonItemName()
71101
{
72102
return false;

aliyun-net-sdk-resourcecenter/aliyun-net-sdk-resourcecenter.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.ResourceCenter</RootNamespace>
6-
<Version>1.0.4</Version>
6+
<Version>1.0.5</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)