Class: Google::Apis::AlertcenterV1beta1::GoogleOperations

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleOperations

Returns a new instance of GoogleOperations.



1069
1070
1071
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1069

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#affected_user_emailsArray<String>

The list of emails which correspond to the users directly affected by the incident. Corresponds to the JSON property affectedUserEmails

Returns:

  • (Array<String>)


1041
1042
1043
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1041

def affected_user_emails
  @affected_user_emails
end

#attachment_dataGoogle::Apis::AlertcenterV1beta1::Attachment

Attachment with application-specific information about an alert. Corresponds to the JSON property attachmentData



1046
1047
1048
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1046

def attachment_data
  @attachment_data
end

#descriptionString

A detailed, freeform incident description. Corresponds to the JSON property description

Returns:

  • (String)


1051
1052
1053
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1051

def description
  @description
end

#domainString

Customer domain for email template personalization. Corresponds to the JSON property domain

Returns:

  • (String)


1056
1057
1058
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1056

def domain
  @domain
end

#headerString

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

Returns:

  • (String)


1062
1063
1064
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1062

def header
  @header
end

#titleString

A one-line incident description. Corresponds to the JSON property title

Returns:

  • (String)


1067
1068
1069
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1067

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1074
1075
1076
1077
1078
1079
1080
1081
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1074

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