Class: Google::Cloud::Monitoring::Dashboard::V1::RowLayout

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/monitoring/dashboard/v1/layouts.rb

Overview

A simplified layout that divides the available space into rows and arranges a set of widgets horizontally in each row.

Defined Under Namespace

Classes: Row

Instance Attribute Summary collapse

Instance Attribute Details

#rows::Array<::Google::Cloud::Monitoring::Dashboard::V1::RowLayout::Row>

Returns The rows of content to display.

Returns:



86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'proto_docs/google/monitoring/dashboard/v1/layouts.rb', line 86

class RowLayout
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # 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<::Google::Cloud::Monitoring::Dashboard::V1::Widget>]
  #     The display widgets arranged horizontally in this row.
  class Row
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end