Class: ECSHelper
- Inherits:
-
Object
- Object
- ECSHelper
- Extended by:
- Forwardable
- Defined in:
- lib/ecs_helper.rb,
lib/ecs_helper/version.rb
Defined Under Namespace
Modules: Logging Classes: Client, ClusterHelper, Command, CommonHelper, Error, ServiceHelper, TaskDefinitionHelper
Constant Summary collapse
- VERSION =
'0.0.37'
Instance Attribute Summary collapse
-
#client ⇒ Object
Returns the value of attribute client.
-
#cluster_helper ⇒ Object
Returns the value of attribute cluster_helper.
-
#command ⇒ Object
Returns the value of attribute command.
-
#common_helper ⇒ Object
Returns the value of attribute common_helper.
-
#options ⇒ Object
Returns the value of attribute options.
-
#parser ⇒ Object
Returns the value of attribute parser.
-
#service_helper ⇒ Object
Returns the value of attribute service_helper.
Instance Method Summary collapse
-
#initialize ⇒ ECSHelper
constructor
A new instance of ECSHelper.
Constructor Details
#initialize ⇒ ECSHelper
Returns a new instance of ECSHelper.
25 26 27 28 29 30 31 |
# File 'lib/ecs_helper.rb', line 25 def initialize @client = Client.new @common_helper = CommonHelper.new(self) @cluster_helper = ClusterHelper.new(self) @service_helper = ServiceHelper.new(self) @command = Command.new(self) end |
Instance Attribute Details
#client ⇒ Object
Returns the value of attribute client.
7 8 9 |
# File 'lib/ecs_helper.rb', line 7 def client @client end |
#cluster_helper ⇒ Object
Returns the value of attribute cluster_helper.
7 8 9 |
# File 'lib/ecs_helper.rb', line 7 def cluster_helper @cluster_helper end |
#command ⇒ Object
Returns the value of attribute command.
7 8 9 |
# File 'lib/ecs_helper.rb', line 7 def command @command end |
#common_helper ⇒ Object
Returns the value of attribute common_helper.
7 8 9 |
# File 'lib/ecs_helper.rb', line 7 def common_helper @common_helper end |
#options ⇒ Object
Returns the value of attribute options.
7 8 9 |
# File 'lib/ecs_helper.rb', line 7 def @options end |
#parser ⇒ Object
Returns the value of attribute parser.
7 8 9 |
# File 'lib/ecs_helper.rb', line 7 def parser @parser end |
#service_helper ⇒ Object
Returns the value of attribute service_helper.
7 8 9 |
# File 'lib/ecs_helper.rb', line 7 def service_helper @service_helper end |