Class: Google::Apis::MonitoringV1::DashboardAnnotations

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

Dashboard-level configuration for annotations

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DashboardAnnotations

Returns a new instance of DashboardAnnotations.



469
470
471
# File 'lib/google/apis/monitoring_v1/classes.rb', line 469

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

Instance Attribute Details

#default_resource_namesArray<String>

Dashboard level defaults for names of logging resources to search for events. Currently only projects are supported. Each individual EventAnnotation may have its own overrides. If both this field and the per annotation field is empty, then the scoping project is used. Limit: 50 projects. For example: “ projects/some-project-id” Corresponds to the JSON property defaultResourceNames

Returns:

  • (Array<String>)


461
462
463
# File 'lib/google/apis/monitoring_v1/classes.rb', line 461

def default_resource_names
  @default_resource_names
end

#event_annotationsArray<Google::Apis::MonitoringV1::EventAnnotation>

List of annotation configurations for this dashboard. Each entry specifies one event type. Corresponds to the JSON property eventAnnotations



467
468
469
# File 'lib/google/apis/monitoring_v1/classes.rb', line 467

def event_annotations
  @event_annotations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



474
475
476
477
# File 'lib/google/apis/monitoring_v1/classes.rb', line 474

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