Skip to content

Commit

Permalink
feat: add field to dashboard
Browse files Browse the repository at this point in the history
Signed-off-by: Jongmin Kim <[email protected]>
  • Loading branch information
whdalsrnt committed Oct 22, 2024
1 parent d0b9e89 commit a425edd
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 30 deletions.
35 changes: 20 additions & 15 deletions proto/spaceone/api/dashboard/v1/private_dashboard.proto
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,17 @@ message CreatePrivateDashboardRequest {
// +optional
google.protobuf.Struct vars = 4;
// +optional
google.protobuf.Struct options = 5;
google.protobuf.Struct vars_schema = 5;
// +optional
google.protobuf.Struct variables = 6;
google.protobuf.Struct options = 6;
// +optional
google.protobuf.Struct variables = 7;
// +optional
google.protobuf.Struct variables_schema = 7;
google.protobuf.Struct variables_schema = 8;
// +optional
google.protobuf.ListValue labels = 8;
google.protobuf.ListValue labels = 9;
// +optional
google.protobuf.Struct tags = 9;
google.protobuf.Struct tags = 10;
// +optional
string workspace_id = 21;
// +optional
Expand All @@ -98,15 +100,17 @@ message UpdatePrivateDashboardRequest {
// +optional
google.protobuf.Struct vars = 5;
// +optional
google.protobuf.Struct options = 6;
google.protobuf.Struct vars_schema = 6;
// +optional
google.protobuf.Struct variables = 7;
google.protobuf.Struct options = 7;
// +optional
google.protobuf.Struct variables_schema = 8;
google.protobuf.Struct variables = 8;
// +optional
google.protobuf.ListValue labels = 9;
google.protobuf.Struct variables_schema = 9;
// +optional
google.protobuf.Struct tags = 10;
google.protobuf.ListValue labels = 10;
// +optional
google.protobuf.Struct tags = 11;
// +optional
string folder_id = 21;
}
Expand Down Expand Up @@ -141,11 +145,12 @@ message PrivateDashboardInfo {
string version = 4;
repeated spaceone.api.dashboard.v1.Layout layouts = 5;
google.protobuf.Struct vars = 6;
google.protobuf.Struct options = 7;
google.protobuf.Struct variables = 8;
google.protobuf.Struct variables_schema = 9;
google.protobuf.ListValue labels = 10;
google.protobuf.Struct tags = 11;
google.protobuf.Struct vars_schema = 7;
google.protobuf.Struct options = 8;
google.protobuf.Struct variables = 9;
google.protobuf.Struct variables_schema = 10;
google.protobuf.ListValue labels = 11;
google.protobuf.Struct tags = 12;

string domain_id = 21;
string workspace_id = 22;
Expand Down
35 changes: 20 additions & 15 deletions proto/spaceone/api/dashboard/v1/public_dashboard.proto
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,17 @@ message CreatePublicDashboardRequest {
// +optional
google.protobuf.Struct vars = 4;
// +optional
google.protobuf.Struct options = 5;
google.protobuf.Struct vars_schema = 5;
// +optional
google.protobuf.Struct variables = 6;
google.protobuf.Struct options = 6;
// +optional
google.protobuf.Struct variables = 7;
// +optional
google.protobuf.Struct variables_schema = 7;
google.protobuf.Struct variables_schema = 8;
// +optional
google.protobuf.ListValue labels = 8;
google.protobuf.ListValue labels = 9;
// +optional
google.protobuf.Struct tags = 9;
google.protobuf.Struct tags = 10;
ResourceGroup resource_group = 20;
// +optional
string workspace_id = 21;
Expand All @@ -133,15 +135,17 @@ message UpdatePublicDashboardRequest {
// +optional
google.protobuf.Struct vars = 5;
// +optional
google.protobuf.Struct options = 6;
google.protobuf.Struct vars_schema = 6;
// +optional
google.protobuf.Struct variables = 7;
google.protobuf.Struct options = 7;
// +optional
google.protobuf.Struct variables_schema = 8;
google.protobuf.Struct variables = 8;
// +optional
google.protobuf.ListValue labels = 9;
google.protobuf.Struct variables_schema = 9;
// +optional
google.protobuf.Struct tags = 10;
google.protobuf.ListValue labels = 10;
// +optional
google.protobuf.Struct tags = 11;
// +optional
string folder_id = 21;
}
Expand Down Expand Up @@ -195,11 +199,12 @@ message PublicDashboardInfo {
string version = 4;
repeated Layout layouts = 5;
google.protobuf.Struct vars = 6;
google.protobuf.Struct options = 7;
google.protobuf.Struct variables = 8;
google.protobuf.Struct variables_schema = 9;
google.protobuf.ListValue labels = 10;
google.protobuf.Struct tags = 11;
google.protobuf.Struct vars_schema = 7;
google.protobuf.Struct options = 8;
google.protobuf.Struct variables = 9;
google.protobuf.Struct variables_schema = 10;
google.protobuf.ListValue labels = 11;
google.protobuf.Struct tags = 12;

bool shared = 18;
DashboardScope scope = 19;
Expand Down

0 comments on commit a425edd

Please sign in to comment.