Class: Google::Apis::CloudbuildV1alpha2::Notification

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudbuild_v1alpha2/classes.rb,
lib/google/apis/cloudbuild_v1alpha2/representations.rb,
lib/google/apis/cloudbuild_v1alpha2/representations.rb

Overview

Notification is the container which holds the data that is relevant to this particular notification.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Notification

Returns a new instance of Notification.



1202
1203
1204
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1202

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

Instance Attribute Details

#filterString

The filter string to use for notification filtering. Currently, this is assumed to be a CEL program. See https://opensource.google/projects/cel for more. Corresponds to the JSON property filter

Returns:

  • (String)


1178
1179
1180
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1178

def filter
  @filter
end

#http_deliveryGoogle::Apis::CloudbuildV1alpha2::HttpDelivery

HTTPDelivery is the delivery configuration for an HTTP notification. Corresponds to the JSON property httpDelivery



1183
1184
1185
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1183

def http_delivery
  @http_delivery
end

#slack_deliveryGoogle::Apis::CloudbuildV1alpha2::SlackDelivery

SlackDelivery is the delivery configuration for delivering Slack messages via webhooks. See Slack webhook documentation at: https://api.slack.com/messaging/ webhooks. Corresponds to the JSON property slackDelivery



1190
1191
1192
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1190

def slack_delivery
  @slack_delivery
end

#smtp_deliveryGoogle::Apis::CloudbuildV1alpha2::SmtpDelivery

SMTPDelivery is the delivery configuration for an SMTP (email) notification. Corresponds to the JSON property smtpDelivery



1195
1196
1197
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1195

def smtp_delivery
  @smtp_delivery
end

#struct_deliveryHash<String,Object>

Escape hatch for users to supply custom delivery configs. Corresponds to the JSON property structDelivery

Returns:

  • (Hash<String,Object>)


1200
1201
1202
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1200

def struct_delivery
  @struct_delivery
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1207
1208
1209
1210
1211
1212
1213
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1207

def update!(**args)
  @filter = args[:filter] if args.key?(:filter)
  @http_delivery = args[:http_delivery] if args.key?(:http_delivery)
  @slack_delivery = args[:slack_delivery] if args.key?(:slack_delivery)
  @smtp_delivery = args[:smtp_delivery] if args.key?(:smtp_delivery)
  @struct_delivery = args[:struct_delivery] if args.key?(:struct_delivery)
end