Skip to content

Commit

Permalink
Merge pull request #158 from ImMin5/master
Browse files Browse the repository at this point in the history
Fix typo and remove korean comment
  • Loading branch information
ImMin5 authored Nov 21, 2023
2 parents e347006 + fd624db commit 859c9b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion proto/spaceone/api/identity/v2/domain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ service Domain {
rpc get_meta_data (GetDomainMetadataRequest) returns (DomainMetadataInfo) {}
rpc get_public_key (spaceone.api.core.v1.AuthenticationRequest)
returns (spaceone.api.core.v1.AuthenticationResponse) {}
rpc list (DomainSearchQuery) returns (DomainsInfo) {} // list는 SearchQuery
rpc list (DomainSearchQuery) returns (DomainsInfo) {}
rpc stat (DomainStatQuery) returns (google.protobuf.Struct) {}
}

Expand Down
10 changes: 5 additions & 5 deletions proto/spaceone/api/identity/v2/project.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import "google/protobuf/empty.proto";
import "google/protobuf/struct.proto";
import "google/api/annotations.proto";
import "spaceone/api/core/v1/query.proto";
import "spaceone/api/identity/v1/role.proto";
import "spaceone/api/identity/v1/project_group.proto";
import "spaceone/api/identity/v2/role.proto";
import "spaceone/api/identity/v2/project_group.proto";


service Project {
Expand Down Expand Up @@ -103,13 +103,13 @@ message CreateProjectRequest {
}

string name = 1;
ProjectType project = 2;
// +optional
string project_group_id = 3;
ProjectType project_type = 2;
// +optional
google.protobuf.Struct tags = 4;
string domain_id = 21;
string workspace_id = 22;
// +optional
string project_group_id = 23;
}

message UpdateProjectRequest {
Expand Down

0 comments on commit 859c9b6

Please sign in to comment.