Class: Google::Apis::AlertcenterV1beta1::BatchUndeleteAlertsRequest

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

A request to perform batch undelete on alerts.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BatchUndeleteAlertsRequest

Returns a new instance of BatchUndeleteAlertsRequest.



595
596
597
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 595

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

Instance Attribute Details

#alert_idArray<String>

Required. list of alert IDs. Corresponds to the JSON property alertId

Returns:

  • (Array<String>)


587
588
589
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 587

def alert_id
  @alert_id
end

#customer_idString

Optional. The unique identifier of the Google Workspace organization account of the customer the alerts are associated with. Corresponds to the JSON property customerId

Returns:

  • (String)


593
594
595
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 593

def customer_id
  @customer_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



600
601
602
603
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 600

def update!(**args)
  @alert_id = args[:alert_id] if args.key?(:alert_id)
  @customer_id = args[:customer_id] if args.key?(:customer_id)
end