Class: Google::Apis::CloudbuildV1alpha2::NotifierConfig

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

NotifierConfig is the top-level configuration message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NotifierConfig

Returns a new instance of NotifierConfig.



819
820
821
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 819

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

Instance Attribute Details

#api_versionString

The API version of this configuration format. Corresponds to the JSON property apiVersion

Returns:

  • (String)


801
802
803
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 801

def api_version
  @api_version
end

#kindString

The type of notifier to use (e.g. SMTPNotifier). Corresponds to the JSON property kind

Returns:

  • (String)


806
807
808
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 806

def kind
  @kind
end

#metadataGoogle::Apis::CloudbuildV1alpha2::NotifierMetadata

NotifierMetadata contains the data which can be used to reference or describe this notifier. Corresponds to the JSON property metadata



812
813
814
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 812

def 
  @metadata
end

#specGoogle::Apis::CloudbuildV1alpha2::NotifierSpec

NotifierSpec is the configuration container for notifications. Corresponds to the JSON property spec



817
818
819
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 817

def spec
  @spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



824
825
826
827
828
829
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 824

def update!(**args)
  @api_version = args[:api_version] if args.key?(:api_version)
  @kind = args[:kind] if args.key?(:kind)
  @metadata = args[:metadata] if args.key?(:metadata)
  @spec = args[:spec] if args.key?(:spec)
end