├── .coveragerc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nojekyll ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── deploy.sh ├── deploy_key.enc ├── docs └── source │ ├── conf.py │ └── index.rst ├── endpoints-support.md ├── examples ├── README.md ├── __init__.py ├── alert_util.py ├── alerts.py ├── appliance_device_read_community.py ├── appliance_device_snmp_v1_trap_destinations.py ├── appliance_device_snmp_v3_trap_destinations.py ├── appliance_device_snmp_v3_users.py ├── appliance_node_information.py ├── appliance_time_and_locale_configuration.py ├── backups.py ├── certificate_authority.py ├── certificate_rabbitmq.py ├── config-rename.json ├── config_loader.py ├── connection_templates.py ├── connections.py ├── datacenters.py ├── drive_enclosures.py ├── enclosure_groups.py ├── enclosures.py ├── endpoints.py ├── ethernet_networks.py ├── events.py ├── fabrics.py ├── fc_networks.py ├── fcoe_networks.py ├── firmware_bundles.py ├── firmware_drivers.py ├── id_pools.py ├── id_pools_ipv4_ranges.py ├── id_pools_ipv4_subnets.py ├── id_pools_vmac_ranges.py ├── id_pools_vsn_ranges.py ├── id_pools_vwwn_ranges.py ├── image_streamer │ ├── __init__.py │ ├── artifact_bundles.py │ ├── build_plans.py │ ├── deployment_groups.py │ ├── deployment_plans.py │ ├── golden_images.py │ ├── os_volumes.py │ └── plan_scripts.py ├── index_resources.py ├── interconnect_link_topologies.py ├── interconnect_types.py ├── interconnects.py ├── internal_link_sets.py ├── labels.py ├── licenses.py ├── logger.py ├── logical_downlinks.py ├── logical_enclosures.py ├── logical_interconnect_groups.py ├── logical_interconnects.py ├── logical_switch_groups.py ├── logical_switches.py ├── login_details.py ├── managed_sans.py ├── metric_streaming.py ├── migratable_vc_domains.py ├── network_sets.py ├── os_deployment_plans.py ├── os_deployment_servers.py ├── power_devices.py ├── racks.py ├── restores.py ├── roles.py ├── san_managers.py ├── sas_interconnect_types.py ├── sas_interconnects.py ├── sas_logical_interconnect_groups.py ├── sas_logical_interconnects.py ├── sas_logical_jbod_attachments.py ├── sas_logical_jbods.py ├── scmb │ ├── README │ ├── ov_to_sm.py │ └── scmb.py ├── scopes.py ├── server_hardware.py ├── server_hardware_types.py ├── server_profile_os_deployment.py ├── server_profile_templates.py ├── server_profiles.py ├── storage_pools.py ├── storage_pools_store_serv.py ├── storage_systems.py ├── storage_systems_API300.py ├── storage_volume_attachments.py ├── storage_volume_templates.py ├── storage_volume_templates_store_serv.py ├── switch_types.py ├── switches.py ├── tasks.py ├── unmanaged_devices.py ├── uplink_sets.py ├── user.py ├── versions.py ├── volumes.py └── volumes_store_serv.py ├── hpOneView ├── __init__.py ├── connection.py ├── exceptions.py ├── image_streamer │ ├── __init__.py │ ├── image_streamer_client.py │ └── resources │ │ ├── __init__.py │ │ ├── artifact_bundles.py │ │ ├── build_plans.py │ │ ├── deployment_groups.py │ │ ├── deployment_plans.py │ │ ├── golden_images.py │ │ ├── os_volumes.py │ │ └── plan_scripts.py ├── oneview_client.py └── resources │ ├── __init__.py │ ├── activity │ ├── __init__.py │ ├── alerts.py │ ├── events.py │ └── tasks.py │ ├── data_services │ ├── __init__.py │ └── metric_streaming.py │ ├── facilities │ ├── __init__.py │ ├── datacenters.py │ ├── power_devices.py │ └── racks.py │ ├── fc_sans │ ├── __init__.py │ ├── endpoints.py │ ├── managed_sans.py │ └── san_managers.py │ ├── networking │ ├── __init__.py │ ├── connection_templates.py │ ├── ethernet_networks.py │ ├── fabrics.py │ ├── fc_networks.py │ ├── fcoe_networks.py │ ├── interconnect_link_topologies.py │ ├── interconnect_types.py │ ├── interconnects.py │ ├── internal_link_sets.py │ ├── logical_downlinks.py │ ├── logical_interconnect_groups.py │ ├── logical_interconnects.py │ ├── logical_switch_groups.py │ ├── logical_switches.py │ ├── network_sets.py │ ├── sas_interconnect_types.py │ ├── sas_interconnects.py │ ├── sas_logical_interconnect_groups.py │ ├── sas_logical_interconnects.py │ ├── switch_types.py │ ├── switches.py │ └── uplink_sets.py │ ├── resource.py │ ├── search │ ├── __init__.py │ ├── index_resources.py │ └── labels.py │ ├── security │ ├── __init__.py │ ├── certificate_authority.py │ ├── certificate_rabbitmq.py │ ├── login_details.py │ ├── roles.py │ └── users.py │ ├── servers │ ├── __init__.py │ ├── connections.py │ ├── enclosure_groups.py │ ├── enclosures.py │ ├── id_pools.py │ ├── id_pools_ipv4_ranges.py │ ├── id_pools_ipv4_subnets.py │ ├── id_pools_ranges.py │ ├── logical_enclosures.py │ ├── migratable_vc_domains.py │ ├── server_hardware.py │ ├── server_hardware_types.py │ ├── server_profile_templates.py │ └── server_profiles.py │ ├── settings │ ├── __init__.py │ ├── appliance_device_read_community.py │ ├── appliance_device_snmp_v1_trap_destinations.py │ ├── appliance_device_snmp_v3_trap_destinations.py │ ├── appliance_device_snmp_v3_users.py │ ├── appliance_node_information.py │ ├── appliance_time_and_locale_configuration.py │ ├── backups.py │ ├── firmware_bundles.py │ ├── firmware_drivers.py │ ├── licenses.py │ ├── restores.py │ ├── scopes.py │ └── versions.py │ ├── storage │ ├── __init__.py │ ├── drive_enclosures.py │ ├── sas_logical_jbod_attachments.py │ ├── sas_logical_jbods.py │ ├── storage_pools.py │ ├── storage_systems.py │ ├── storage_volume_attachments.py │ ├── storage_volume_templates.py │ └── volumes.py │ ├── task_monitor.py │ └── uncategorized │ ├── __init__.py │ ├── os_deployment_plans.py │ ├── os_deployment_servers.py │ └── unmanaged_devices.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test_requirements.txt ├── tests ├── __init__.py ├── test_utils.py └── unit │ ├── __init__.py │ ├── image_streamer │ ├── __init__.py │ ├── resources │ │ ├── __init__.py │ │ ├── test_artifact_bundles.py │ │ ├── test_build_plans.py │ │ ├── test_deployment_groups.py │ │ ├── test_deployment_plans.py │ │ ├── test_golden_images.py │ │ ├── test_os_volumes.py │ │ └── test_plan_scripts.py │ └── test_image_streamer_client.py │ ├── resources │ ├── __init__.py │ ├── activity │ │ ├── __init__.py │ │ ├── test_alerts.py │ │ ├── test_events.py │ │ └── test_tasks.py │ ├── data_services │ │ ├── __init__.py │ │ └── test_metric_streaming.py │ ├── facilities │ │ ├── __init__.py │ │ ├── test_datacenters.py │ │ ├── test_power_devices.py │ │ └── test_racks.py │ ├── fc_sans │ │ ├── __init__.py │ │ ├── test_endpoints.py │ │ ├── test_managed_sans.py │ │ └── test_san_managers.py │ ├── networking │ │ ├── __init__.py │ │ ├── test_connection_templates.py │ │ ├── test_ethernet_networks.py │ │ ├── test_fabrics.py │ │ ├── test_fc_networks.py │ │ ├── test_fcoe_networks.py │ │ ├── test_interconnect_link_topologies.py │ │ ├── test_interconnect_types.py │ │ ├── test_interconnects.py │ │ ├── test_internal_link_sets.py │ │ ├── test_logical_downlinks.py │ │ ├── test_logical_interconnect_groups.py │ │ ├── test_logical_interconnects.py │ │ ├── test_logical_switch_groups.py │ │ ├── test_logical_switches.py │ │ ├── test_network_sets.py │ │ ├── test_sas_interconnect_types.py │ │ ├── test_sas_interconnects.py │ │ ├── test_sas_logical_interconnect_groups.py │ │ ├── test_sas_logical_interconnects.py │ │ ├── test_switch_types.py │ │ ├── test_switches.py │ │ └── test_uplink_sets.py │ ├── search │ │ ├── __init__.py │ │ ├── test_index_resources.py │ │ └── test_labels.py │ ├── security │ │ ├── __init__.py │ │ ├── test_certificate_authority.py │ │ ├── test_certificate_rabbitmq.py │ │ ├── test_login_details.py │ │ ├── test_roles.py │ │ └── test_users.py │ ├── servers │ │ ├── __init__.py │ │ ├── test_connections.py │ │ ├── test_enclosure_groups.py │ │ ├── test_enclosures.py │ │ ├── test_id_pools.py │ │ ├── test_id_pools_ipv4_ranges.py │ │ ├── test_id_pools_ipv4_subnets.py │ │ ├── test_id_pools_ranges.py │ │ ├── test_logical_enclosures.py │ │ ├── test_migratable_vc_domains.py │ │ ├── test_server_hardware.py │ │ ├── test_server_hardware_types.py │ │ ├── test_server_profile_templates.py │ │ └── test_server_profiles.py │ ├── settings │ │ ├── __init__.py │ │ ├── test_appliance_device_read_community.py │ │ ├── test_appliance_device_snmp_v1_trap_destinations.py │ │ ├── test_appliance_device_snmp_v3_trap_destinations.py │ │ ├── test_appliance_device_snmp_v3_users.py │ │ ├── test_appliance_node_information.py │ │ ├── test_appliance_time_and_locale_configuration.py │ │ ├── test_backups.py │ │ ├── test_firmware_bundles.py │ │ ├── test_firmware_drivers.py │ │ ├── test_licenses.py │ │ ├── test_restores.py │ │ ├── test_scopes.py │ │ └── test_versions.py │ ├── storage │ │ ├── __init__.py │ │ ├── test_drive_enclosures.py │ │ ├── test_sas_logical_jbod_attachments.py │ │ ├── test_sas_logical_jbods.py │ │ ├── test_storage_pools.py │ │ ├── test_storage_systems.py │ │ ├── test_storage_volume_attachments.py │ │ ├── test_storage_volume_templates.py │ │ └── test_volumes.py │ ├── test_resource.py │ ├── test_task_monitor.py │ └── uncategorized │ │ ├── __init__.py │ │ ├── test_os_deployment_plans.py │ │ ├── test_os_deployment_servers.py │ │ └── test_unmanaged_devices.py │ ├── test_connection.py │ ├── test_exceptions.py │ └── test_oneview_client.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = *test* 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /endpoints-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/endpoints-support.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/alert_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/alert_util.py -------------------------------------------------------------------------------- /examples/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/alerts.py -------------------------------------------------------------------------------- /examples/appliance_device_read_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/appliance_device_read_community.py -------------------------------------------------------------------------------- /examples/appliance_device_snmp_v1_trap_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/appliance_device_snmp_v1_trap_destinations.py -------------------------------------------------------------------------------- /examples/appliance_device_snmp_v3_trap_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/appliance_device_snmp_v3_trap_destinations.py -------------------------------------------------------------------------------- /examples/appliance_device_snmp_v3_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/appliance_device_snmp_v3_users.py -------------------------------------------------------------------------------- /examples/appliance_node_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/appliance_node_information.py -------------------------------------------------------------------------------- /examples/appliance_time_and_locale_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/appliance_time_and_locale_configuration.py -------------------------------------------------------------------------------- /examples/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/backups.py -------------------------------------------------------------------------------- /examples/certificate_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/certificate_authority.py -------------------------------------------------------------------------------- /examples/certificate_rabbitmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/certificate_rabbitmq.py -------------------------------------------------------------------------------- /examples/config-rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/config-rename.json -------------------------------------------------------------------------------- /examples/config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/config_loader.py -------------------------------------------------------------------------------- /examples/connection_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/connection_templates.py -------------------------------------------------------------------------------- /examples/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/connections.py -------------------------------------------------------------------------------- /examples/datacenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/datacenters.py -------------------------------------------------------------------------------- /examples/drive_enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/drive_enclosures.py -------------------------------------------------------------------------------- /examples/enclosure_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/enclosure_groups.py -------------------------------------------------------------------------------- /examples/enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/enclosures.py -------------------------------------------------------------------------------- /examples/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/endpoints.py -------------------------------------------------------------------------------- /examples/ethernet_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/ethernet_networks.py -------------------------------------------------------------------------------- /examples/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/events.py -------------------------------------------------------------------------------- /examples/fabrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/fabrics.py -------------------------------------------------------------------------------- /examples/fc_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/fc_networks.py -------------------------------------------------------------------------------- /examples/fcoe_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/fcoe_networks.py -------------------------------------------------------------------------------- /examples/firmware_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/firmware_bundles.py -------------------------------------------------------------------------------- /examples/firmware_drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/firmware_drivers.py -------------------------------------------------------------------------------- /examples/id_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/id_pools.py -------------------------------------------------------------------------------- /examples/id_pools_ipv4_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/id_pools_ipv4_ranges.py -------------------------------------------------------------------------------- /examples/id_pools_ipv4_subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/id_pools_ipv4_subnets.py -------------------------------------------------------------------------------- /examples/id_pools_vmac_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/id_pools_vmac_ranges.py -------------------------------------------------------------------------------- /examples/id_pools_vsn_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/id_pools_vsn_ranges.py -------------------------------------------------------------------------------- /examples/id_pools_vwwn_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/id_pools_vwwn_ranges.py -------------------------------------------------------------------------------- /examples/image_streamer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/image_streamer/artifact_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/image_streamer/artifact_bundles.py -------------------------------------------------------------------------------- /examples/image_streamer/build_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/image_streamer/build_plans.py -------------------------------------------------------------------------------- /examples/image_streamer/deployment_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/image_streamer/deployment_groups.py -------------------------------------------------------------------------------- /examples/image_streamer/deployment_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/image_streamer/deployment_plans.py -------------------------------------------------------------------------------- /examples/image_streamer/golden_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/image_streamer/golden_images.py -------------------------------------------------------------------------------- /examples/image_streamer/os_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/image_streamer/os_volumes.py -------------------------------------------------------------------------------- /examples/image_streamer/plan_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/image_streamer/plan_scripts.py -------------------------------------------------------------------------------- /examples/index_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/index_resources.py -------------------------------------------------------------------------------- /examples/interconnect_link_topologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/interconnect_link_topologies.py -------------------------------------------------------------------------------- /examples/interconnect_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/interconnect_types.py -------------------------------------------------------------------------------- /examples/interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/interconnects.py -------------------------------------------------------------------------------- /examples/internal_link_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/internal_link_sets.py -------------------------------------------------------------------------------- /examples/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/labels.py -------------------------------------------------------------------------------- /examples/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/licenses.py -------------------------------------------------------------------------------- /examples/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/logger.py -------------------------------------------------------------------------------- /examples/logical_downlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/logical_downlinks.py -------------------------------------------------------------------------------- /examples/logical_enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/logical_enclosures.py -------------------------------------------------------------------------------- /examples/logical_interconnect_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/logical_interconnect_groups.py -------------------------------------------------------------------------------- /examples/logical_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/logical_interconnects.py -------------------------------------------------------------------------------- /examples/logical_switch_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/logical_switch_groups.py -------------------------------------------------------------------------------- /examples/logical_switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/logical_switches.py -------------------------------------------------------------------------------- /examples/login_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/login_details.py -------------------------------------------------------------------------------- /examples/managed_sans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/managed_sans.py -------------------------------------------------------------------------------- /examples/metric_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/metric_streaming.py -------------------------------------------------------------------------------- /examples/migratable_vc_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/migratable_vc_domains.py -------------------------------------------------------------------------------- /examples/network_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/network_sets.py -------------------------------------------------------------------------------- /examples/os_deployment_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/os_deployment_plans.py -------------------------------------------------------------------------------- /examples/os_deployment_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/os_deployment_servers.py -------------------------------------------------------------------------------- /examples/power_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/power_devices.py -------------------------------------------------------------------------------- /examples/racks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/racks.py -------------------------------------------------------------------------------- /examples/restores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/restores.py -------------------------------------------------------------------------------- /examples/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/roles.py -------------------------------------------------------------------------------- /examples/san_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/san_managers.py -------------------------------------------------------------------------------- /examples/sas_interconnect_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/sas_interconnect_types.py -------------------------------------------------------------------------------- /examples/sas_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/sas_interconnects.py -------------------------------------------------------------------------------- /examples/sas_logical_interconnect_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/sas_logical_interconnect_groups.py -------------------------------------------------------------------------------- /examples/sas_logical_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/sas_logical_interconnects.py -------------------------------------------------------------------------------- /examples/sas_logical_jbod_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/sas_logical_jbod_attachments.py -------------------------------------------------------------------------------- /examples/sas_logical_jbods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/sas_logical_jbods.py -------------------------------------------------------------------------------- /examples/scmb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/scmb/README -------------------------------------------------------------------------------- /examples/scmb/ov_to_sm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/scmb/ov_to_sm.py -------------------------------------------------------------------------------- /examples/scmb/scmb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/scmb/scmb.py -------------------------------------------------------------------------------- /examples/scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/scopes.py -------------------------------------------------------------------------------- /examples/server_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/server_hardware.py -------------------------------------------------------------------------------- /examples/server_hardware_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/server_hardware_types.py -------------------------------------------------------------------------------- /examples/server_profile_os_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/server_profile_os_deployment.py -------------------------------------------------------------------------------- /examples/server_profile_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/server_profile_templates.py -------------------------------------------------------------------------------- /examples/server_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/server_profiles.py -------------------------------------------------------------------------------- /examples/storage_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/storage_pools.py -------------------------------------------------------------------------------- /examples/storage_pools_store_serv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/storage_pools_store_serv.py -------------------------------------------------------------------------------- /examples/storage_systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/storage_systems.py -------------------------------------------------------------------------------- /examples/storage_systems_API300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/storage_systems_API300.py -------------------------------------------------------------------------------- /examples/storage_volume_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/storage_volume_attachments.py -------------------------------------------------------------------------------- /examples/storage_volume_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/storage_volume_templates.py -------------------------------------------------------------------------------- /examples/storage_volume_templates_store_serv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/storage_volume_templates_store_serv.py -------------------------------------------------------------------------------- /examples/switch_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/switch_types.py -------------------------------------------------------------------------------- /examples/switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/switches.py -------------------------------------------------------------------------------- /examples/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/tasks.py -------------------------------------------------------------------------------- /examples/unmanaged_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/unmanaged_devices.py -------------------------------------------------------------------------------- /examples/uplink_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/uplink_sets.py -------------------------------------------------------------------------------- /examples/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/user.py -------------------------------------------------------------------------------- /examples/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/versions.py -------------------------------------------------------------------------------- /examples/volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/volumes.py -------------------------------------------------------------------------------- /examples/volumes_store_serv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/examples/volumes_store_serv.py -------------------------------------------------------------------------------- /hpOneView/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/__init__.py -------------------------------------------------------------------------------- /hpOneView/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/connection.py -------------------------------------------------------------------------------- /hpOneView/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/exceptions.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/image_streamer/image_streamer_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/image_streamer_client.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/artifact_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/resources/artifact_bundles.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/build_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/resources/build_plans.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/deployment_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/resources/deployment_groups.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/deployment_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/resources/deployment_plans.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/golden_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/resources/golden_images.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/os_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/resources/os_volumes.py -------------------------------------------------------------------------------- /hpOneView/image_streamer/resources/plan_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/image_streamer/resources/plan_scripts.py -------------------------------------------------------------------------------- /hpOneView/oneview_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/oneview_client.py -------------------------------------------------------------------------------- /hpOneView/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/activity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/activity/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/activity/alerts.py -------------------------------------------------------------------------------- /hpOneView/resources/activity/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/activity/events.py -------------------------------------------------------------------------------- /hpOneView/resources/activity/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/activity/tasks.py -------------------------------------------------------------------------------- /hpOneView/resources/data_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/data_services/metric_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/data_services/metric_streaming.py -------------------------------------------------------------------------------- /hpOneView/resources/facilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/facilities/datacenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/facilities/datacenters.py -------------------------------------------------------------------------------- /hpOneView/resources/facilities/power_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/facilities/power_devices.py -------------------------------------------------------------------------------- /hpOneView/resources/facilities/racks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/facilities/racks.py -------------------------------------------------------------------------------- /hpOneView/resources/fc_sans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/fc_sans/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/fc_sans/endpoints.py -------------------------------------------------------------------------------- /hpOneView/resources/fc_sans/managed_sans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/fc_sans/managed_sans.py -------------------------------------------------------------------------------- /hpOneView/resources/fc_sans/san_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/fc_sans/san_managers.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/networking/connection_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/connection_templates.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/ethernet_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/ethernet_networks.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/fabrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/fabrics.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/fc_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/fc_networks.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/fcoe_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/fcoe_networks.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/interconnect_link_topologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/interconnect_link_topologies.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/interconnect_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/interconnect_types.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/interconnects.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/internal_link_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/internal_link_sets.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/logical_downlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/logical_downlinks.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/logical_interconnect_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/logical_interconnect_groups.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/logical_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/logical_interconnects.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/logical_switch_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/logical_switch_groups.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/logical_switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/logical_switches.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/network_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/network_sets.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/sas_interconnect_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/sas_interconnect_types.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/sas_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/sas_interconnects.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/sas_logical_interconnect_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/sas_logical_interconnect_groups.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/sas_logical_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/sas_logical_interconnects.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/switch_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/switch_types.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/switches.py -------------------------------------------------------------------------------- /hpOneView/resources/networking/uplink_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/networking/uplink_sets.py -------------------------------------------------------------------------------- /hpOneView/resources/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/resource.py -------------------------------------------------------------------------------- /hpOneView/resources/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/search/index_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/search/index_resources.py -------------------------------------------------------------------------------- /hpOneView/resources/search/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/search/labels.py -------------------------------------------------------------------------------- /hpOneView/resources/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/security/certificate_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/security/certificate_authority.py -------------------------------------------------------------------------------- /hpOneView/resources/security/certificate_rabbitmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/security/certificate_rabbitmq.py -------------------------------------------------------------------------------- /hpOneView/resources/security/login_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/security/login_details.py -------------------------------------------------------------------------------- /hpOneView/resources/security/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/security/roles.py -------------------------------------------------------------------------------- /hpOneView/resources/security/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/security/users.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/servers/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/connections.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/enclosure_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/enclosure_groups.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/enclosures.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/id_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/id_pools.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/id_pools_ipv4_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/id_pools_ipv4_ranges.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/id_pools_ipv4_subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/id_pools_ipv4_subnets.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/id_pools_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/id_pools_ranges.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/logical_enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/logical_enclosures.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/migratable_vc_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/migratable_vc_domains.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/server_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/server_hardware.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/server_hardware_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/server_hardware_types.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/server_profile_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/server_profile_templates.py -------------------------------------------------------------------------------- /hpOneView/resources/servers/server_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/servers/server_profiles.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/settings/appliance_device_read_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/appliance_device_read_community.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/appliance_device_snmp_v1_trap_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/appliance_device_snmp_v1_trap_destinations.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/appliance_device_snmp_v3_trap_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/appliance_device_snmp_v3_trap_destinations.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/appliance_device_snmp_v3_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/appliance_device_snmp_v3_users.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/appliance_node_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/appliance_node_information.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/appliance_time_and_locale_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/appliance_time_and_locale_configuration.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/backups.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/firmware_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/firmware_bundles.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/firmware_drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/firmware_drivers.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/licenses.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/restores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/restores.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/scopes.py -------------------------------------------------------------------------------- /hpOneView/resources/settings/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/settings/versions.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/storage/drive_enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/drive_enclosures.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/sas_logical_jbod_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/sas_logical_jbod_attachments.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/sas_logical_jbods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/sas_logical_jbods.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/storage_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/storage_pools.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/storage_systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/storage_systems.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/storage_volume_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/storage_volume_attachments.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/storage_volume_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/storage_volume_templates.py -------------------------------------------------------------------------------- /hpOneView/resources/storage/volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/storage/volumes.py -------------------------------------------------------------------------------- /hpOneView/resources/task_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/task_monitor.py -------------------------------------------------------------------------------- /hpOneView/resources/uncategorized/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hpOneView/resources/uncategorized/os_deployment_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/uncategorized/os_deployment_plans.py -------------------------------------------------------------------------------- /hpOneView/resources/uncategorized/os_deployment_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/uncategorized/os_deployment_servers.py -------------------------------------------------------------------------------- /hpOneView/resources/uncategorized/unmanaged_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/hpOneView/resources/uncategorized/unmanaged_devices.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | future >= 0.15.2 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file=README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- 1 | mock == 2.0.0 -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/image_streamer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/test_artifact_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/resources/test_artifact_bundles.py -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/test_build_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/resources/test_build_plans.py -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/test_deployment_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/resources/test_deployment_groups.py -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/test_deployment_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/resources/test_deployment_plans.py -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/test_golden_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/resources/test_golden_images.py -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/test_os_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/resources/test_os_volumes.py -------------------------------------------------------------------------------- /tests/unit/image_streamer/resources/test_plan_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/resources/test_plan_scripts.py -------------------------------------------------------------------------------- /tests/unit/image_streamer/test_image_streamer_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/image_streamer/test_image_streamer_client.py -------------------------------------------------------------------------------- /tests/unit/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/activity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/activity/test_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/activity/test_alerts.py -------------------------------------------------------------------------------- /tests/unit/resources/activity/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/activity/test_events.py -------------------------------------------------------------------------------- /tests/unit/resources/activity/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/activity/test_tasks.py -------------------------------------------------------------------------------- /tests/unit/resources/data_services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/data_services/test_metric_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/data_services/test_metric_streaming.py -------------------------------------------------------------------------------- /tests/unit/resources/facilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/facilities/test_datacenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/facilities/test_datacenters.py -------------------------------------------------------------------------------- /tests/unit/resources/facilities/test_power_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/facilities/test_power_devices.py -------------------------------------------------------------------------------- /tests/unit/resources/facilities/test_racks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/facilities/test_racks.py -------------------------------------------------------------------------------- /tests/unit/resources/fc_sans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/fc_sans/test_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/fc_sans/test_endpoints.py -------------------------------------------------------------------------------- /tests/unit/resources/fc_sans/test_managed_sans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/fc_sans/test_managed_sans.py -------------------------------------------------------------------------------- /tests/unit/resources/fc_sans/test_san_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/fc_sans/test_san_managers.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_connection_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_connection_templates.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_ethernet_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_ethernet_networks.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_fabrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_fabrics.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_fc_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_fc_networks.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_fcoe_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_fcoe_networks.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_interconnect_link_topologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_interconnect_link_topologies.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_interconnect_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_interconnect_types.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_interconnects.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_internal_link_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_internal_link_sets.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_logical_downlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_logical_downlinks.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_logical_interconnect_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_logical_interconnect_groups.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_logical_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_logical_interconnects.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_logical_switch_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_logical_switch_groups.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_logical_switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_logical_switches.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_network_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_network_sets.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_sas_interconnect_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_sas_interconnect_types.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_sas_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_sas_interconnects.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_sas_logical_interconnect_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_sas_logical_interconnect_groups.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_sas_logical_interconnects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_sas_logical_interconnects.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_switch_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_switch_types.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_switches.py -------------------------------------------------------------------------------- /tests/unit/resources/networking/test_uplink_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/networking/test_uplink_sets.py -------------------------------------------------------------------------------- /tests/unit/resources/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/search/test_index_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/search/test_index_resources.py -------------------------------------------------------------------------------- /tests/unit/resources/search/test_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/search/test_labels.py -------------------------------------------------------------------------------- /tests/unit/resources/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/security/test_certificate_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/security/test_certificate_authority.py -------------------------------------------------------------------------------- /tests/unit/resources/security/test_certificate_rabbitmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/security/test_certificate_rabbitmq.py -------------------------------------------------------------------------------- /tests/unit/resources/security/test_login_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/security/test_login_details.py -------------------------------------------------------------------------------- /tests/unit/resources/security/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/security/test_roles.py -------------------------------------------------------------------------------- /tests/unit/resources/security/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/security/test_users.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_connections.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_enclosure_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_enclosure_groups.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_enclosures.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_id_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_id_pools.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_id_pools_ipv4_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_id_pools_ipv4_ranges.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_id_pools_ipv4_subnets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_id_pools_ipv4_subnets.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_id_pools_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_id_pools_ranges.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_logical_enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_logical_enclosures.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_migratable_vc_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_migratable_vc_domains.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_server_hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_server_hardware.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_server_hardware_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_server_hardware_types.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_server_profile_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_server_profile_templates.py -------------------------------------------------------------------------------- /tests/unit/resources/servers/test_server_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/servers/test_server_profiles.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_appliance_device_read_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_appliance_device_read_community.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_appliance_device_snmp_v1_trap_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_appliance_device_snmp_v1_trap_destinations.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_appliance_device_snmp_v3_trap_destinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_appliance_device_snmp_v3_trap_destinations.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_appliance_device_snmp_v3_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_appliance_device_snmp_v3_users.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_appliance_node_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_appliance_node_information.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_appliance_time_and_locale_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_appliance_time_and_locale_configuration.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_backups.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_firmware_bundles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_firmware_bundles.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_firmware_drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_firmware_drivers.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_licenses.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_restores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_restores.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_scopes.py -------------------------------------------------------------------------------- /tests/unit/resources/settings/test_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/settings/test_versions.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_drive_enclosures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_drive_enclosures.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_sas_logical_jbod_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_sas_logical_jbod_attachments.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_sas_logical_jbods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_sas_logical_jbods.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_storage_pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_storage_pools.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_storage_systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_storage_systems.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_storage_volume_attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_storage_volume_attachments.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_storage_volume_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_storage_volume_templates.py -------------------------------------------------------------------------------- /tests/unit/resources/storage/test_volumes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/storage/test_volumes.py -------------------------------------------------------------------------------- /tests/unit/resources/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/test_resource.py -------------------------------------------------------------------------------- /tests/unit/resources/test_task_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/test_task_monitor.py -------------------------------------------------------------------------------- /tests/unit/resources/uncategorized/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/resources/uncategorized/test_os_deployment_plans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/uncategorized/test_os_deployment_plans.py -------------------------------------------------------------------------------- /tests/unit/resources/uncategorized/test_os_deployment_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/uncategorized/test_os_deployment_servers.py -------------------------------------------------------------------------------- /tests/unit/resources/uncategorized/test_unmanaged_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/resources/uncategorized/test_unmanaged_devices.py -------------------------------------------------------------------------------- /tests/unit/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/test_connection.py -------------------------------------------------------------------------------- /tests/unit/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/test_exceptions.py -------------------------------------------------------------------------------- /tests/unit/test_oneview_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tests/unit/test_oneview_client.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/python-hpOneView/HEAD/tox.ini --------------------------------------------------------------------------------