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 by Google for a Google Workspace (formerly G Suite) application.
Instance Attribute Summary collapse
-
#dashboard_uri ⇒ String
Link to the outage event in Google Workspace Status Dashboard Corresponds to the JSON property
dashboardUri. -
#next_update_time ⇒ String
Timestamp by which the next update shall be provided.
-
#products ⇒ Array<String>
List of products impacted by the outage.
-
#resolution_time ⇒ String
Timestamp of the outage expected or 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.
457 458 459 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 457 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
434 435 436 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 434 def dashboard_uri @dashboard_uri end |
#next_update_time ⇒ String
Timestamp by which the next update shall be provided.
Corresponds to the JSON property nextUpdateTime
439 440 441 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 439 def next_update_time @next_update_time end |
#products ⇒ Array<String>
List of products impacted by the outage.
Corresponds to the JSON property products
444 445 446 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 444 def products @products end |
#resolution_time ⇒ String
Timestamp of the outage expected or confirmed resolution. (Used only when
known).
Corresponds to the JSON property resolutionTime
450 451 452 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 450 def resolution_time @resolution_time end |
#status ⇒ String
Current outage status.
Corresponds to the JSON property status
455 456 457 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 455 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
462 463 464 465 466 467 468 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 462 def update!(**args) @dashboard_uri = args[:dashboard_uri] if args.key?(:dashboard_uri) @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 |