Class: Google::Apis::MonitoringV1::Axis

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

A chart axis.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Axis

Returns a new instance of Axis.



186
187
188
# File 'lib/google/apis/monitoring_v1/classes.rb', line 186

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

Instance Attribute Details

#labelString

The label of the axis. Corresponds to the JSON property label

Returns:

  • (String)


179
180
181
# File 'lib/google/apis/monitoring_v1/classes.rb', line 179

def label
  @label
end

#scaleString

The axis scale. By default, a linear scale is used. Corresponds to the JSON property scale

Returns:

  • (String)


184
185
186
# File 'lib/google/apis/monitoring_v1/classes.rb', line 184

def scale
  @scale
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



191
192
193
194
# File 'lib/google/apis/monitoring_v1/classes.rb', line 191

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