├── tests ├── unit │ ├── __init__.py │ └── utils │ │ └── __init__.py └── requirements.txt ├── plugins └── module_utils │ └── __init__.py ├── requirements.txt ├── roles ├── oneview_label │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_scope │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_task │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_user │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_volume │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_dynamic_role │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_enclosure │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_fc_network │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_fcoe_network │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_id_pools │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_interconnect │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_label_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_network_set │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_rack_manager │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_repositories │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_san_manager │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_scope_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_storage_pool │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_task_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_uplink_set │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_user_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_volume_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_drive_enclosure │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_enclosure_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_enclosure_group │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_ethernet_network │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_fc_network_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_firmware_bundle │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_firmware_driver │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_id_pools_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_logical_enclosure │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_network_set_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_san_manager_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_sas_interconnect │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_sas_logical_jbod │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_server_hardware │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_server_profile │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_storage_system │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_uplink_set_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_version_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_appliance_ssh_access │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENCE ├── oneview_certificates_server │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_connection_template │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_drive_enclosure_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_enclosure_group_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_ethernet_network_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_fcoe_network_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_firmware_driver_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_hypervisor_manager │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_id_pools_ipv4_range │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_id_pools_ipv4_subnet │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_interconnect_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_logical_interconnect │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_rack_manager_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_repositories_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_sas_interconnect_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_sas_logical_jbod_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_server_hardware_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_server_hardware_type │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_server_profile_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_storage_pool_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_storage_system_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_appliance_ssh_access_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_certificates_server_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_connection_template_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_hypervisor_cluster_profile │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_hypervisor_manager_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_id_pools_ipv4_range_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_id_pools_ipv4_subnet_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_interconnect_type_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_logical_enclosure_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_logical_interconnect_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_logical_interconnect_group │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_sas_interconnect_type_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_sas_logical_interconnect │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── LICENSE ├── oneview_server_hardware_type_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_server_profile_template │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_storage_volume_attachment │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_storage_volume_template │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_device_snmp_v3_users │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_network_interfaces │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── meta │ │ └── main.yml │ └── defaults │ │ └── main.yml ├── oneview_appliance_proxy_configuration │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_hypervisor_cluster_profile_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_logical_interconnect_group_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_sas_logical_interconnect_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_sas_logical_interconnect_group │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_server_profile_template_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_storage_volume_attachment_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_storage_volume_template_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_device_snmp_v3_users_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_appliance_network_interface_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_proxy_configuration_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_sas_logical_interconnect_group_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_sas_logical_jbod_attachment_facts │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_configuration_timeconfig_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_appliance_device_snmp_v1_trap_destination │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_device_snmp_v3_trap_destination │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_time_and_locale_configuration │ ├── vars │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ ├── defaults │ │ └── main.yml │ └── meta │ │ └── main.yml ├── oneview_appliance_device_snmp_v1_trap_destination_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_appliance_device_snmp_v3_trap_destination_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml ├── oneview_appliance_time_and_locale_configuration_facts │ ├── vars │ │ └── main.yml │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── oneview_config.json │ └── meta │ │ └── main.yml └── dependencies_list │ ├── meta │ └── main.yml │ ├── README.md │ ├── tasks │ └── main.yml │ └── LICENSE ├── meta └── runtime.yml ├── .gitattributes ├── .coveragerc ├── ansible.cfg ├── .gitignore ├── Migration Support ├── HPE OneView Ansible Collection Installation and User Guide.docx └── Overview of Migrating from HPE OneView Ansible Module to HPE OneView Ansible Collection Format.DOCX ├── playbooks └── README.md ├── codecov.yml ├── .ansible-lint └── .github └── PULL_REQUEST_TEMPLATE.md /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/module_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | hpICsp 2 | hpeOneView 3 | -------------------------------------------------------------------------------- /roles/oneview_label/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_scope/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_task/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_user/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_volume/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_dynamic_role/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_enclosure/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_fc_network/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_id_pools/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_interconnect/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_label_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_network_set/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_repositories/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_san_manager/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_scope_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_task_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_user_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_volume_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_fc_network_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_firmware_bundle/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_network_set_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_san_manager_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_profile/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_system/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_version_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /meta/runtime.yml: -------------------------------------------------------------------------------- 1 | --- 2 | requires_ansible: '>=2.15.0' 3 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_connection_template/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_repositories_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_system_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_connection_template_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_type_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_type_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interfaces/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interface_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_attachment_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py text eol=lf 2 | *.sh text eol=lf 3 | *.yml text eol=lf 4 | -------------------------------------------------------------------------------- /roles/oneview_appliance_configuration_timeconfig_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration_facts/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | coverage 2 | coveralls 3 | flake8 4 | mock 5 | pytest 6 | six -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | exclude_lines = 3 | if __name__ == .__main__.: 4 | except ImportError: -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | collections_paths = ./ 3 | collection_name = hpe.oneview 4 | 5 | [inventory] 6 | enable_plugins = host_list, script, auto, yaml, ini, toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | inventory 2 | **/*.retry 3 | *.pyc 4 | .idea 5 | examples/vars/config.yml 6 | .idea/ 7 | *~ 8 | examples/vars/os_attributes.yaml 9 | **/.coverage 10 | htmlcov 11 | coverage.xml -------------------------------------------------------------------------------- /roles/oneview_task_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_task_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_task_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_uplink_set 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_uplink_set/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_label_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_label_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_label_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_version_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_version_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_version_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_fc_network_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_fc_network_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_fc_network_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_uplink_set_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_uplink_set_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_rack_manager_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_rack_manager_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_repositories_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_repositories_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_repositories_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_san_manager_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_san_manager_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_san_manager_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /Migration Support/HPE OneView Ansible Collection Installation and User Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/oneview-ansible-collection/HEAD/Migration Support/HPE OneView Ansible Collection Installation and User Guide.docx -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_ssh_access 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_ssh_access/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_connection_template/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_connection_template 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_connection_template/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_task/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_task 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_task/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_hardware_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_hardware_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_ethernet_network_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_ethernet_network_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_type_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_interconnect_type_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_interconnect_type_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_id_pools_ipv4_subnets 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_id_pools_ipv4_subnet_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_ssh_access_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_ssh_access_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_hardware_type_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_hardware_type_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_label/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_label 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_label/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')|from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_user/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_user 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_user/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')|from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_user_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_user 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_user/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')|from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_id_pools/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_id_pools 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_id_pools/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')|from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_enclosure/defaults/main.yml: -------------------------------------------------------------------------------- 1 | # --- 2 | # defaults file for oneview_enclosure 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_enclosure/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_hypervisor_cluster_profile_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_hypervisor_cluster_profile_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_hypervisor_manager_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_hypervisor_manager_facts/files/oneview_config.json" 4 | name: "" 5 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_id_pools 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_id_pools/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')|from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_proxy_configuration_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_proxy_configuration_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_scope_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_scope_facts 3 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 4 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_scope_facts/files/oneview_config.json" 5 | -------------------------------------------------------------------------------- /roles/oneview_appliance_configuration_timeconfig_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for appliance_configuration_timeconfig 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_configuration_timeconfig_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_device_snmp_v3_users_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_device_snmp_v3_users_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_repositories/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_repositories 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_repositories/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_scope/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_volume_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_volume_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_volume_facts/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json }}" 5 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_enclosure_group 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_enclosure_group/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_label/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_hardware 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_rack_manager/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_scope_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_server_profile/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_profile 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_profile/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_task/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_task_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_user/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_volume/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_volume_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure/defaults/main.yml: -------------------------------------------------------------------------------- 1 | # --- 2 | # defaults file for oneview_drive_enclosure 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_drive_enclosure/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_enclosure/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_fc_network/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_firmware_bundle/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_firmware_bundle 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_firmware_bundle/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_firmware_driver 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_firmware_driver/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_id_pools/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_label_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_network_set/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_network_set_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect/defaults/main.yml: -------------------------------------------------------------------------------- 1 | # --- 2 | # defaults file for oneview_sas_interconnect 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_interconnect/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod/defaults/main.yml: -------------------------------------------------------------------------------- 1 | # --- 2 | # defaults file for oneview_sas_logical_jbod 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_logical_jbod/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_hardware 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_hardware/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_storage_system/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_uplink_set/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_user_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_dynamic_role/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_fc_network_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_firmware_bundle/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_interconnect/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_logical_enclosure 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_logical_enclosure/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json }}" 5 | -------------------------------------------------------------------------------- /roles/oneview_network_set_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_network_set_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_network_set_facts/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_repositories/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_server_profile/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_version_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /Migration Support/Overview of Migrating from HPE OneView Ansible Module to HPE OneView Ansible Collection Format.DOCX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/oneview-ansible-collection/HEAD/Migration Support/Overview of Migrating from HPE OneView Ansible Module to HPE OneView Ansible Collection Format.DOCX -------------------------------------------------------------------------------- /roles/oneview_certificates_server/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_connection_template/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_fcoe_network_facts 3 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 4 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_fcoe_network_facts/files/oneview_config.json" 5 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_id_pools_ipv4_ranges 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_id_pools_ipv4_range/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_interconnect_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_interconnect_facts/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_rack_manager_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_repositories_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_san_manager/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_server_profile_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_storage_system_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_time_and_locale_configuration_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_time_and_locale_configuration_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_connection_template_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_enclosure_group_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_enclosure_group_facts/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_firmware_driver_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_firmware_driver_facts/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')|from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_id_pools_ipv4_subnets 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_id_pools_ipv4_subnet/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_type_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_scope/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_scope 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_scope/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_hardware_type 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_hardware_type/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_storage_system_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_system_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_system_facts/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_volume/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_volume 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_volume/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{ lookup('file','../config/config.json') |from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interfaces/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_volume_template 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_volume_template/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_device_snmp_v1_trap_destination_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_device_snmp_v1_trap_destination_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_device_snmp_v3_trap_destination_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_device_snmp_v3_trap_destination_facts/files/oneview_config.json" 4 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interface_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_id_pools_ipv4_ranges 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_id_pools_ipv4_range_facts/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_logical_enclosure_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_logical_enclosure_facts/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_san_manager_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | 13 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_type_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_profile_template 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_profile_template/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json }}" 5 | -------------------------------------------------------------------------------- /roles/oneview_appliance_configuration_timeconfig_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_certificates_server 3 | 4 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_certificates_server_facts/files/oneview_config.json" 5 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_connection_template_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_connection_template_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_connection_template_facts/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_fc_network/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_fc_network 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_fc_network/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | config_file: "{{lookup('file', config)}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_hypervisor_cluster_profile 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_hypervisor_cluster_profile/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_logical_interconnect_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_logical_interconnect_facts/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_network_set/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_network_set 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_network_set/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_attachment_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_volume_attachment 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_volume_attachment/files/oneview_config.json" 4 | contents: "{{lookup('file', config)}}" 5 | server_profile_name: "sp1" 6 | -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_dynamic_role/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_dynamic_role 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_dynamic_role/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json')| from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_fcoe_network 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_fcoe_network/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_interconnect/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_interconnect 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_interconnect/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_san_manager/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_san_manager 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_san_manager/files/oneview_config.json" 4 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 5 | config_file: "{{lookup('file', config)}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | 12 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_pool 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_pool/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json')| from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination_facts/files/oneview_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ip": "", 3 | "credentials": { 4 | "userName": "", 5 | "password": "", 6 | "authLoginDomain": "" 7 | }, 8 | "api_version": 8200, 9 | "variant": "Synergy" 10 | } 11 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_proxy_configuration 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_proxy_configuration/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_storage_system/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_system 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_system/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_device_snmp_v3_users 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_device_snmp_v3_users/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_enclosure_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_enclosure_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interface_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_network_interface_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_network_interface_facts/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') |from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_ethernet_network 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_ethernet_network/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_logical_interconnect_group_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_logical_interconnect_group_facts/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_hypervisor_manager 3 | 4 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_hypervisor_manager/files/oneview_config.json" 5 | contents: "{{lookup('file','../config/config.json')|from_json}}" 6 | config_file: "{{lookup('file', config)}}" 7 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_pool_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_pool_facts/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json') | from_json}}" 5 | config_file: "{{lookup('file', config)}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_certificates_server 3 | 4 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_certificates_server/files/oneview_config.json" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | config_file: "{{lookup('file', config)}}" 7 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_drive_enclosure_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_drive_enclosure_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_logical_interconnect 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_logical_interconnect/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_profile_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_profile_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{ lookup('file','../config/config.json')| from_json }}" 6 | -------------------------------------------------------------------------------- /playbooks/README.md: -------------------------------------------------------------------------------- 1 | # Managing FC Network modules 2 | 3 | This example describes how to use Ansible to manage FC Network resources 4 | 5 | ## Create a simple Ansible playbook 6 | 7 | **Step 1** 8 | Create a playbook called `oneview_fc_network.yaml`. 9 | 10 | **Step 2** 11 | Run the playbook. 12 | 13 | `ansible-playbook oneview_fc_network.yaml` 14 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_interconnect_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_interconnect_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_logical_jbod_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_logical_jbod_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_time_and_locale_configuration 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_time_and_locale_configuration/files/oneview_config.json" 4 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_logical_interconnect 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_logical_interconnect/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_device_snmp_v1_trap_destination 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_device_snmp_v1_trap_destination/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_device_snmp_v3_trap_destination 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_device_snmp_v3_trap_destination/files/oneview_config.json" 4 | contents: "{{lookup('file','../config/config.json')| from_json}}" 5 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_logical_interconnect_group 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_logical_interconnect_group/files/oneview_config.json" 4 | config_file: "{{lookup('file',config)}}" 5 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_type_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_interconnect_type_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_interconnect_type_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_volume_template_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_volume_template_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{ lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_logical_interconnect_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_logical_interconnect_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_logical_interconnect_group 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_logical_interconnect_group/files/oneview_config.json" 4 | config_file: "{{lookup('file',config)}}" 5 | contents: "{{lookup('file', '../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_server_profile_template_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_server_profile_template_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{ lookup('file','../config/config.json') | from_json }}" 6 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_storage_volume_attachment_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_storage_volume_attachment_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_attachment_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_logical_jbod_attachment_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_logical_jbod_attachment_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group_facts/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_sas_logical_interconnect_group_facts 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_sas_logical_interconnect_group_facts/files/oneview_config.json" 4 | config_file: "{{lookup('file', config)}}" 5 | contents: "{{lookup('file','../config/config.json') | from_json}}" 6 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | require_ci_to_pass: true 3 | max_report_age: false 4 | 5 | coverage: 6 | status: 7 | project: 8 | default: 9 | threshold: 1 10 | target: 98% # overall project/ repo coverage 11 | # Disable patch since it is noisy and not required 12 | patch: 13 | default: 14 | enabled: false 15 | if_not_found: success 16 | 17 | comment: false 18 | -------------------------------------------------------------------------------- /roles/oneview_user/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_user 4 | author: Shanmugam M 5 | description: Ansible role to manage OneView User resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_label/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_label 4 | author: Asis Bagga 5 | description: Ansible role to manage OneView Label resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_scope/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_scope 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Scope resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_task/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_task 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView task resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_dynamic_role/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_dynamic_role 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage multiple resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_label_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_label_facts 4 | author: Asis Bagga 5 | description: Ansible role to manage OneView Label Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_user_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_user_facts 4 | author: Shanmugam M 5 | description: Ansible role to manage OneView User Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_enclosure/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_enclosure 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Enclosure resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_id_pools/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_id_pools 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView ID pools resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_san_manager/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_san_manager 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView San Manager resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_interconnect 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Interconnects. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_drive_enclosure 4 | author: Alisha K 5 | description: Ansible role to manage OneView Drive Enclosure resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_network_set/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_network_set 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Network Set resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_san_manager_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_san_manager 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView San Manager resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_scope_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_scope_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Scope Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_profile/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_profile 4 | author: Asis Bagga 5 | description: Ansible role to manage OneView Server Profile resource. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_task_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_task_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Task Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_uplink_set 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Uplink Set resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_volume/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_volume 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage Volume resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/dependencies_list/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: dependencies 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to install dependencies required to run a role. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_fcoe_network 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView FCoE Network resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_id_pools_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView ID pools resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_logical_jbod 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Logical JBOD resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_version_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_version_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Version Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_ssh_access 4 | author: Shanmugam M 5 | description: Ansible role to manage OneView Appliance SSH Access. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_enclosure_group 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Enclosure Group resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_firmware_bundle/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_firmware_bundle 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Firmware Bundle resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_firmware_driver 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Firmware Driver resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_id_pools_ipv4_ranges 4 | author: Asis Bagga 5 | description: Ansible role to manage OneView ID pool IPv4 resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_interconnect/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_interconnect 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Interconnect resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_repositories/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_repositories 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Repositories resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_pool 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage Pool resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_system/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_system 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_certificate_server 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Certificate Server resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_enclosure_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Enclosure Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_ethernet_network 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Ethernet Network resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_fc_network/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_fc_network 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Fibre Channel Network resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_logical_enclosure 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Logical Enclosure resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_interconnect_facts 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Interconnect resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_hardware 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Server Hardware resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_uplink_set_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Uplink Set Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/dependencies_list/README.md: -------------------------------------------------------------------------------- 1 | ## dependencies_list 2 | Manage dependencies to run resources. 3 | 4 | #### Synopsis 5 | Provides an interface to manage dependencies to run resources. 6 | 7 | #### Requirements (on the host that executes the module) 8 | * hpeOneView >= 5.4.0 9 | 10 | ## Example Playbook 11 | 12 | ```yaml 13 | - hosts: all 14 | collections: 15 | - hpe.oneview 16 | roles: 17 | - hpe.oneview.dependencies_list 18 | ``` 19 | 20 | ## License 21 | 22 | Apache 23 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_ssh_access_facts 4 | author: Shanmugam M 5 | description: Ansible role to manage OneView Appliance SSH Access. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_connection_template/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_connection_template 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Connection Template resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_drive_enclosure_facts 4 | author: Alisha K 5 | description: Ansible role to manage OneView Drive Enclosure Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_fc_network_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_fc_network 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Fibre Channel Network resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_id_pools_ipv4_subnet 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView ID pool IPv4 resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_network_set_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_network_set_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Network Set Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_repositories_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_repositories_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Repositories resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_profile_facts 4 | author: Asis Bagga 5 | description: Ansible role to manage OneView Server Profile Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_pool_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage Pool resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_volume_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_system_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage System resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_fcoe_network_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView FCoE Network Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_firmware_driver_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Firmware Driver Facts resource. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_oneview_hypervisor_manager 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Hypervisor Manager resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_id_pools_ipv4_range_facts 4 | author: Asis Bagga 5 | description: Ansible role to gather OneView ID pool IPv4 resources facts. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_interconnect_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Interconnect Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_logical_jbod_facts 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Logical JBOD Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_system_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_system_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage System resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /.ansible-lint: -------------------------------------------------------------------------------- 1 | # .ansible-lint 2 | exclude_paths: 3 | - .github/ 4 | # parseable: true 5 | # quiet: true 6 | # verbosity: 1 7 | 8 | use_default_rules: true 9 | 10 | # This makes linter to fully ignore rules/tags listed below 11 | skip_list: 12 | - meta-no-info 13 | - meta-no-tags 14 | - empty-string-compare 15 | - var-spacing 16 | - unnamed-task 17 | - risky-file-permissions 18 | - role-name 19 | - var-naming 20 | - schema 21 | - name 22 | - ignore-errors 23 | - literal-compare 24 | - fqcn 25 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_enclosure_group_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Enclosure Group Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_hardware 4 | author: Alisha Kalladassery (@alisha-k-kalladassery) 5 | description: Ansible role to manage OneView Rack Manager resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_type_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_interconnect_type_facts 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Interconnect Type resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_logical_interconnect 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Logical Interconnect resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_hardware_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Server Hardware Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_hardware_type 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Server Hardware Type resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_profile_template 4 | author: Asis Bagga 5 | description: Ansible role to manage OneView Server Profile Template resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_certificate_server_facts 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Certificate Server Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_ethernet_network_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Ethernet Network Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_hypervisor_manager_facts 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Hypervisor Manager Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_type_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_interconnect_type_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView InterconnectType resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_logical_enclosure_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Logical Enclosure Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_logical_interconnect 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Logical Interconnect resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_connection_template_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_connection_template_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Connection Template Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_hypervisor_cluster_profile 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Hypervisor Cluster Profile resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_id_pools_ipv4_subnet_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to gather OneView ID pool IPv4 resources facts. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_logical_interconnect_facts 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Logical Interconnect resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_volume_template 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage Volume Template resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: appliance_device_snmp_v3_users 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Appliance Device SNMP v3 Users resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interfaces/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_network_interfaces 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Appliance Network Interfaces. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_proxy_configuration 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Appliance Proxy Configuration. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_logical_interconnect_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Logical Interconnect resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_logical_interconnect_group 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Logical Interconnect Group resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_rack_manager_facts 4 | author: Alisha Kalladassery(@alisha-k-kalladassery) 5 | description: Ansible role to manage OneView Rack Manager Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_hardware_type_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Server Hardware Type Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_template_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_server_profile_template_facts 4 | author: Asis Bagga 5 | description: Ansible role to manage OneView Server Profile Template Facts Resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interface_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_network_interface_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Appliance Network Interface. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_cluster_profile_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: hypervisor_cluster_profile_facts 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Hypervisor Cluster Profile Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_volume_attachment 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage Volume Attachment resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod_attachment_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_logical_jbod_attachment_facts 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Logical JBOD Attachment Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_attachment_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_volume_template_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage Volume Template resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_storage_volume_template_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_storage_volume_template_facts 4 | author: Chebrolu Bala Sai Harika 5 | description: Ansible role to manage OneView Storage Volume Template resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_users_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: appliance_device_snmp_v3_users_facts 4 | author: Nabhajit Ray 5 | description: Ansible role to manage OneView Appliance Device SNMP v3 Users Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_proxy_configuration_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_proxy_configuration_facts 4 | author: Yuvarani Chidambaram 5 | description: Ansible role to manage OneView Appliance Proxy Configuration. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect_group_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_logical_interconnect_group_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Logical Interconnect Group Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Description 2 | [Describe what this change achieves] 3 | 4 | ### Issues Resolved 5 | [List any issues this PR will resolve. e.g., Fixes #01] 6 | 7 | ### Check List 8 | - [ ] New functionality includes sanity testing. 9 | - [ ] All sanity tests pass. (`$ ansible-test sanity`). 10 | - [ ] All unit tests pass. 11 | - [ ] New functionality has been documented in the README if applicable. 12 | - [ ] New functionality has been thoroughly documented in the examples (please include helpful comments). 13 | -------------------------------------------------------------------------------- /roles/oneview_appliance_configuration_timeconfig_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_configuration_timeconfig_facts 4 | author: Shanmugam M 5 | description: Ansible role to manage OneView Appliance Configuration Timeconfig. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_time_and_locale_configuration 4 | author: Shanmugam M 5 | description: Ansible role to manage OneView Appliance Time and Locale Configuration. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_logical_interconnect_group_facts 4 | author: Alisha K 5 | description: Ansible role to manage OneView SAS Logical Interconnect Group Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect_group/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_sas_logical_interconnect_group 4 | author: Alisha K(@alisha-k-kalladassery) 5 | description: Ansible role to manage OneView SAS Logical Interconnect Group resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 2.7.9 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_device_snmp_v1_trap_destination 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Appliance SNMPv1 Trap Destination resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_time_and_locale_configuration_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_time_and_locale_configuration_facts 4 | author: Shanmugam M 5 | description: Ansible role to manage OneView Appliance Time and Locale Configuration. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_device_snmp_v3_trap_destination 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Appliance Device SNMPv3 Trap Destination resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_network_interfaces/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for oneview_appliance_network_interfaces 3 | config: "~/.ansible/collections/ansible_collections/hpe/oneview/roles/oneview_appliance_network_interfaces/files/oneview_config.json" 4 | mac_address: "" 5 | hostname: "ci-00505698f13e.com" 6 | app1_ipv4_address: "" 7 | app2_ipv4_address: "" 8 | ipv4_address: "" 9 | ipv4_subnet: "" 10 | gateway: "" 11 | dnsServer1: "" 12 | dnsServer2: "" 13 | dnsServer3: "" 14 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v3_trap_destination_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_device_snmp_v3_trap_destination 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Appliance Device SNMPv3 Trap Destination Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/oneview_appliance_device_snmp_v1_trap_destination_facts/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | role_name: oneview_appliance_device_snmp_v1_trap_destination_facts 4 | author: Venkatesh Ravula 5 | description: Ansible role to manage OneView Appliance Device Snmpv1 Trap Destination Facts resources. 6 | company: Hewlett Packard Enterprise 7 | license: Apache 8 | min_ansible_version: 2.9 9 | min_python_version: 3.4.2 10 | platforms: [] 11 | galaxy_tags: 12 | - ansible 13 | - hpe-oneview 14 | - ansible-modules 15 | - sdk 16 | dependencies: [] 17 | -------------------------------------------------------------------------------- /roles/dependencies_list/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | ###################################################################################### 3 | # Install specified dependencies specified in requirements file. 4 | # This file will be called before triggering any endpoint for a resource. 5 | # If you don't want to run this file everytime, you can remove this role name under dependencies list specified in meta folder. 6 | ###################################################################################### 7 | - name: Install dependencies 8 | ansible.builtin.pip: 9 | requirements: "{{ playbook_dir }}/../requirements.txt" 10 | -------------------------------------------------------------------------------- /roles/dependencies_list/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /roles/oneview_label/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_scope/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_task/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_user/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_drive_enclosure/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2023) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_enclosure/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_fc_network/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_id_pools/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2022) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_task_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_user_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_volume/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_appliance_ssh_access/LICENCE: -------------------------------------------------------------------------------- 1 | Copyright (2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_dynamic_role/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_enclosure_group/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_firmware_bundle/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_firmware_driver/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_interconnect/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_label_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_network_set/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_rack_manager_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2022) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_repositories/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_san_manager/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2022) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2023) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_jbod/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2023) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_scope_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_server_profile/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_storage_system/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_version_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_volume_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_certificates_server/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_connection_template/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_ethernet_network/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_fc_network_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_fcoe_network_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_hypervisor_manager/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_range/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_id_pools_ipv4_subnet/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_interconnect_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_logical_enclosure/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_logical_interconnect/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_network_set_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_repositories_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2021) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_san_manager_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2022) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_sas_interconnect_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2023) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_sas_logical_interconnect/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2023) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_server_hardware_type/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_server_profile_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_storage_pool_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_storage_system_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /roles/oneview_uplink_set_facts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (2016-2020) Hewlett Packard Enterprise Development LP 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | You may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | --------------------------------------------------------------------------------