File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
include/alibabacloud/paifeaturestore/model Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1
- 1.36.2029
1
+ 1.36.2030
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ namespace AlibabaCloud
61
61
std::string getLastSyncConfig ()const ;
62
62
std::string getType ()const ;
63
63
std::vector<FieldsItem> getFields ()const ;
64
+ std::string getMockTableName ()const ;
64
65
std::string getRegisterDatasourceName ()const ;
65
66
std::string getFeatureEntityId ()const ;
66
67
std::vector<std::string> getTags ()const ;
@@ -88,6 +89,7 @@ namespace AlibabaCloud
88
89
std::string lastSyncConfig_;
89
90
std::string type_;
90
91
std::vector<FieldsItem> fields_;
92
+ std::string mockTableName_;
91
93
std::string registerDatasourceName_;
92
94
std::string featureEntityId_;
93
95
std::vector<std::string> tags_;
Original file line number Diff line number Diff line change @@ -97,6 +97,8 @@ void GetFeatureViewResult::parse(const std::string &payload)
97
97
lastSyncConfig_ = value[" LastSyncConfig" ].asString ();
98
98
if (!value[" PublishTableScript" ].isNull ())
99
99
publishTableScript_ = value[" PublishTableScript" ].asString ();
100
+ if (!value[" MockTableName" ].isNull ())
101
+ mockTableName_ = value[" MockTableName" ].asString ();
100
102
101
103
}
102
104
@@ -190,6 +192,11 @@ std::vector<GetFeatureViewResult::FieldsItem> GetFeatureViewResult::getFields()c
190
192
return fields_;
191
193
}
192
194
195
+ std::string GetFeatureViewResult::getMockTableName ()const
196
+ {
197
+ return mockTableName_;
198
+ }
199
+
193
200
std::string GetFeatureViewResult::getRegisterDatasourceName ()const
194
201
{
195
202
return registerDatasourceName_;
You can’t perform that action at this time.
0 commit comments