Class: Ansible::Ruby::Modules::Flowdock
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Flowdock
- Defined in:
- lib/ansible/ruby/modules/generated/notification/flowdock.rb
Overview
Send a message to a flowdock team inbox or chat using the push API (see www.flowdock.com/api/team-inbox and www.flowdock.com/api/chat)
Instance Method Summary collapse
-
#external_user_name ⇒ String?
(chat only - required) Name of the “user” sending the message.
-
#from_address ⇒ String?
(inbox only - required) Email address of the message sender.
-
#from_name ⇒ Object?
(inbox only) Name of the message sender.
-
#link ⇒ Object?
(inbox only) Link associated with the message.
-
#msg ⇒ String
Content of the message.
-
#project ⇒ Object?
(inbox only) Human readable identifier for more detailed message categorization.
-
#reply_to ⇒ Object?
(inbox only) Email address for replies.
-
#source ⇒ String?
(inbox only - required) Human readable identifier of the application that uses the Flowdock API.
-
#subject ⇒ String?
(inbox only - required) Subject line of the message.
-
#tags ⇒ Array<String>, ...
Tags of the message, separated by commas.
-
#token ⇒ String
API token.
-
#type ⇒ :inbox, :chat
Whether to post to ‘inbox’ or ‘chat’.
-
#validate_certs ⇒ :yes, ...
If C(no), SSL certificates will not be validated.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, fix_inclusion, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#external_user_name ⇒ String?
Returns (chat only - required) Name of the “user” sending the message.
28 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 28 attribute :external_user_name |
#from_address ⇒ String?
Returns (inbox only - required) Email address of the message sender.
32 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 32 attribute :from_address |
#from_name ⇒ Object?
Returns (inbox only) Name of the message sender.
44 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 44 attribute :from_name |
#link ⇒ Object?
Returns (inbox only) Link associated with the message. This will be used to link the message subject in Team Inbox.
53 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 53 attribute :link |
#msg ⇒ String
Returns Content of the message.
20 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 20 attribute :msg |
#project ⇒ Object?
Returns (inbox only) Human readable identifier for more detailed message categorization.
50 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 50 attribute :project |
#reply_to ⇒ Object?
Returns (inbox only) Email address for replies.
47 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 47 attribute :reply_to |
#source ⇒ String?
Returns (inbox only - required) Human readable identifier of the application that uses the Flowdock API.
36 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 36 attribute :source |
#subject ⇒ String?
Returns (inbox only - required) Subject line of the message.
40 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 40 attribute :subject |
#tags ⇒ Array<String>, ...
Returns tags of the message, separated by commas.
24 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 24 attribute :tags |
#token ⇒ String
Returns API token.
12 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 12 attribute :token |
#type ⇒ :inbox, :chat
Returns Whether to post to ‘inbox’ or ‘chat’.
16 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 16 attribute :type |
#validate_certs ⇒ :yes, ...
Returns If C(no), SSL certificates will not be validated. This should only be used on personally controlled sites using self-signed certificates.
56 |
# File 'lib/ansible/ruby/modules/generated/notification/flowdock.rb', line 56 attribute :validate_certs |