Class: Google::Apis::CloudbuildV1alpha2::NotifierMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1alpha2::NotifierMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudbuild_v1alpha2/classes.rb,
generated/google/apis/cloudbuild_v1alpha2/representations.rb,
generated/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
-
#name ⇒ String
The human-readable and user-given name for the notifier.
-
#notifier ⇒ String
The string representing the name and version of notifier to deploy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NotifierMetadata
constructor
A new instance of NotifierMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NotifierMetadata
Returns a new instance of NotifierMetadata.
850 851 852 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 850 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The human-readable and user-given name for the notifier. For example: "repo-
merge-email-notifier".
Corresponds to the JSON property name
841 842 843 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 841 def name @name end |
#notifier ⇒ String
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
848 849 850 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 848 def notifier @notifier end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
855 856 857 858 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 855 def update!(**args) @name = args[:name] if args.key?(:name) @notifier = args[:notifier] if args.key?(:notifier) end |