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.



3992
3993
3994
# File 'lib/google/apis/connectors_v1/classes.rb', line 3992

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)


3985
3986
3987
# File 'lib/google/apis/connectors_v1/classes.rb', line 3985

def name
  @name
end

#typeString

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

Returns:

  • (String)


3990
3991
3992
# File 'lib/google/apis/connectors_v1/classes.rb', line 3990

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3997
3998
3999
4000
# File 'lib/google/apis/connectors_v1/classes.rb', line 3997

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