Class: Google::Apis::AlertcenterV1beta1::GoogleOperations
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::GoogleOperations
- 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 incident reported by Google Operations for a Google Workspace application.
Instance Attribute Summary collapse
-
#affected_user_emails ⇒ Array<String>
The list of emails which correspond to the users directly affected by the incident.
-
#attachment_data ⇒ Google::Apis::AlertcenterV1beta1::Attachment
Attachment with application-specific information about an alert.
-
#description ⇒ String
A detailed, freeform incident description.
-
#header ⇒ String
A header to display above the incident message.
-
#title ⇒ String
A one-line incident description.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleOperations
constructor
A new instance of GoogleOperations.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleOperations
Returns a new instance of GoogleOperations.
1021 1022 1023 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1021 def initialize(**args) update!(**args) end |
Instance Attribute Details
#affected_user_emails ⇒ Array<String>
The list of emails which correspond to the users directly affected by the
incident.
Corresponds to the JSON property affectedUserEmails
998 999 1000 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 998 def affected_user_emails @affected_user_emails end |
#attachment_data ⇒ Google::Apis::AlertcenterV1beta1::Attachment
Attachment with application-specific information about an alert.
Corresponds to the JSON property attachmentData
1003 1004 1005 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1003 def @attachment_data end |
#description ⇒ String
A detailed, freeform incident description.
Corresponds to the JSON property description
1008 1009 1010 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1008 def description @description end |
#header ⇒ String
A header to display above the incident message. Typically used to attach a
localized notice on the timeline for followup comms translations.
Corresponds to the JSON property header
1014 1015 1016 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1014 def header @header end |
#title ⇒ String
A one-line incident description.
Corresponds to the JSON property title
1019 1020 1021 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1019 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1026 1027 1028 1029 1030 1031 1032 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1026 def update!(**args) @affected_user_emails = args[:affected_user_emails] if args.key?(:affected_user_emails) @attachment_data = args[:attachment_data] if args.key?(:attachment_data) @description = args[:description] if args.key?(:description) @header = args[:header] if args.key?(:header) @title = args[:title] if args.key?(:title) end |