Class: Google::Apis::CloudbuildV1alpha2::NotifierMetadata

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

NotifierMetadata contains the data which can be used to reference or describe this notifier.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NotifierMetadata

Returns a new instance of NotifierMetadata.



1272
1273
1274
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1272

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

Instance Attribute Details

#nameString

The human-readable and user-given name for the notifier. For example: "repo- merge-email-notifier". Corresponds to the JSON property name

Returns:

  • (String)


1263
1264
1265
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1263

def name
  @name
end

#notifierString

The string representing the name and version of notifier to deploy. Expected to be of the form of "/:". For example: "gcr.io/my-project/notifiers/smtp:1.2. 34". Corresponds to the JSON property notifier

Returns:

  • (String)


1270
1271
1272
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1270

def notifier
  @notifier
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1277
1278
1279
1280
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 1277

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