Skip to content

Commit

Permalink
Generated 2017-08-01 for polardb.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 13, 2024
1 parent 8bd76cb commit 7711a97
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 16 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-13 Version: 1.8.22
- Generated 2017-08-01 for `polardb`.

2024-12-13 Version: 2.0.32
- Update DescribeApiMetering API.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ public CreateAccountRequest()

private string dBName;

private string privForAllDB;

public long? ResourceOwnerId
{
get
Expand Down Expand Up @@ -220,19 +218,6 @@ public string DBName
dBName = value;
DictionaryUtil.Add(QueryParameters, "DBName", value);
}
}

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

public override CreateAccountResponse GetResponse(UnmarshallerContext unmarshallerContext)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ public CreateDBClusterRequest()

private string burstingEnabled;

private string targetMinorVersion;

private int? dBNodeNum;

private long? storageUpperBound;
Expand Down Expand Up @@ -715,6 +717,19 @@ public string BurstingEnabled
}
}

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

public int? DBNodeNum
{
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ public ModifyDBClusterAndNodesParametersRequest()

private string plannedStartTime;

private string standbyClusterIdListNeedToSync;

private string parameters;

private bool? fromTimeService;
Expand Down Expand Up @@ -179,6 +181,19 @@ public string PlannedStartTime
}
}

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

public string Parameters
{
get
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.polardb</RootNamespace>
<Version>1.8.21</Version>
<Version>1.8.22</Version>
<Authors>Alibaba Cloud</Authors>
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down

0 comments on commit 7711a97

Please sign in to comment.