Skip to content

Commit 7dbed4c

Browse files
committed
Add Support Real time mock table.
1 parent 7711a97 commit 7dbed4c

File tree

4 files changed

+19
-1
lines changed

4 files changed

+19
-1
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-12-18 Version: 1.0.1
2+
- Add Support Real time mock table.
3+
14
2024-12-13 Version: 1.8.22
25
- Generated 2017-08-01 for `polardb`.
36

aliyun-net-sdk-paifeaturestore/PaiFeatureStore/Model/V20230621/GetFeatureViewResponse.cs

+14
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ public class GetFeatureViewResponse : AcsResponse
6969

7070
private string publishTableScript;
7171

72+
private string mockTableName;
73+
7274
private List<GetFeatureView_FieldsItem> fields;
7375

7476
private List<string> tags;
@@ -337,6 +339,18 @@ public string PublishTableScript
337339
}
338340
}
339341

342+
public string MockTableName
343+
{
344+
get
345+
{
346+
return mockTableName;
347+
}
348+
set
349+
{
350+
mockTableName = value;
351+
}
352+
}
353+
340354
public List<GetFeatureView_FieldsItem> Fields
341355
{
342356
get

aliyun-net-sdk-paifeaturestore/PaiFeatureStore/Transform/V20230621/GetFeatureViewResponseUnmarshaller.cs

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public static GetFeatureViewResponse Unmarshall(UnmarshallerContext _ctx)
5353
getFeatureViewResponse.GmtSyncTime = _ctx.StringValue("GetFeatureView.GmtSyncTime");
5454
getFeatureViewResponse.LastSyncConfig = _ctx.StringValue("GetFeatureView.LastSyncConfig");
5555
getFeatureViewResponse.PublishTableScript = _ctx.StringValue("GetFeatureView.PublishTableScript");
56+
getFeatureViewResponse.MockTableName = _ctx.StringValue("GetFeatureView.MockTableName");
5657

5758
List<string> getFeatureViewResponse_tags = new List<string>();
5859
for (int i = 0; i < _ctx.Length("GetFeatureView.Tags.Length"); i++) {

aliyun-net-sdk-paifeaturestore/aliyun-net-sdk-paifeaturestore.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.PaiFeatureStore</RootNamespace>
6-
<Version>1.0.0</Version>
6+
<Version>1.0.1</Version>
77
<Authors>Alibaba Cloud</Authors>
88
<Copyright>©2009-2019 Alibaba Cloud</Copyright>
99
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)