Skip to content

Commit

Permalink
Merge pull request #436 from stat-kwon/master
Browse files Browse the repository at this point in the history
Add domain_options field when using creating public dashboard
  • Loading branch information
stat-kwon authored Oct 30, 2024
2 parents 19cfc06 + 11ee7c6 commit 7fef712
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 38 deletions.
52 changes: 26 additions & 26 deletions dist/python/spaceone/api/dashboard/v1/public_dashboard_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 17 additions & 12 deletions proto/spaceone/api/dashboard/v1/public_dashboard.proto
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,15 @@ message CreatePublicDashboardRequest {
// +optional
google.protobuf.Struct options = 6;
// +optional
google.protobuf.Struct variables = 7;
google.protobuf.Struct domain_options = 7;
// +optional
google.protobuf.Struct variables_schema = 8;
google.protobuf.Struct variables = 8;
// +optional
google.protobuf.ListValue labels = 9;
google.protobuf.Struct variables_schema = 9;
// +optional
google.protobuf.Struct tags = 10;
google.protobuf.ListValue labels = 10;
// +optional
google.protobuf.Struct tags = 11;
ResourceGroup resource_group = 20;
// +optional
string workspace_id = 21;
Expand All @@ -139,13 +141,15 @@ message UpdatePublicDashboardRequest {
// +optional
google.protobuf.Struct options = 7;
// +optional
google.protobuf.Struct variables = 8;
google.protobuf.Struct domain_options = 8;
// +optional
google.protobuf.Struct variables_schema = 9;
google.protobuf.Struct variables = 9;
// +optional
google.protobuf.ListValue labels = 10;
google.protobuf.Struct variables_schema = 10;
// +optional
google.protobuf.Struct tags = 11;
google.protobuf.ListValue labels = 11;
// +optional
google.protobuf.Struct tags = 12;
// +optional
string folder_id = 21;
}
Expand Down Expand Up @@ -201,10 +205,11 @@ message PublicDashboardInfo {
google.protobuf.Struct vars = 6;
google.protobuf.Struct vars_schema = 7;
google.protobuf.Struct options = 8;
google.protobuf.Struct variables = 9;
google.protobuf.Struct variables_schema = 10;
google.protobuf.ListValue labels = 11;
google.protobuf.Struct tags = 12;
google.protobuf.Struct domain_options = 9;
google.protobuf.Struct variables = 10;
google.protobuf.Struct variables_schema = 11;
google.protobuf.ListValue labels = 12;
google.protobuf.Struct tags = 13;

bool shared = 18;
DashboardScope scope = 19;
Expand Down

0 comments on commit 7fef712

Please sign in to comment.