Skip to content

Commit

Permalink
feat: recover proto field order for user_profile, service_account, app
Browse files Browse the repository at this point in the history
Signed-off-by: ImMin5 <[email protected]>
  • Loading branch information
ImMin5 committed Apr 3, 2024
1 parent 3712e09 commit f9343ef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions proto/spaceone/api/identity/v2/app.proto
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ message AppInfo {
string client_secret = 2;
string name = 3;
State state = 4;
google.protobuf.Struct tags = 5;
RoleType role_type = 6;
bool is_managed = 7;
bool is_managed = 5;
google.protobuf.Struct tags = 6;
RoleType role_type = 7;
ResourceGroup resource_group = 20;
string domain_id = 21;
string workspace_id = 22;
Expand Down
4 changes: 2 additions & 2 deletions proto/spaceone/api/identity/v2/service_account.proto
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ message ServiceAccountInfo {
string name = 2;
google.protobuf.Struct data = 3;
string provider = 4;
google.protobuf.Struct tags = 5;
google.protobuf.Struct options = 5;
google.protobuf.Struct tags = 6;
string reference_id = 7;
bool is_managed = 8;
google.protobuf.Struct options = 9;
string domain_id = 21;
string workspace_id = 22;
string project_id = 23;
Expand Down
10 changes: 5 additions & 5 deletions proto/spaceone/api/identity/v2/user_profile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ message MyWorkspaceInfo {
string workspace_id = 1;
string name = 2;
State state = 3;
google.protobuf.Struct tags = 4;
string created_by = 5;
string reference_id = 6;
bool is_managed = 7;
RoleType role_type = 8;
RoleType role_type = 4;
google.protobuf.Struct tags = 5;
string created_by = 6;
string reference_id = 7;
bool is_managed = 8;
string domain_id = 21;
string role_id = 22;
string created_at = 31;
Expand Down

0 comments on commit f9343ef

Please sign in to comment.