Class: Google::Apis::MonitoringV1::Axis
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV1::Axis
- 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 chart axis.
Instance Attribute Summary collapse
-
#label ⇒ String
The label of the axis.
-
#scale ⇒ String
The axis scale.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Axis
constructor
A new instance of Axis.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Axis
Returns a new instance of Axis.
133 134 135 |
# File 'generated/google/apis/monitoring_v1/classes.rb', line 133 def initialize(**args) update!(**args) end |
Instance Attribute Details
#label ⇒ String
The label of the axis.
Corresponds to the JSON property label
126 127 128 |
# File 'generated/google/apis/monitoring_v1/classes.rb', line 126 def label @label end |
#scale ⇒ String
The axis scale. By default, a linear scale is used.
Corresponds to the JSON property scale
131 132 133 |
# File 'generated/google/apis/monitoring_v1/classes.rb', line 131 def scale @scale end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
138 139 140 141 |
# File 'generated/google/apis/monitoring_v1/classes.rb', line 138 def update!(**args) @label = args[:label] if args.key?(:label) @scale = args[:scale] if args.key?(:scale) end |