Class: Mdm::Task
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Mdm::Task
- Defined in:
- app/models/mdm/task.rb
Instance Attribute Summary collapse
-
#creds ⇒ Array<Mdm::Cred>
Creds this task touched.
-
#hosts ⇒ Array<Mdm::Host>
Hosts this task touched.
-
#services ⇒ Array<Mdm::Service>
Services this task touched.
-
#sessions ⇒ Array<Mdm::Session>
Session this task touched.
-
#task_creds ⇒ Array<Mdm::TaskCred>
Details about creds this task touched.
-
#task_hosts ⇒ Array<Mdm::TaskHost>
Details about hosts this task touched.
-
#task_services ⇒ Array<Mdm::TaskService>
Details about services this task touched.
-
#task_sessions ⇒ Array<Mdm::TaskSession>
Details about sessions this task touched.
-
#workspace ⇒ Mdm::Workspace
The Workspace the Task belongs to.
Instance Attribute Details
#creds ⇒ Array<Mdm::Cred>
Creds this task touched
28 |
# File 'app/models/mdm/task.rb', line 28 has_many :creds, :through => :task_creds, :class_name => 'Mdm::Cred' |
#hosts ⇒ Array<Mdm::Host>
Hosts this task touched
40 |
# File 'app/models/mdm/task.rb', line 40 has_many :hosts, :through => :task_hosts, :class_name => 'Mdm::Host' |
#services ⇒ Array<Mdm::Service>
Services this task touched
52 |
# File 'app/models/mdm/task.rb', line 52 has_many :services, :through => :task_services, :class_name => 'Mdm::Service' |
#sessions ⇒ Array<Mdm::Session>
Session this task touched
64 |
# File 'app/models/mdm/task.rb', line 64 has_many :sessions, :through => :task_sessions, :class_name => 'Mdm::Session' |
#task_creds ⇒ Array<Mdm::TaskCred>
Details about creds this task touched
22 |
# File 'app/models/mdm/task.rb', line 22 has_many :task_creds, :dependent => :destroy, :class_name => 'Mdm::TaskCred' |
#task_hosts ⇒ Array<Mdm::TaskHost>
Details about hosts this task touched
34 |
# File 'app/models/mdm/task.rb', line 34 has_many :task_hosts, :dependent => :destroy, :class_name => 'Mdm::TaskHost' |
#task_services ⇒ Array<Mdm::TaskService>
Details about services this task touched
46 |
# File 'app/models/mdm/task.rb', line 46 has_many :task_services, :dependent => :destroy, :class_name => 'Mdm::TaskService' |
#task_sessions ⇒ Array<Mdm::TaskSession>
Details about sessions this task touched
58 |
# File 'app/models/mdm/task.rb', line 58 has_many :task_sessions, :dependent => :destroy, :class_name => 'Mdm::TaskSession' |
#workspace ⇒ Mdm::Workspace
The Workspace the Task belongs to
16 |
# File 'app/models/mdm/task.rb', line 16 belongs_to :workspace, :class_name => "Mdm::Workspace" |