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.
-
#domain ⇒ String
Customer domain for email template personalization.
-
#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.
1318 1319 1320 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1318 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
1290 1291 1292 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1290 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
1295 1296 1297 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1295 def @attachment_data end |
#description ⇒ String
A detailed, freeform incident description.
Corresponds to the JSON property description
1300 1301 1302 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1300 def description @description end |
#domain ⇒ String
Customer domain for email template personalization.
Corresponds to the JSON property domain
1305 1306 1307 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1305 def domain @domain 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
1311 1312 1313 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1311 def header @header end |
#title ⇒ String
A one-line incident description.
Corresponds to the JSON property title
1316 1317 1318 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1316 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1323 1324 1325 1326 1327 1328 1329 1330 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1323 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) @domain = args[:domain] if args.key?(:domain) @header = args[:header] if args.key?(:header) @title = args[:title] if args.key?(:title) end |