Skip to content

Commit

Permalink
feat: add order field to Provider APIs
Browse files Browse the repository at this point in the history
(cherry picked from commit 96485c4)
  • Loading branch information
whdalsrnt committed Oct 13, 2023
1 parent dfaab9c commit 4fdf63c
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions proto/spaceone/api/identity/v1/provider.proto
Original file line number Diff line number Diff line change
Expand Up @@ -52,29 +52,32 @@ message CreateProviderRequest {
string provider = 1;
string name = 2;
// +optional
google.protobuf.Struct template = 3;
int32 order = 3;
google.protobuf.Struct template = 4;
// +optional
google.protobuf.Struct metadata = 4;
google.protobuf.Struct metadata = 5;
// +optional
google.protobuf.Struct capability = 5;
google.protobuf.Struct capability = 6;
// +optional
google.protobuf.Struct tags = 6;
string domain_id = 7;
google.protobuf.Struct tags = 7;
string domain_id = 11;
}

message UpdateProviderRequest {
string provider = 1;
// +optional
string name = 2;
// +optional
google.protobuf.Struct template = 3;
int32 order = 3;
// +optional
google.protobuf.Struct metadata = 4;
google.protobuf.Struct template = 4;
// +optional
google.protobuf.Struct capability = 5;
google.protobuf.Struct metadata = 5;
// +optional
google.protobuf.Struct tags = 6;
string domain_id = 7;
google.protobuf.Struct capability = 6;
// +optional
google.protobuf.Struct tags = 7;
string domain_id = 11;
}

message ProviderRequest {
Expand Down Expand Up @@ -102,11 +105,12 @@ message ProviderQuery {
message ProviderInfo {
string provider = 1;
string name = 2;
google.protobuf.Struct template = 3;
google.protobuf.Struct metadata = 4;
google.protobuf.Struct capability = 5;
google.protobuf.Struct tags = 6;
string domain_id = 7;
int32 order = 3;
google.protobuf.Struct template = 4;
google.protobuf.Struct metadata = 5;
google.protobuf.Struct capability = 6;
google.protobuf.Struct tags = 7;
string domain_id = 8;
string created_at = 11;
}

Expand Down

0 comments on commit 4fdf63c

Please sign in to comment.