Skip to content

Commit

Permalink
Add Support Real time mock table.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 18, 2024
1 parent 7711a97 commit 7dbed4c
Show file tree
Hide file tree
Showing 4 changed files with 19 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-12-18 Version: 1.0.1
- Add Support Real time mock table.

2024-12-13 Version: 1.8.22
- Generated 2017-08-01 for `polardb`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ public class GetFeatureViewResponse : AcsResponse

private string publishTableScript;

private string mockTableName;

private List<GetFeatureView_FieldsItem> fields;

private List<string> tags;
Expand Down Expand Up @@ -337,6 +339,18 @@ public string PublishTableScript
}
}

public string MockTableName
{
get
{
return mockTableName;
}
set
{
mockTableName = value;
}
}

public List<GetFeatureView_FieldsItem> Fields
{
get
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public static GetFeatureViewResponse Unmarshall(UnmarshallerContext _ctx)
getFeatureViewResponse.GmtSyncTime = _ctx.StringValue("GetFeatureView.GmtSyncTime");
getFeatureViewResponse.LastSyncConfig = _ctx.StringValue("GetFeatureView.LastSyncConfig");
getFeatureViewResponse.PublishTableScript = _ctx.StringValue("GetFeatureView.PublishTableScript");
getFeatureViewResponse.MockTableName = _ctx.StringValue("GetFeatureView.MockTableName");

List<string> getFeatureViewResponse_tags = new List<string>();
for (int i = 0; i < _ctx.Length("GetFeatureView.Tags.Length"); i++) {
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.PaiFeatureStore</RootNamespace>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Authors>Alibaba Cloud</Authors>
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand Down

0 comments on commit 7dbed4c

Please sign in to comment.