Skip to content

Commit

Permalink
Generated 2022-12-01 for ResourceCenter.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Oct 10, 2024
1 parent 7e4fd14 commit b96ff6d
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-10-10 Version: 1.0.5
- Generated 2022-12-01 for `ResourceCenter`.

2024-10-10 Version: 3.13.17
- Support Android badge.
- Support Harmony badge.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ public ExecuteMultiAccountSQLQueryRequest()

private string expression;

private string nextToken;

private string scope;

private int? maxResults;

public string Expression
{
get
Expand All @@ -54,6 +58,19 @@ public string Expression
}
}

public string NextToken
{
get
{
return nextToken;
}
set
{
nextToken = value;
DictionaryUtil.Add(QueryParameters, "NextToken", value);
}
}

public string Scope
{
get
Expand All @@ -67,6 +84,19 @@ public string Scope
}
}

public int? MaxResults
{
get
{
return maxResults;
}
set
{
maxResults = value;
DictionaryUtil.Add(QueryParameters, "MaxResults", value.ToString());
}
}

public override bool CheckShowJsonItemName()
{
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ public ExecuteSQLQueryRequest()

private string expression;

private string nextToken;

private string scope;

private int? maxResults;

public string Expression
{
get
Expand All @@ -54,6 +58,19 @@ public string Expression
}
}

public string NextToken
{
get
{
return nextToken;
}
set
{
nextToken = value;
DictionaryUtil.Add(QueryParameters, "NextToken", value);
}
}

public string Scope
{
get
Expand All @@ -67,6 +84,19 @@ public string Scope
}
}

public int? MaxResults
{
get
{
return maxResults;
}
set
{
maxResults = value;
DictionaryUtil.Add(QueryParameters, "MaxResults", value.ToString());
}
}

public override bool CheckShowJsonItemName()
{
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<RootNamespace>Aliyun.Acs.ResourceCenter</RootNamespace>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<Authors>Alibaba Cloud</Authors>
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down

0 comments on commit b96ff6d

Please sign in to comment.