Class: Google::Apis::MonitoringV1::Tile

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

Overview

A single tile in the mosaic. The placement and size of the tile are configurable.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Tile

Returns a new instance of Tile.



982
983
984
# File 'generated/google/apis/monitoring_v1/classes.rb', line 982

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

Instance Attribute Details

#heightFixnum

The height of the tile, measured in grid blocks. Tiles must have a minimum height of 1. Corresponds to the JSON property height

Returns:

  • (Fixnum)


955
956
957
# File 'generated/google/apis/monitoring_v1/classes.rb', line 955

def height
  @height
end

#widgetGoogle::Apis::MonitoringV1::Widget

Widget contains a single dashboard component and configuration of how to present the component in the dashboard. Corresponds to the JSON property widget



961
962
963
# File 'generated/google/apis/monitoring_v1/classes.rb', line 961

def widget
  @widget
end

#widthFixnum

The width of the tile, measured in grid blocks. Tiles must have a minimum width of 1. Corresponds to the JSON property width

Returns:

  • (Fixnum)


967
968
969
# File 'generated/google/apis/monitoring_v1/classes.rb', line 967

def width
  @width
end

#x_posFixnum

The zero-indexed position of the tile in grid blocks relative to the left edge of the grid. Tiles must be contained within the specified number of columns. x_pos cannot be negative. Corresponds to the JSON property xPos

Returns:

  • (Fixnum)


974
975
976
# File 'generated/google/apis/monitoring_v1/classes.rb', line 974

def x_pos
  @x_pos
end

#y_posFixnum

The zero-indexed position of the tile in grid blocks relative to the top edge of the grid. y_pos cannot be negative. Corresponds to the JSON property yPos

Returns:

  • (Fixnum)


980
981
982
# File 'generated/google/apis/monitoring_v1/classes.rb', line 980

def y_pos
  @y_pos
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



987
988
989
990
991
992
993
# File 'generated/google/apis/monitoring_v1/classes.rb', line 987

def update!(**args)
  @height = args[:height] if args.key?(:height)
  @widget = args[:widget] if args.key?(:widget)
  @width = args[:width] if args.key?(:width)
  @x_pos = args[:x_pos] if args.key?(:x_pos)
  @y_pos = args[:y_pos] if args.key?(:y_pos)
end