Skip to content

Commit

Permalink
feat: add bank_name field in CostReport
Browse files Browse the repository at this point in the history
  • Loading branch information
yjinjo committed Jan 26, 2024
1 parent eff8b85 commit d1737d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/spaceone/cost_analysis/model/cost_report/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class CostReport(MongoModel):
report_year = StringField(max_length=10)
report_month = StringField(max_length=10)
workspace_name = StringField(max_length=255)
bank_name = StringField(max_length=255)
cost_report_config_id = StringField(max_length=40)
workspace_id = StringField(max_length=40)
domain_id = StringField(max_length=40)
Expand Down
1 change: 1 addition & 0 deletions src/spaceone/cost_analysis/model/cost_report/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class CostReportResponse(BaseModel):
report_year: Union[str, None] = None
report_month: Union[str, None] = None
workspace_name: Union[str, None] = None
bank_name: Union[str, None] = None
cost_report_config_id: Union[str, None] = None
workspace_id: Union[str, None] = None
domain_id: Union[str, None] = None
Expand Down

0 comments on commit d1737d9

Please sign in to comment.