Skip to content

Commit a2b71ae

Browse files
committed
feat: add project_group_id field to public and private dashboard proto files
Signed-off-by: seolmin <[email protected]>
1 parent 96130fc commit a2b71ae

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

proto/spaceone/api/dashboard/v1/private_dashboard.proto

+8-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ message CreatePrivateDashboardRequest {
8686
// +optional
8787
string workspace_id = 21;
8888
// +optional
89-
string folder_id = 22;
89+
string project_group_id = 22;
90+
// +optional
91+
string folder_id = 23;
9092
}
9193

9294
message UpdatePrivateDashboardRequest {
@@ -135,7 +137,9 @@ message PrivateDashboardQuery {
135137
// +optional
136138
string workspace_id = 21;
137139
// +optional
138-
string folder_id = 22;
140+
string project_group_id = 22;
141+
// +optional
142+
string folder_id = 23;
139143
}
140144

141145
message PrivateDashboardInfo {
@@ -155,7 +159,8 @@ message PrivateDashboardInfo {
155159
string domain_id = 21;
156160
string workspace_id = 22;
157161
string user_id = 23;
158-
string folder_id = 24;
162+
string project_group_id = 24;
163+
string folder_id = 25;
159164

160165
string created_at = 31;
161166
string updated_at = 32;

proto/spaceone/api/dashboard/v1/private_folder.proto

+5
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ message CreatePrivateFolderRequest {
6363
repeated google.protobuf.Struct dashboards = 3;
6464
// +optional
6565
string workspace_id = 4;
66+
// +optional
67+
string project_group_id = 5;
6668
}
6769

6870
message UpdatePrivateFolderRequest {
@@ -86,6 +88,8 @@ message PrivateFolderQuery {
8688
string name = 3;
8789
// +optional
8890
string workspace_id = 4;
91+
// +optional
92+
string project_group_id = 5;
8993
}
9094

9195
message PrivateFolderInfo {
@@ -96,6 +100,7 @@ message PrivateFolderInfo {
96100
string domain_id = 21;
97101
string workspace_id = 22;
98102
string user_id = 23;
103+
string project_group_id = 24;
99104

100105
string created_at = 31;
101106
string updated_at = 32;

proto/spaceone/api/dashboard/v1/public_dashboard.proto

+8-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@ message CreatePublicDashboardRequest {
121121
// +optional
122122
string project_id = 22;
123123
// +optional
124-
string folder_id = 23;
124+
string project_group_id = 23;
125+
// +optional
126+
string folder_id = 24;
125127
}
126128

127129
message UpdatePublicDashboardRequest {
@@ -182,7 +184,9 @@ message PublicDashboardQuery {
182184
// +optional
183185
string project_id = 22;
184186
// +optional
185-
string folder_id = 23;
187+
string project_group_id = 23;
188+
// +optional
189+
string folder_id = 24;
186190
}
187191

188192
message PublicDashboardInfo {
@@ -213,7 +217,8 @@ message PublicDashboardInfo {
213217
string domain_id = 21;
214218
string workspace_id = 22;
215219
string project_id = 23;
216-
string folder_id = 24;
220+
string project_group_id = 24;
221+
string folder_id = 25;
217222

218223
string created_at = 31;
219224
string updated_at = 32;

proto/spaceone/api/dashboard/v1/public_folder.proto

+5
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ message CreatePublicFolderRequest {
8989
string workspace_id = 21;
9090
// +optional
9191
string project_id = 22;
92+
// +optional
93+
string project_group_id = 23;
9294
}
9395

9496
message UpdatePublicFolderRequest {
@@ -124,6 +126,8 @@ message PublicFolderQuery {
124126
string workspace_id = 21;
125127
// +optional
126128
string project_id = 22;
129+
// +optional
130+
string project_group_id = 23;
127131
}
128132

129133
message PublicFolderInfo {
@@ -145,6 +149,7 @@ message PublicFolderInfo {
145149
string domain_id = 21;
146150
string workspace_id = 22;
147151
string project_id = 23;
152+
string project_group_id = 24;
148153

149154
string created_at = 31;
150155
string updated_at = 32;

0 commit comments

Comments
 (0)