Class: Google::Apis::MonitoringV1::TextStyle

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

Properties that determine how the title and content are styled

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TextStyle

Returns a new instance of TextStyle.



2275
2276
2277
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2275

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

Instance Attribute Details

#background_colorString

The background color as a hex string. "#RRGGBB" or "#RGB" Corresponds to the JSON property backgroundColor

Returns:

  • (String)


2242
2243
2244
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2242

def background_color
  @background_color
end

#font_sizeString

Font sizes for both the title and content. The title will still be larger relative to the content. Corresponds to the JSON property fontSize

Returns:

  • (String)


2248
2249
2250
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2248

def font_size
  @font_size
end

#horizontal_alignmentString

The horizontal alignment of both the title and content Corresponds to the JSON property horizontalAlignment

Returns:

  • (String)


2253
2254
2255
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2253

def horizontal_alignment
  @horizontal_alignment
end

#paddingString

The amount of padding around the widget Corresponds to the JSON property padding

Returns:

  • (String)


2258
2259
2260
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2258

def padding
  @padding
end

#pointer_locationString

The pointer location for this widget (also sometimes called a "tail") Corresponds to the JSON property pointerLocation

Returns:

  • (String)


2263
2264
2265
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2263

def pointer_location
  @pointer_location
end

#text_colorString

The text color as a hex string. "#RRGGBB" or "#RGB" Corresponds to the JSON property textColor

Returns:

  • (String)


2268
2269
2270
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2268

def text_color
  @text_color
end

#vertical_alignmentString

The vertical alignment of both the title and content Corresponds to the JSON property verticalAlignment

Returns:

  • (String)


2273
2274
2275
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2273

def vertical_alignment
  @vertical_alignment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2280
2281
2282
2283
2284
2285
2286
2287
2288
# File 'lib/google/apis/monitoring_v1/classes.rb', line 2280

def update!(**args)
  @background_color = args[:background_color] if args.key?(:background_color)
  @font_size = args[:font_size] if args.key?(:font_size)
  @horizontal_alignment = args[:horizontal_alignment] if args.key?(:horizontal_alignment)
  @padding = args[:padding] if args.key?(:padding)
  @pointer_location = args[:pointer_location] if args.key?(:pointer_location)
  @text_color = args[:text_color] if args.key?(:text_color)
  @vertical_alignment = args[:vertical_alignment] if args.key?(:vertical_alignment)
end