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.



2767
2768
2769
# File 'lib/google/apis/connectors_v1/classes.rb', line 2767

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)


2760
2761
2762
# File 'lib/google/apis/connectors_v1/classes.rb', line 2760

def name
  @name
end

#typeString

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

Returns:

  • (String)


2765
2766
2767
# File 'lib/google/apis/connectors_v1/classes.rb', line 2765

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2772
2773
2774
2775
# File 'lib/google/apis/connectors_v1/classes.rb', line 2772

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