-
Notifications
You must be signed in to change notification settings - Fork 898
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14282 from jameswnl/inventory-embedded
Added Inventory to EmbeddedAnsible namespace
- Loading branch information
Showing
9 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
app/models/manageiq/providers/ansible_tower/automation_manager/inventory.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
class ManageIQ::Providers::AnsibleTower::AutomationManager::Inventory < ManageIQ::Providers::AutomationManager::InventoryGroup | ||
class ManageIQ::Providers::AnsibleTower::AutomationManager::Inventory < ManageIQ::Providers::ExternalAutomationManager::InventoryGroup | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
app/models/manageiq/providers/embedded_ansible/automation_manager/inventory.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
class ManageIQ::Providers::EmbeddedAnsible::AutomationManager::Inventory < ManageIQ::Providers::EmbeddedAutomationManager::InventoryGroup | ||
end |
2 changes: 2 additions & 0 deletions
2
app/models/manageiq/providers/embedded_automation_manager/inventory_group.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
class ManageIQ::Providers::EmbeddedAutomationManager::InventoryGroup < ManageIQ::Providers::AutomationManager::InventoryGroup | ||
end |
2 changes: 2 additions & 0 deletions
2
app/models/manageiq/providers/external_automation_manager/inventory_group.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
class ManageIQ::Providers::ExternalAutomationManager::InventoryGroup < ManageIQ::Providers::AutomationManager::InventoryGroup | ||
end |
2 changes: 1 addition & 1 deletion
2
...ce_models/miq_ae_service_manageiq-providers-ansible_tower-automation_manager-inventory.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module MiqAeMethodService | ||
class MiqAeServiceManageIQ_Providers_AnsibleTower_AutomationManager_Inventory < MiqAeServiceManageIQ_Providers_AutomationManager_InventoryGroup | ||
class MiqAeServiceManageIQ_Providers_AnsibleTower_AutomationManager_Inventory < MiqAeServiceManageIQ_Providers_ExternalAutomationManager_InventoryGroup | ||
end | ||
end |
4 changes: 4 additions & 0 deletions
4
...models/miq_ae_service_manageiq-providers-embedded_ansible-automation_manager-inventory.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module MiqAeMethodService | ||
class MiqAeServiceManageIQ_Providers_EmbeddedAnsible_AutomationManager_Inventory < MiqAeServiceManageIQ_Providers_EmbeddedAutomationManager_InventoryGroup | ||
end | ||
end |
4 changes: 4 additions & 0 deletions
4
...e_models/miq_ae_service_manageiq-providers-embedded_automation_manager-inventory_group.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module MiqAeMethodService | ||
class MiqAeServiceManageIQ_Providers_EmbeddedAutomationManager_InventoryGroup < MiqAeServiceManageIQ_Providers_AutomationManager_InventoryGroup | ||
end | ||
end |
4 changes: 4 additions & 0 deletions
4
...e_models/miq_ae_service_manageiq-providers-external_automation_manager-inventory_group.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module MiqAeMethodService | ||
class MiqAeServiceManageIQ_Providers_ExternalAutomationManager_InventoryGroup < MiqAeServiceManageIQ_Providers_AutomationManager_InventoryGroup | ||
end | ||
end |