Class: Google::Apis::ConnectorsV1::Jms

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

Overview

JMS message denotes the source of the event

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Jms

Returns a new instance of Jms.



2747
2748
2749
# File 'lib/google/apis/connectors_v1/classes.rb', line 2747

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

Instance Attribute Details

#nameString

Optional. Name of the JMS source. i.e. queueName or topicName Corresponds to the JSON property name

Returns:

  • (String)


2740
2741
2742
# File 'lib/google/apis/connectors_v1/classes.rb', line 2740

def name
  @name
end

#typeString

Optional. Type of the JMS Source. i.e. Queue or Topic Corresponds to the JSON property type

Returns:

  • (String)


2745
2746
2747
# File 'lib/google/apis/connectors_v1/classes.rb', line 2745

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2752
2753
2754
2755
# File 'lib/google/apis/connectors_v1/classes.rb', line 2752

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