File tree 4 files changed +26
-6
lines changed
proto/spaceone/api/dashboard/v1
4 files changed +26
-6
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,9 @@ message CreatePrivateDashboardRequest {
86
86
// +optional
87
87
string workspace_id = 21 ;
88
88
// +optional
89
- string folder_id = 22 ;
89
+ string project_group_id = 22 ;
90
+ // +optional
91
+ string folder_id = 23 ;
90
92
}
91
93
92
94
message UpdatePrivateDashboardRequest {
@@ -135,7 +137,9 @@ message PrivateDashboardQuery {
135
137
// +optional
136
138
string workspace_id = 21 ;
137
139
// +optional
138
- string folder_id = 22 ;
140
+ string project_group_id = 22 ;
141
+ // +optional
142
+ string folder_id = 23 ;
139
143
}
140
144
141
145
message PrivateDashboardInfo {
@@ -155,7 +159,8 @@ message PrivateDashboardInfo {
155
159
string domain_id = 21 ;
156
160
string workspace_id = 22 ;
157
161
string user_id = 23 ;
158
- string folder_id = 24 ;
162
+ string project_group_id = 24 ;
163
+ string folder_id = 25 ;
159
164
160
165
string created_at = 31 ;
161
166
string updated_at = 32 ;
Original file line number Diff line number Diff line change @@ -63,6 +63,8 @@ message CreatePrivateFolderRequest {
63
63
repeated google.protobuf.Struct dashboards = 3 ;
64
64
// +optional
65
65
string workspace_id = 4 ;
66
+ // +optional
67
+ string project_group_id = 5 ;
66
68
}
67
69
68
70
message UpdatePrivateFolderRequest {
@@ -86,6 +88,8 @@ message PrivateFolderQuery {
86
88
string name = 3 ;
87
89
// +optional
88
90
string workspace_id = 4 ;
91
+ // +optional
92
+ string project_group_id = 5 ;
89
93
}
90
94
91
95
message PrivateFolderInfo {
@@ -96,6 +100,7 @@ message PrivateFolderInfo {
96
100
string domain_id = 21 ;
97
101
string workspace_id = 22 ;
98
102
string user_id = 23 ;
103
+ string project_group_id = 24 ;
99
104
100
105
string created_at = 31 ;
101
106
string updated_at = 32 ;
Original file line number Diff line number Diff line change @@ -121,7 +121,9 @@ message CreatePublicDashboardRequest {
121
121
// +optional
122
122
string project_id = 22 ;
123
123
// +optional
124
- string folder_id = 23 ;
124
+ string project_group_id = 23 ;
125
+ // +optional
126
+ string folder_id = 24 ;
125
127
}
126
128
127
129
message UpdatePublicDashboardRequest {
@@ -182,7 +184,9 @@ message PublicDashboardQuery {
182
184
// +optional
183
185
string project_id = 22 ;
184
186
// +optional
185
- string folder_id = 23 ;
187
+ string project_group_id = 23 ;
188
+ // +optional
189
+ string folder_id = 24 ;
186
190
}
187
191
188
192
message PublicDashboardInfo {
@@ -213,7 +217,8 @@ message PublicDashboardInfo {
213
217
string domain_id = 21 ;
214
218
string workspace_id = 22 ;
215
219
string project_id = 23 ;
216
- string folder_id = 24 ;
220
+ string project_group_id = 24 ;
221
+ string folder_id = 25 ;
217
222
218
223
string created_at = 31 ;
219
224
string updated_at = 32 ;
Original file line number Diff line number Diff line change @@ -89,6 +89,8 @@ message CreatePublicFolderRequest {
89
89
string workspace_id = 21 ;
90
90
// +optional
91
91
string project_id = 22 ;
92
+ // +optional
93
+ string project_group_id = 23 ;
92
94
}
93
95
94
96
message UpdatePublicFolderRequest {
@@ -124,6 +126,8 @@ message PublicFolderQuery {
124
126
string workspace_id = 21 ;
125
127
// +optional
126
128
string project_id = 22 ;
129
+ // +optional
130
+ string project_group_id = 23 ;
127
131
}
128
132
129
133
message PublicFolderInfo {
@@ -145,6 +149,7 @@ message PublicFolderInfo {
145
149
string domain_id = 21 ;
146
150
string workspace_id = 22 ;
147
151
string project_id = 23 ;
152
+ string project_group_id = 24 ;
148
153
149
154
string created_at = 31 ;
150
155
string updated_at = 32 ;
You can’t perform that action at this time.
0 commit comments