123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- syntax = "proto3";
- package google.monitoring.dashboard.v1;
- import "google/monitoring/dashboard/v1/widget.proto";
- option csharp_namespace = "Google.Cloud.Monitoring.Dashboard.V1";
- option go_package = "google.golang.org/genproto/googleapis/monitoring/dashboard/v1;dashboard";
- option java_multiple_files = true;
- option java_outer_classname = "LayoutsProto";
- option java_package = "com.google.monitoring.dashboard.v1";
- option php_namespace = "Google\\Cloud\\Monitoring\\Dashboard\\V1";
- option ruby_package = "Google::Cloud::Monitoring::Dashboard::V1";
- message GridLayout {
-
-
- int64 columns = 1;
-
- repeated Widget widgets = 2;
- }
- message MosaicLayout {
-
-
- message Tile {
-
-
-
- int32 x_pos = 1;
-
-
- int32 y_pos = 2;
-
-
- int32 width = 3;
-
-
- int32 height = 4;
-
- Widget widget = 5;
- }
-
-
- int32 columns = 1;
-
- repeated Tile tiles = 3;
- }
- message RowLayout {
-
- message Row {
-
-
-
-
- int64 weight = 1;
-
- repeated Widget widgets = 2;
- }
-
- repeated Row rows = 1;
- }
- message ColumnLayout {
-
- message Column {
-
-
-
-
- int64 weight = 1;
-
- repeated Widget widgets = 2;
- }
-
- repeated Column columns = 1;
- }
|