Class: Google::Apis::AlertcenterV1beta1::AppsOutage
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::AppsOutage
- 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
-
#dashboard_uri ⇒ String
Link to the outage event in Google Workspace Status Dashboard Corresponds to the JSON property
dashboardUri. -
#incident_tracking_id ⇒ String
Incident tracking ID.
-
#merge_info ⇒ Google::Apis::AlertcenterV1beta1::MergeInfo
New alert tracking numbers.
-
#next_update_time ⇒ String
Timestamp by which the next update is expected to arrive.
-
#products ⇒ Array<String>
List of products impacted by the outage.
-
#resolution_time ⇒ String
Timestamp when the outage is expected to be resolved, or has confirmed resolution.
-
#status ⇒ String
Current outage status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AppsOutage
constructor
A new instance of AppsOutage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AppsOutage
Returns a new instance of AppsOutage.
558 559 560 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 558 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dashboard_uri ⇒ String
Link to the outage event in Google Workspace Status Dashboard
Corresponds to the JSON property dashboardUri
525 526 527 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 525 def dashboard_uri @dashboard_uri end |
#incident_tracking_id ⇒ String
Incident tracking ID.
Corresponds to the JSON property incidentTrackingId
530 531 532 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 530 def incident_tracking_id @incident_tracking_id end |
#merge_info ⇒ Google::Apis::AlertcenterV1beta1::MergeInfo
New alert tracking numbers.
Corresponds to the JSON property mergeInfo
535 536 537 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 535 def merge_info @merge_info end |
#next_update_time ⇒ String
Timestamp by which the next update is expected to arrive.
Corresponds to the JSON property nextUpdateTime
540 541 542 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 540 def next_update_time @next_update_time end |
#products ⇒ Array<String>
List of products impacted by the outage.
Corresponds to the JSON property products
545 546 547 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 545 def products @products end |
#resolution_time ⇒ String
Timestamp when the outage is expected to be resolved, or has confirmed
resolution. Provided only when known.
Corresponds to the JSON property resolutionTime
551 552 553 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 551 def resolution_time @resolution_time end |
#status ⇒ String
Current outage status.
Corresponds to the JSON property status
556 557 558 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 556 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
563 564 565 566 567 568 569 570 571 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 563 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 |