Class: Google::Apis::MonitoringV1::Column

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v1/classes.rb,
lib/google/apis/monitoring_v1/representations.rb,
lib/google/apis/monitoring_v1/representations.rb

Overview

Defines the layout properties and content for a column.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Column

Returns a new instance of Column.



309
310
311
# File 'lib/google/apis/monitoring_v1/classes.rb', line 309

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#weightFixnum

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. Corresponds to the JSON property weight

Returns:

  • (Fixnum)


302
303
304
# File 'lib/google/apis/monitoring_v1/classes.rb', line 302

def weight
  @weight
end

#widgetsArray<Google::Apis::MonitoringV1::Widget>

The display widgets arranged vertically in this column. Corresponds to the JSON property widgets



307
308
309
# File 'lib/google/apis/monitoring_v1/classes.rb', line 307

def widgets
  @widgets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



314
315
316
317
# File 'lib/google/apis/monitoring_v1/classes.rb', line 314

def update!(**args)
  @weight = args[:weight] if args.key?(:weight)
  @widgets = args[:widgets] if args.key?(:widgets)
end