# Copyright 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. module Google module Monitoring module Dashboard module V1 # A basic layout divides the available space into vertical columns of equal # width and arranges a list of widgets using a row-first strategy. # @!attribute [rw] columns # @return [Integer] # The number of columns into which the view's width is divided. If omitted # or set to zero, a system default will be used while rendering. # @!attribute [rw] widgets # @return [Array] # The informational elements that are arranged into the columns row-first. class GridLayout; end # A simplified layout that divides the available space into rows # and arranges a set of widgets horizontally in each row. # @!attribute [rw] rows # @return [Array] # The rows of content to display. class RowLayout # Defines the layout properties and content for a row. # @!attribute [rw] weight # @return [Integer] # The relative weight of this row. The row weight is used to adjust the # height of rows on the screen (relative to peers). Greater the weight, # greater the height of the row on the screen. If omitted, a value # of 1 is used while rendering. # @!attribute [rw] widgets # @return [Array] # The display widgets arranged horizontally in this row. class Row; end end # A simplified layout that divides the available space into vertical columns # and arranges a set of widgets vertically in each column. # @!attribute [rw] columns # @return [Array] # The columns of content to display. class ColumnLayout # Defines the layout properties and content for a column. # @!attribute [rw] weight # @return [Integer] # The relative weight of this column. The column weight is used to adjust # the width of columns on the screen (relative to peers). # Greater the weight, greater the width of the column on the screen. # If omitted, a value of 1 is used while rendering. # @!attribute [rw] widgets # @return [Array] # The display widgets arranged vertically in this column. class Column; end end end end end end