We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e26ef82 + d2053d0 commit e5d234bCopy full SHA for e5d234b
src/cloudforet/cost_analysis/manager/data_source_manager.py
@@ -13,6 +13,14 @@ class DataSourceManager(BaseManager):
13
@staticmethod
14
def init_response(options):
15
plugin_metadata = PluginMetadata()
16
+
17
+ plugin_metadata.additional_info = [
18
+ "Unit Price",
19
+ "Resource Id",
20
+ "Subscription Id",
21
+ "Charge Type",
22
+ ]
23
24
if currency := options.get("currency"):
25
plugin_metadata.currency = currency
26
src/cloudforet/cost_analysis/model/data_source_model.py
@@ -71,3 +71,4 @@ class PluginMetadata(Model):
71
exclude_license_cost = BooleanType(default=False)
72
cost_info = DictType(StringType, default={})
73
data_info = DictType(ModelType(MetadataDataInfo), default={})
74
+ additional_info = ListType(StringType, default=[])
0 commit comments