Class: Google::Apis::ConnectorsV1::Jms
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::Jms
- 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
-
#name ⇒ String
Optional.
-
#type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Jms
constructor
A new instance of Jms.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Jms
Returns a new instance of Jms.
2916 2917 2918 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2916 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Optional. Name of the JMS source. i.e. queueName or topicName
Corresponds to the JSON property name
2909 2910 2911 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2909 def name @name end |
#type ⇒ String
Optional. Type of the JMS Source. i.e. Queue or Topic
Corresponds to the JSON property type
2914 2915 2916 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2914 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2921 2922 2923 2924 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 2921 def update!(**args) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end |