Class: Google::Apis::AlertcenterV1beta1::GoogleOperations
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::GoogleOperations
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/alertcenter_v1beta1/classes.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb,
generated/google/apis/alertcenter_v1beta1/representations.rb
Overview
An incident reported by Google Operations for a G Suite 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.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleOperations
Returns a new instance of GoogleOperations
556 557 558 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 556 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
539 540 541 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 539 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
544 545 546 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 544 def @attachment_data end |
#description ⇒ String
A detailed, freeform incident description.
Corresponds to the JSON property description
549 550 551 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 549 def description @description end |
#title ⇒ String
A one-line incident description.
Corresponds to the JSON property title
554 555 556 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 554 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
561 562 563 564 565 566 |
# File 'generated/google/apis/alertcenter_v1beta1/classes.rb', line 561 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) @title = args[:title] if args.key?(:title) end |