Skip to content

Commit

Permalink
Merge pull request #440 from stat-kwon/master
Browse files Browse the repository at this point in the history
Add vars field in DataTable resources
  • Loading branch information
stat-kwon authored Nov 4, 2024
2 parents 6f0ac31 + 0591a19 commit 77031ed
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
14 changes: 11 additions & 3 deletions proto/spaceone/api/dashboard/v1/private_data_table.proto
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ message AddPrivateDataTableRequest {
spaceone.api.dashboard.v1.SourceType source_type = 3;
spaceone.api.dashboard.v1.AddOptions options = 4;
// +optional
google.protobuf.Struct tags = 5;
google.protobuf.Struct vars = 5;
// +optional
google.protobuf.Struct tags = 6;
}

message TransformPrivateDataTableRequest {
Expand All @@ -80,7 +82,9 @@ message TransformPrivateDataTableRequest {
spaceone.api.dashboard.v1.Operator operator = 3;
spaceone.api.dashboard.v1.TransformOptions options = 4;
// +optional
google.protobuf.Struct tags = 5;
google.protobuf.Struct vars = 5;
// +optional
google.protobuf.Struct tags = 6;
}

message UpdatePrivateDataTableRequest {
Expand All @@ -90,7 +94,9 @@ message UpdatePrivateDataTableRequest {
// +optional
google.protobuf.Struct options = 3;
// +optional
google.protobuf.Struct tags = 4;
google.protobuf.Struct vars = 4;
// +optional
google.protobuf.Struct tags = 5;
}

message PrivateDataTableRequest {
Expand All @@ -115,6 +121,8 @@ message LoadPrivateDataTableRequest {
repeated spaceone.api.core.v2.Sort sort = 5;
// +optional
spaceone.api.core.v2.Page page = 6;
// +optional
google.protobuf.Struct vars = 7;
}

message PrivateDataTableQuery {
Expand Down
14 changes: 11 additions & 3 deletions proto/spaceone/api/dashboard/v1/public_data_table.proto
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,9 @@ message AddPublicDataTableRequest {
SourceType source_type = 3;
AddOptions options = 4;
// +optional
google.protobuf.Struct tags = 5;
google.protobuf.Struct vars = 5;
// +optional
google.protobuf.Struct tags = 6;
}

message TransformPublicDataTableRequest {
Expand All @@ -193,7 +195,9 @@ message TransformPublicDataTableRequest {
Operator operator = 3;
TransformOptions options = 4;
// +optional
google.protobuf.Struct tags = 5;
google.protobuf.Struct vars = 5;
// +optional
google.protobuf.Struct tags = 6;
}

message UpdatePublicDataTableRequest {
Expand All @@ -203,7 +207,9 @@ message UpdatePublicDataTableRequest {
// +optional
google.protobuf.Struct options = 3;
// +optional
google.protobuf.Struct tags = 4;
google.protobuf.Struct vars = 4;
// +optional
google.protobuf.Struct tags = 5;
}

message PublicDataTableRequest {
Expand All @@ -228,6 +234,8 @@ message LoadPublicDataTableRequest {
repeated spaceone.api.core.v2.Sort sort = 5;
// +optional
spaceone.api.core.v2.Page page = 6;
// +optional
google.protobuf.Struct vars = 7;
}

message PublicDataTableQuery {
Expand Down

0 comments on commit 77031ed

Please sign in to comment.