Class: Google::Apis::AlertcenterV1beta1::AppsOutage

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

Overview

An outage incident reported for a Google Workspace service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppsOutage

Returns a new instance of AppsOutage.



561
562
563
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 561

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

Instance Attribute Details

#dashboard_uriString

Link to the outage event in Google Workspace Status Dashboard Corresponds to the JSON property dashboardUri

Returns:

  • (String)


528
529
530
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 528

def dashboard_uri
  @dashboard_uri
end

#incident_tracking_idString

Incident tracking ID. Corresponds to the JSON property incidentTrackingId

Returns:

  • (String)


533
534
535
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 533

def incident_tracking_id
  @incident_tracking_id
end

#merge_infoGoogle::Apis::AlertcenterV1beta1::MergeInfo

New alert tracking numbers. Corresponds to the JSON property mergeInfo



538
539
540
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 538

def merge_info
  @merge_info
end

#next_update_timeString

Timestamp by which the next update is expected to arrive. Corresponds to the JSON property nextUpdateTime

Returns:

  • (String)


543
544
545
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 543

def next_update_time
  @next_update_time
end

#productsArray<String>

List of products impacted by the outage. Corresponds to the JSON property products

Returns:

  • (Array<String>)


548
549
550
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 548

def products
  @products
end

#resolution_timeString

Timestamp when the outage is expected to be resolved, or has confirmed resolution. Provided only when known. Corresponds to the JSON property resolutionTime

Returns:

  • (String)


554
555
556
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 554

def resolution_time
  @resolution_time
end

#statusString

Current outage status. Corresponds to the JSON property status

Returns:

  • (String)


559
560
561
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 559

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



566
567
568
569
570
571
572
573
574
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 566

def update!(**args)
  @dashboard_uri = args[:dashboard_uri] if args.key?(:dashboard_uri)
  @incident_tracking_id = args[:incident_tracking_id] if args.key?(:incident_tracking_id)
  @merge_info = args[:merge_info] if args.key?(:merge_info)
  @next_update_time = args[:next_update_time] if args.key?(:next_update_time)
  @products = args[:products] if args.key?(:products)
  @resolution_time = args[:resolution_time] if args.key?(:resolution_time)
  @status = args[:status] if args.key?(:status)
end