Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add virtual id field at DataSourceAccount #316

Merged
merged 2 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions proto/spaceone/api/cost_analysis/plugin/job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,15 @@ message ChangedInfo {
google.protobuf.Struct filter = 3;
}

message SyncedAccountInfo{
string account_id = 1;
}

//{
//
//}
message TasksInfo {
repeated TaskInfo tasks = 1;
repeated ChangedInfo changed = 2;
repeated SyncedAccountInfo synced_accounts = 3;
}
1 change: 1 addition & 0 deletions proto/spaceone/api/cost_analysis/v1/cost.proto
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ message CostInfo {
string project_id = 23;
string service_account_id = 24;
string data_source_id = 25;
string account_id = 26;


string billed_year = 31;
Expand Down
4 changes: 4 additions & 0 deletions proto/spaceone/api/cost_analysis/v1/data_source_account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,12 @@ message DataSourceAccountInfo {
string workspace_id = 22;
string project_id = 23;
string service_account_id = 24;
string v_workspace_id = 25;
string v_project_id = 26;
string v_service_account_id = 27;
string created_at = 31;
string updated_at = 32;
string last_synced_at = 33;
}

message DataSourceAccountsInfo {
Expand Down
Loading