├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── documentation.yml │ ├── release.yml │ ├── test-snap-can-build.yml │ ├── test_pypi_release.yml │ └── tests.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .secrets.baseline ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── ISSUE_TEMPLATE ├── LICENSE ├── MANIFEST.in ├── README-internal.md ├── README-snapcraft.md ├── README.rst ├── RELEASE.md ├── SECURITY.md ├── SoftLayer ├── API.py ├── CLI │ ├── __init__.py │ ├── account │ │ ├── __init__.py │ │ ├── billing_items.py │ │ ├── cancel_item.py │ │ ├── event_detail.py │ │ ├── events.py │ │ ├── hook_create.py │ │ ├── hook_delete.py │ │ ├── hooks.py │ │ ├── invoice_detail.py │ │ ├── invoices.py │ │ ├── item_detail.py │ │ ├── licenses.py │ │ ├── orders.py │ │ └── summary.py │ ├── bandwidth │ │ ├── __init__.py │ │ ├── pools.py │ │ ├── pools_create.py │ │ ├── pools_delete.py │ │ ├── pools_detail.py │ │ ├── pools_edit.py │ │ └── summary.py │ ├── block │ │ ├── __init__.py │ │ ├── access │ │ │ ├── __init__.py │ │ │ ├── authorize.py │ │ │ ├── list.py │ │ │ ├── password.py │ │ │ └── revoke.py │ │ ├── cancel.py │ │ ├── convert.py │ │ ├── count.py │ │ ├── detail.py │ │ ├── duplicate.py │ │ ├── duplicate_convert_status.py │ │ ├── limit.py │ │ ├── list.py │ │ ├── lun.py │ │ ├── modify.py │ │ ├── object_list.py │ │ ├── object_storage_detail.py │ │ ├── object_storage_permission.py │ │ ├── options.py │ │ ├── order.py │ │ ├── refresh.py │ │ ├── replication │ │ │ ├── __init__.py │ │ │ ├── disaster_recovery_failover.py │ │ │ ├── failback.py │ │ │ ├── failover.py │ │ │ ├── locations.py │ │ │ ├── order.py │ │ │ └── partners.py │ │ ├── set_note.py │ │ ├── snapshot │ │ │ ├── __init__.py │ │ │ ├── cancel.py │ │ │ ├── create.py │ │ │ ├── delete.py │ │ │ ├── disable.py │ │ │ ├── enable.py │ │ │ ├── get_notify_status.py │ │ │ ├── list.py │ │ │ ├── order.py │ │ │ ├── restore.py │ │ │ ├── schedule_list.py │ │ │ └── set_notify_status.py │ │ └── subnets │ │ │ ├── __init__.py │ │ │ ├── assign.py │ │ │ ├── list.py │ │ │ └── remove.py │ ├── call_api.py │ ├── cdn │ │ ├── __init__.py │ │ └── cdn.py │ ├── columns.py │ ├── command.py │ ├── config │ │ ├── __init__.py │ │ ├── setup.py │ │ └── show.py │ ├── core.py │ ├── custom_types.py │ ├── dedicatedhost │ │ ├── __init__.py │ │ ├── cancel.py │ │ ├── cancel_guests.py │ │ ├── create.py │ │ ├── create_options.py │ │ ├── detail.py │ │ ├── list.py │ │ └── list_guests.py │ ├── dns │ │ ├── __init__.py │ │ ├── record_add.py │ │ ├── record_edit.py │ │ ├── record_list.py │ │ ├── record_remove.py │ │ ├── zone_create.py │ │ ├── zone_delete.py │ │ ├── zone_import.py │ │ ├── zone_list.py │ │ └── zone_print.py │ ├── email │ │ ├── __init__.py │ │ ├── detail.py │ │ ├── edit.py │ │ └── list.py │ ├── environment.py │ ├── event_log │ │ ├── __init__.py │ │ ├── get.py │ │ └── types.py │ ├── exceptions.py │ ├── file │ │ ├── __init__.py │ │ ├── access │ │ │ ├── __init__.py │ │ │ ├── authorize.py │ │ │ ├── list.py │ │ │ └── revoke.py │ │ ├── cancel.py │ │ ├── convert.py │ │ ├── count.py │ │ ├── detail.py │ │ ├── duplicate.py │ │ ├── duplicate_convert_status.py │ │ ├── limit.py │ │ ├── list.py │ │ ├── modify.py │ │ ├── options.py │ │ ├── order.py │ │ ├── refresh.py │ │ ├── replication │ │ │ ├── __init__.py │ │ │ ├── disaster_recovery_failover.py │ │ │ ├── failback.py │ │ │ ├── failover.py │ │ │ ├── locations.py │ │ │ ├── order.py │ │ │ └── partners.py │ │ ├── set_note.py │ │ └── snapshot │ │ │ ├── __init__.py │ │ │ ├── cancel.py │ │ │ ├── create.py │ │ │ ├── delete.py │ │ │ ├── disable.py │ │ │ ├── enable.py │ │ │ ├── get_notify_status.py │ │ │ ├── list.py │ │ │ ├── order.py │ │ │ ├── restore.py │ │ │ ├── schedule_list.py │ │ │ └── set_notify_status.py │ ├── firewall │ │ ├── __init__.py │ │ ├── add.py │ │ ├── cancel.py │ │ ├── detail.py │ │ ├── edit.py │ │ ├── list.py │ │ └── monitoring.py │ ├── formatting.py │ ├── globalip │ │ ├── __init__.py │ │ ├── assign.py │ │ ├── cancel.py │ │ ├── create.py │ │ ├── list.py │ │ └── unassign.py │ ├── hardware │ │ ├── __init__.py │ │ ├── authorize_storage.py │ │ ├── bandwidth.py │ │ ├── billing.py │ │ ├── cancel.py │ │ ├── cancel_reasons.py │ │ ├── create.py │ │ ├── create_credential.py │ │ ├── create_options.py │ │ ├── credentials.py │ │ ├── detail.py │ │ ├── dns.py │ │ ├── edit.py │ │ ├── list.py │ │ ├── monitoring.py │ │ ├── notification_add.py │ │ ├── notification_delete.py │ │ ├── notifications.py │ │ ├── power.py │ │ ├── ready.py │ │ ├── reflash_firmware.py │ │ ├── reload.py │ │ ├── sensor.py │ │ ├── storage.py │ │ ├── toggle_ipmi.py │ │ ├── update_firmware.py │ │ ├── upgrade.py │ │ ├── vlan_add.py │ │ ├── vlan_remove.py │ │ └── vlan_trunkable.py │ ├── helpers.py │ ├── image │ │ ├── __init__.py │ │ ├── datacenter.py │ │ ├── delete.py │ │ ├── detail.py │ │ ├── edit.py │ │ ├── export.py │ │ ├── import.py │ │ ├── list.py │ │ ├── share.py │ │ └── share_deny.py │ ├── licenses │ │ ├── __init__.py │ │ ├── cancel.py │ │ ├── create.py │ │ └── create_options.py │ ├── loadbal │ │ ├── __init__.py │ │ ├── detail.py │ │ ├── health.py │ │ ├── layer7_policy_list.py │ │ ├── list.py │ │ ├── members.py │ │ ├── ns_detail.py │ │ ├── ns_list.py │ │ ├── order.py │ │ ├── pools.py │ │ ├── protocol_add.py │ │ ├── protocol_delete.py │ │ └── protocol_edit.py │ ├── login.py │ ├── metadata.py │ ├── nas │ │ ├── __init__.py │ │ ├── credentials.py │ │ └── list.py │ ├── object_storage │ │ ├── __init__.py │ │ ├── cancel.py │ │ ├── credential │ │ │ ├── __init__.py │ │ │ ├── create.py │ │ │ ├── delete.py │ │ │ ├── limit.py │ │ │ └── list.py │ │ ├── list_accounts.py │ │ └── list_endpoints.py │ ├── order │ │ ├── __init__.py │ │ ├── cancelation.py │ │ ├── category_list.py │ │ ├── item_list.py │ │ ├── lookup.py │ │ ├── package_list.py │ │ ├── package_locations.py │ │ ├── place.py │ │ ├── place_quote.py │ │ ├── preset_list.py │ │ ├── quote.py │ │ ├── quote_delete.py │ │ ├── quote_detail.py │ │ ├── quote_list.py │ │ └── quote_save.py │ ├── report │ │ ├── __init__.py │ │ └── dc_closures.py │ ├── routes.py │ ├── search.py │ ├── security │ │ ├── __init__.py │ │ ├── cert_add.py │ │ ├── cert_download.py │ │ ├── cert_edit.py │ │ ├── cert_list.py │ │ ├── cert_remove.py │ │ ├── sshkey_add.py │ │ ├── sshkey_edit.py │ │ ├── sshkey_list.py │ │ ├── sshkey_print.py │ │ └── sshkey_remove.py │ ├── securitygroup │ │ ├── __init__.py │ │ ├── create.py │ │ ├── delete.py │ │ ├── detail.py │ │ ├── edit.py │ │ ├── event_log.py │ │ ├── interface.py │ │ ├── list.py │ │ └── rule.py │ ├── sshkey │ │ └── __init__.py │ ├── ssl │ │ └── __init__.py │ ├── storage_utils.py │ ├── subnet │ │ ├── __init__.py │ │ ├── cancel.py │ │ ├── clear_route.py │ │ ├── create.py │ │ ├── detail.py │ │ ├── edit.py │ │ ├── edit_ip.py │ │ ├── list.py │ │ ├── lookup.py │ │ └── route.py │ ├── summary.py │ ├── tags │ │ ├── __init__.py │ │ ├── cleanup.py │ │ ├── delete.py │ │ ├── details.py │ │ ├── list.py │ │ ├── set.py │ │ └── taggable.py │ ├── template.py │ ├── ticket │ │ ├── __init__.py │ │ ├── attach.py │ │ ├── create.py │ │ ├── detach.py │ │ ├── detail.py │ │ ├── list.py │ │ ├── subjects.py │ │ ├── summary.py │ │ ├── update.py │ │ └── upload.py │ ├── user │ │ ├── __init__.py │ │ ├── apikey.py │ │ ├── create.py │ │ ├── delete.py │ │ ├── detail.py │ │ ├── device_access.py │ │ ├── edit_details.py │ │ ├── edit_notifications.py │ │ ├── edit_permissions.py │ │ ├── grant_access.py │ │ ├── list.py │ │ ├── notifications.py │ │ ├── permissions.py │ │ ├── remove_access.py │ │ ├── vpn_enable_or_disable.py │ │ ├── vpn_manual.py │ │ ├── vpn_password.py │ │ └── vpn_subnet.py │ ├── virt │ │ ├── __init__.py │ │ ├── access.py │ │ ├── authorize_storage.py │ │ ├── bandwidth.py │ │ ├── billing.py │ │ ├── cancel.py │ │ ├── capacity │ │ │ ├── __init__.py │ │ │ ├── create.py │ │ │ ├── create_guest.py │ │ │ ├── create_options.py │ │ │ ├── detail.py │ │ │ └── list.py │ │ ├── capture.py │ │ ├── create.py │ │ ├── create_options.py │ │ ├── credentials.py │ │ ├── detail.py │ │ ├── dns.py │ │ ├── edit.py │ │ ├── list.py │ │ ├── migrate.py │ │ ├── monitoring.py │ │ ├── notification_add.py │ │ ├── notification_delete.py │ │ ├── notifications.py │ │ ├── os_available.py │ │ ├── placementgroup │ │ │ ├── __init__.py │ │ │ ├── create.py │ │ │ ├── create_options.py │ │ │ ├── delete.py │ │ │ ├── detail.py │ │ │ └── list.py │ │ ├── power.py │ │ ├── ready.py │ │ ├── reload.py │ │ ├── storage.py │ │ ├── upgrade.py │ │ └── usage.py │ └── vlan │ │ ├── __init__.py │ │ ├── cancel.py │ │ ├── create.py │ │ ├── create_options.py │ │ ├── detail.py │ │ ├── edit.py │ │ └── list.py ├── __init__.py ├── auth.py ├── config.py ├── consts.py ├── decoration.py ├── exceptions.py ├── fixtures │ ├── BluePages_Search.py │ ├── SoftLayer_Account.py │ ├── SoftLayer_Billing_Invoice.py │ ├── SoftLayer_Billing_Invoice_Item.py │ ├── SoftLayer_Billing_Item.py │ ├── SoftLayer_Billing_Item_Cancellation_Request.py │ ├── SoftLayer_Billing_Order.py │ ├── SoftLayer_Billing_Order_Quote.py │ ├── SoftLayer_Dns_Domain.py │ ├── SoftLayer_Dns_Domain_ResourceRecord.py │ ├── SoftLayer_Email_Subscription.py │ ├── SoftLayer_Event_Log.py │ ├── SoftLayer_Hardware.py │ ├── SoftLayer_Hardware_Server.py │ ├── SoftLayer_Location.py │ ├── SoftLayer_Location_Datacenter.py │ ├── SoftLayer_Location_Group.py │ ├── SoftLayer_Metric_Tracking_Object.py │ ├── SoftLayer_Network_Application_Delivery_Controller.py │ ├── SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type.py │ ├── SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method.py │ ├── SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type.py │ ├── SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service.py │ ├── SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group.py │ ├── SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress.py │ ├── SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer.py │ ├── SoftLayer_Network_Bandwidth_Version1_Allotment.py │ ├── SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge.py │ ├── SoftLayer_Network_CdnMarketplace_Configuration_Mapping.py │ ├── SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path.py │ ├── SoftLayer_Network_CdnMarketplace_Metrics.py │ ├── SoftLayer_Network_Component.py │ ├── SoftLayer_Network_Component_Firewall.py │ ├── SoftLayer_Network_Firewall_Update_Request.py │ ├── SoftLayer_Network_LBaaS_HealthMonitor.py │ ├── SoftLayer_Network_LBaaS_L7Pool.py │ ├── SoftLayer_Network_LBaaS_Listener.py │ ├── SoftLayer_Network_LBaaS_LoadBalancer.py │ ├── SoftLayer_Network_LBaaS_Member.py │ ├── SoftLayer_Network_Message_Delivery_Email_Sendgrid.py │ ├── SoftLayer_Network_Pod.py │ ├── SoftLayer_Network_SecurityGroup.py │ ├── SoftLayer_Network_Service_Vpn_Overrides.py │ ├── SoftLayer_Network_Storage.py │ ├── SoftLayer_Network_Storage_Allowed_Host.py │ ├── SoftLayer_Network_Storage_Hub_Cleversafe_Account.py │ ├── SoftLayer_Network_Storage_Iscsi.py │ ├── SoftLayer_Network_Subnet.py │ ├── SoftLayer_Network_Subnet_IpAddress.py │ ├── SoftLayer_Network_Subnet_IpAddress_Global.py │ ├── SoftLayer_Network_Subnet_Rwhois_Data.py │ ├── SoftLayer_Network_Vlan.py │ ├── SoftLayer_Network_Vlan_Firewall.py │ ├── SoftLayer_Notification_Occurrence_Event.py │ ├── SoftLayer_Product_Order.py │ ├── SoftLayer_Product_Package.py │ ├── SoftLayer_Product_Package_Preset.py │ ├── SoftLayer_Provisioning_Hook.py │ ├── SoftLayer_Provisioning_Maintenance_Window.py │ ├── SoftLayer_Resource_Metadata.py │ ├── SoftLayer_Scale_Group.py │ ├── SoftLayer_Scale_Policy.py │ ├── SoftLayer_Search.py │ ├── SoftLayer_Security_Certificate.py │ ├── SoftLayer_Security_Ssh_Key.py │ ├── SoftLayer_Software_AccountLicense.py │ ├── SoftLayer_Software_Component_Password.py │ ├── SoftLayer_Tag.py │ ├── SoftLayer_Ticket.py │ ├── SoftLayer_Ticket_Subject.py │ ├── SoftLayer_User_Customer.py │ ├── SoftLayer_User_Customer_CustomerPermission_Permission.py │ ├── SoftLayer_User_Customer_Notification_Hardware.py │ ├── SoftLayer_User_Customer_Notification_Virtual_Guest.py │ ├── SoftLayer_User_Permission_Action.py │ ├── SoftLayer_User_Permission_Department.py │ ├── SoftLayer_Virtual_DedicatedHost.py │ ├── SoftLayer_Virtual_Guest.py │ ├── SoftLayer_Virtual_Guest_Block_Device_Template_Group.py │ ├── SoftLayer_Virtual_Host.py │ ├── SoftLayer_Virtual_PlacementGroup.py │ ├── SoftLayer_Virtual_PlacementGroup_Rule.py │ ├── SoftLayer_Virtual_ReservedCapacityGroup.py │ ├── __init__.py │ ├── empty.conf │ ├── full.conf │ ├── id_rsa.pub │ ├── no_options.conf │ ├── realtest.com │ ├── sample_vs_template.conf │ ├── soap │ │ ├── SoftLayer_Account_getObject.soap │ │ ├── SoftLayer_Account_getVirtualGuests.soap │ │ ├── SoftLayer_Virtual_Guest_getObject.soap │ │ ├── test_objectFilter.soap │ │ └── test_objectMask.soap │ └── xmlrpc │ │ ├── Employee_getObject.xml │ │ ├── expiredToken.xml │ │ ├── invalidLogin.xml │ │ ├── refreshFailure.xml │ │ ├── refreshSuccess.xml │ │ └── successLogin.xml ├── managers │ ├── __init__.py │ ├── account.py │ ├── bandwidth.py │ ├── block.py │ ├── dedicated_host.py │ ├── dns.py │ ├── email.py │ ├── event_log.py │ ├── file.py │ ├── firewall.py │ ├── hardware.py │ ├── image.py │ ├── license.py │ ├── load_balancer.py │ ├── metadata.py │ ├── network.py │ ├── object_storage.py │ ├── ordering.py │ ├── search.py │ ├── sshkey.py │ ├── ssl.py │ ├── storage.py │ ├── storage_utils.py │ ├── tags.py │ ├── ticket.py │ ├── user.py │ ├── vs.py │ ├── vs_capacity.py │ └── vs_placement.py ├── shell │ ├── __init__.py │ ├── cmd_env.py │ ├── cmd_exit.py │ ├── cmd_help.py │ ├── completer.py │ ├── core.py │ └── routes.py ├── testing │ ├── __init__.py │ └── xmlrpc.py ├── transports │ ├── __init__.py │ ├── debug.py │ ├── fixture.py │ ├── rest.py │ ├── soap.py.unstable │ ├── timing.py │ ├── transport.py │ └── xmlrpc.py └── utils.py ├── checker.py ├── checker_README.md ├── docCheck.py ├── docs ├── Makefile ├── _templates │ └── manager_template.rst ├── api │ ├── client.rst │ └── managers │ │ ├── SoftLayer.managers.AccountManager.rst │ │ ├── SoftLayer.managers.BandwidthManager.rst │ │ ├── SoftLayer.managers.BlockStorageManager.rst │ │ ├── SoftLayer.managers.CDNManager.rst │ │ ├── SoftLayer.managers.CapacityManager.rst │ │ ├── SoftLayer.managers.DNSManager.rst │ │ ├── SoftLayer.managers.DedicatedHostManager.rst │ │ ├── SoftLayer.managers.EventLogManager.rst │ │ ├── SoftLayer.managers.FileStorageManager.rst │ │ ├── SoftLayer.managers.FirewallManager.rst │ │ ├── SoftLayer.managers.HardwareManager.rst │ │ ├── SoftLayer.managers.IPSECManager.rst │ │ ├── SoftLayer.managers.ImageManager.rst │ │ ├── SoftLayer.managers.LicensesManager.rst │ │ ├── SoftLayer.managers.LoadBalancerManager.rst │ │ ├── SoftLayer.managers.MetadataManager.rst │ │ ├── SoftLayer.managers.NetworkManager.rst │ │ ├── SoftLayer.managers.ObjectStorageManager.rst │ │ ├── SoftLayer.managers.OrderingManager.rst │ │ ├── SoftLayer.managers.PlacementManager.rst │ │ ├── SoftLayer.managers.SSLManager.rst │ │ ├── SoftLayer.managers.SearchManager.rst │ │ ├── SoftLayer.managers.SshKeyManager.rst │ │ ├── SoftLayer.managers.TagManager.rst │ │ ├── SoftLayer.managers.TicketManager.rst │ │ ├── SoftLayer.managers.UserManager.rst │ │ └── SoftLayer.managers.VSManager.rst ├── cli.rst ├── cli │ ├── account.rst │ ├── bandwidth.rst │ ├── block.rst │ ├── cdn.rst │ ├── commands.rst │ ├── config.rst │ ├── dedicated.rst │ ├── dns.rst │ ├── email.rst │ ├── event_log.rst │ ├── file.rst │ ├── firewall.rst │ ├── global_ip.rst │ ├── hardware.rst │ ├── image.rst │ ├── ipsec.rst │ ├── licenses.rst │ ├── loadbal.rst │ ├── nas.rst │ ├── object_storage.rst │ ├── ordering.rst │ ├── reports.rst │ ├── security.rst │ ├── security_groups.rst │ ├── subnet.rst │ ├── tags.rst │ ├── tickets.rst │ ├── users.rst │ ├── vlan.rst │ ├── vs.rst │ └── vs │ │ ├── placement_group.rst │ │ └── reserved_capacity.rst ├── cli_directory.rst ├── conf.py ├── config_file.rst ├── dev │ ├── SoftLayer-Python.drawio │ ├── cla-corporate.md │ ├── cla-individual.md │ ├── cli.rst │ ├── example_module.rst │ └── index.rst ├── images │ └── SoftLayer-Python.png ├── index.rst ├── install.rst └── requirements.txt ├── fabfile.py ├── output.txt ├── pkg └── softlayer-python.spec ├── setup.cfg ├── setup.py ├── slcli ├── snap ├── local │ └── slcli.png └── snapcraft.yaml ├── tests ├── CLI │ ├── __init__.py │ ├── core_tests.py │ ├── custom_types_tests.py │ ├── environment_tests.py │ ├── formatting_table_tests.py │ ├── helper_tests.py │ └── modules │ │ ├── __init__.py │ │ ├── account_tests.py │ │ ├── bandwidth_tests.py │ │ ├── block_tests.py │ │ ├── call_api_tests.py │ │ ├── config_tests.py │ │ ├── dedicatedhost_tests.py │ │ ├── dns_tests.py │ │ ├── email_tests.py │ │ ├── event_log_tests.py │ │ ├── file_tests.py │ │ ├── firewall_tests.py │ │ ├── globalip_tests.py │ │ ├── hardware │ │ ├── hardware_basic_tests.py │ │ ├── hardware_firmware_tests.py │ │ ├── hardware_list_tests.py │ │ └── hardware_vlan_tests.py │ │ ├── image_tests.py │ │ ├── licenses_test.py │ │ ├── loadbal_tests.py │ │ ├── nas_tests.py │ │ ├── object_storage_tests.py │ │ ├── order_tests.py │ │ ├── report_tests.py │ │ ├── search_tests.py │ │ ├── security_tests.py │ │ ├── securitygroup_tests.py │ │ ├── sshkey_tests.py │ │ ├── ssl_tests.py │ │ ├── subnet_tests.py │ │ ├── summary_tests.py │ │ ├── tag_tests.py │ │ ├── ticket_tests.py │ │ ├── user_tests.py │ │ ├── vlan_tests.py │ │ └── vs │ │ ├── __init__.py │ │ ├── vs_capacity_tests.py │ │ ├── vs_create_tests.py │ │ ├── vs_placement_tests.py │ │ └── vs_tests.py ├── __init__.py ├── api_tests.py ├── auth_tests.py ├── basic_tests.py ├── config_tests.py ├── conftest.py ├── decoration_tests.py ├── functional_tests.py ├── managers │ ├── __init__.py │ ├── account_tests.py │ ├── bandwidth_tests.py │ ├── block_tests.py │ ├── dedicated_host_tests.py │ ├── dns_tests.py │ ├── email_tests.py │ ├── event_log_tests.py │ ├── file_tests.py │ ├── firewall_tests.py │ ├── hardware_tests.py │ ├── image_tests.py │ ├── loadbal_tests.py │ ├── metadata_tests.py │ ├── network_tests.py │ ├── object_storage_tests.py │ ├── ordering_tests.py │ ├── search_tests.py │ ├── sshkey_tests.py │ ├── ssl_tests.py │ ├── storage_generic_tests.py │ ├── storage_utils_tests.py │ ├── tag_tests.py │ ├── ticket_tests.py │ ├── user_tests.py │ └── vs │ │ ├── __init__.py │ │ ├── vs_capacity_tests.py │ │ ├── vs_order_tests.py │ │ ├── vs_placement_tests.py │ │ ├── vs_tests.py │ │ └── vs_waiting_for_ready_tests.py ├── resources │ └── attachment_upload ├── transports │ ├── __init__.py │ ├── debug_tests.py │ ├── rest_tests.py │ ├── soap_tests.py.unstable │ ├── transport_tests.py │ └── xmlrpc_tests.py └── utils_tests.py ├── tools ├── requirements.txt └── test-requirements.txt └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-snap-can-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/workflows/test-snap-can-build.yml -------------------------------------------------------------------------------- /.github/workflows/test_pypi_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/workflows/test_pypi_release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README-internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/README-internal.md -------------------------------------------------------------------------------- /README-snapcraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/README-snapcraft.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SoftLayer/API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/API.py -------------------------------------------------------------------------------- /SoftLayer/CLI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/__init__.py: -------------------------------------------------------------------------------- 1 | """Account commands""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/account/billing_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/billing_items.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/cancel_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/cancel_item.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/event_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/event_detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/events.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/hook_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/hook_create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/hook_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/hook_delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/hooks.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/invoice_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/invoice_detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/invoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/invoices.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/item_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/item_detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/licenses.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/orders.py -------------------------------------------------------------------------------- /SoftLayer/CLI/account/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/account/summary.py -------------------------------------------------------------------------------- /SoftLayer/CLI/bandwidth/__init__.py: -------------------------------------------------------------------------------- 1 | """Bandwidth.""" 2 | # :license: MIT, see LICENSE for more details. 3 | -------------------------------------------------------------------------------- /SoftLayer/CLI/bandwidth/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/bandwidth/pools.py -------------------------------------------------------------------------------- /SoftLayer/CLI/bandwidth/pools_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/bandwidth/pools_create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/bandwidth/pools_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/bandwidth/pools_delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/bandwidth/pools_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/bandwidth/pools_detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/bandwidth/pools_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/bandwidth/pools_edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/bandwidth/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/bandwidth/summary.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/__init__.py: -------------------------------------------------------------------------------- 1 | """Block Storage.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/block/access/__init__.py: -------------------------------------------------------------------------------- 1 | """Block Storage Access Control.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/block/access/authorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/access/authorize.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/access/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/access/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/access/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/access/password.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/access/revoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/access/revoke.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/convert.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/count.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/duplicate.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/duplicate_convert_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/duplicate_convert_status.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/limit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/lun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/lun.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/modify.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/object_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/object_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/object_storage_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/object_storage_detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/object_storage_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/object_storage_permission.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/order.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/refresh.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/replication/__init__.py: -------------------------------------------------------------------------------- 1 | """Block Storage Replication Control.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/block/replication/disaster_recovery_failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/replication/disaster_recovery_failover.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/replication/failback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/replication/failback.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/replication/failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/replication/failover.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/replication/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/replication/locations.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/replication/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/replication/order.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/replication/partners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/replication/partners.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/set_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/set_note.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/__init__.py: -------------------------------------------------------------------------------- 1 | """Block Storage Snapshot Control.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/disable.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/enable.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/get_notify_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/get_notify_status.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/order.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/restore.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/schedule_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/schedule_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/snapshot/set_notify_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/snapshot/set_notify_status.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/subnets/__init__.py: -------------------------------------------------------------------------------- 1 | """Block Storage Subnets Control.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/block/subnets/assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/subnets/assign.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/subnets/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/subnets/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/block/subnets/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/block/subnets/remove.py -------------------------------------------------------------------------------- /SoftLayer/CLI/call_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/call_api.py -------------------------------------------------------------------------------- /SoftLayer/CLI/cdn/__init__.py: -------------------------------------------------------------------------------- 1 | """Content Delivery Network.""" 2 | # :license: MIT, see LICENSE for more details. 3 | -------------------------------------------------------------------------------- /SoftLayer/CLI/cdn/cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/cdn/cdn.py -------------------------------------------------------------------------------- /SoftLayer/CLI/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/columns.py -------------------------------------------------------------------------------- /SoftLayer/CLI/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/command.py -------------------------------------------------------------------------------- /SoftLayer/CLI/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/config/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/config/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/config/setup.py -------------------------------------------------------------------------------- /SoftLayer/CLI/config/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/config/show.py -------------------------------------------------------------------------------- /SoftLayer/CLI/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/core.py -------------------------------------------------------------------------------- /SoftLayer/CLI/custom_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/custom_types.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/__init__.py: -------------------------------------------------------------------------------- 1 | """Dedicated Host.""" 2 | # :license: MIT, see LICENSE for more details. 3 | -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dedicatedhost/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/cancel_guests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dedicatedhost/cancel_guests.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dedicatedhost/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dedicatedhost/create_options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dedicatedhost/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dedicatedhost/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dedicatedhost/list_guests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dedicatedhost/list_guests.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/__init__.py: -------------------------------------------------------------------------------- 1 | """Domain Name System.""" 2 | # :license: MIT, see LICENSE for more details. 3 | -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/record_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/record_add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/record_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/record_edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/record_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/record_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/record_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/record_remove.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/zone_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/zone_create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/zone_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/zone_delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/zone_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/zone_import.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/zone_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/zone_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/dns/zone_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/dns/zone_print.py -------------------------------------------------------------------------------- /SoftLayer/CLI/email/__init__.py: -------------------------------------------------------------------------------- 1 | """Network Delivery account""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/email/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/email/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/email/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/email/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/email/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/email/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/environment.py -------------------------------------------------------------------------------- /SoftLayer/CLI/event_log/__init__.py: -------------------------------------------------------------------------------- 1 | """Event Logs.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/event_log/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/event_log/get.py -------------------------------------------------------------------------------- /SoftLayer/CLI/event_log/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/event_log/types.py -------------------------------------------------------------------------------- /SoftLayer/CLI/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/exceptions.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/__init__.py: -------------------------------------------------------------------------------- 1 | """File Storage.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/file/access/__init__.py: -------------------------------------------------------------------------------- 1 | """File Storage Access Control.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/file/access/authorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/access/authorize.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/access/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/access/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/access/revoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/access/revoke.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/convert.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/count.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/duplicate.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/duplicate_convert_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/duplicate_convert_status.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/limit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/modify.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/order.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/refresh.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/replication/__init__.py: -------------------------------------------------------------------------------- 1 | """File Storage Replication Control.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/file/replication/disaster_recovery_failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/replication/disaster_recovery_failover.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/replication/failback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/replication/failback.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/replication/failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/replication/failover.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/replication/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/replication/locations.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/replication/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/replication/order.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/replication/partners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/replication/partners.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/set_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/set_note.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/__init__.py: -------------------------------------------------------------------------------- 1 | """File Storage Snapshot Control.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/disable.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/enable.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/get_notify_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/get_notify_status.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/order.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/restore.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/schedule_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/schedule_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/file/snapshot/set_notify_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/file/snapshot/set_notify_status.py -------------------------------------------------------------------------------- /SoftLayer/CLI/firewall/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/firewall/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/firewall/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/firewall/add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/firewall/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/firewall/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/firewall/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/firewall/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/firewall/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/firewall/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/firewall/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/firewall/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/firewall/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/firewall/monitoring.py -------------------------------------------------------------------------------- /SoftLayer/CLI/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/formatting.py -------------------------------------------------------------------------------- /SoftLayer/CLI/globalip/__init__.py: -------------------------------------------------------------------------------- 1 | """Global IP addresses.""" 2 | # :license: MIT, see LICENSE for more details. 3 | -------------------------------------------------------------------------------- /SoftLayer/CLI/globalip/assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/globalip/assign.py -------------------------------------------------------------------------------- /SoftLayer/CLI/globalip/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/globalip/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/globalip/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/globalip/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/globalip/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/globalip/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/globalip/unassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/globalip/unassign.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/__init__.py: -------------------------------------------------------------------------------- 1 | """Hardware servers.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/authorize_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/authorize_storage.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/bandwidth.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/billing.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/cancel_reasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/cancel_reasons.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/create_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/create_credential.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/create_options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/credentials.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/dns.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/monitoring.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/notification_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/notification_add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/notification_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/notification_delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/notifications.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/power.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/ready.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/ready.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/reflash_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/reflash_firmware.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/reload.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/sensor.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/storage.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/toggle_ipmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/toggle_ipmi.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/update_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/update_firmware.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/upgrade.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/vlan_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/vlan_add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/vlan_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/vlan_remove.py -------------------------------------------------------------------------------- /SoftLayer/CLI/hardware/vlan_trunkable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/hardware/vlan_trunkable.py -------------------------------------------------------------------------------- /SoftLayer/CLI/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/helpers.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/datacenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/datacenter.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/export.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/import.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/share.py -------------------------------------------------------------------------------- /SoftLayer/CLI/image/share_deny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/image/share_deny.py -------------------------------------------------------------------------------- /SoftLayer/CLI/licenses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/licenses/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/licenses/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/licenses/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/licenses/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/licenses/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/licenses/create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/licenses/create_options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/__init__.py: -------------------------------------------------------------------------------- 1 | """Load balancers.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/health.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/layer7_policy_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/layer7_policy_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/members.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/ns_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/ns_detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/ns_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/ns_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/order.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/pools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/pools.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/protocol_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/protocol_add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/protocol_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/protocol_delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/loadbal/protocol_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/loadbal/protocol_edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/login.py -------------------------------------------------------------------------------- /SoftLayer/CLI/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/metadata.py -------------------------------------------------------------------------------- /SoftLayer/CLI/nas/__init__.py: -------------------------------------------------------------------------------- 1 | """Network Attached Storage.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/nas/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/nas/credentials.py -------------------------------------------------------------------------------- /SoftLayer/CLI/nas/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/nas/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/__init__.py: -------------------------------------------------------------------------------- 1 | """Object Storage.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/credential/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/credential/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/credential/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/credential/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/credential/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/credential/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/credential/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/credential/limit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/credential/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/credential/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/list_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/list_accounts.py -------------------------------------------------------------------------------- /SoftLayer/CLI/object_storage/list_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/object_storage/list_endpoints.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/cancelation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/cancelation.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/category_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/category_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/item_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/item_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/lookup.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/package_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/package_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/package_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/package_locations.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/place.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/place_quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/place_quote.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/preset_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/preset_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/quote.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/quote_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/quote_delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/quote_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/quote_detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/quote_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/quote_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/order/quote_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/order/quote_save.py -------------------------------------------------------------------------------- /SoftLayer/CLI/report/__init__.py: -------------------------------------------------------------------------------- 1 | """Reports.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/report/dc_closures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/report/dc_closures.py -------------------------------------------------------------------------------- /SoftLayer/CLI/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/routes.py -------------------------------------------------------------------------------- /SoftLayer/CLI/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/search.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/cert_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/cert_add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/cert_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/cert_download.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/cert_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/cert_edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/cert_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/cert_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/cert_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/cert_remove.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/sshkey_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/sshkey_add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/sshkey_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/sshkey_edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/sshkey_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/sshkey_list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/sshkey_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/sshkey_print.py -------------------------------------------------------------------------------- /SoftLayer/CLI/security/sshkey_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/security/sshkey_remove.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/__init__.py: -------------------------------------------------------------------------------- 1 | """Network security groups.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/event_log.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/interface.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/securitygroup/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/securitygroup/rule.py -------------------------------------------------------------------------------- /SoftLayer/CLI/sshkey/__init__.py: -------------------------------------------------------------------------------- 1 | """SSH Keys.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/ssl/__init__.py: -------------------------------------------------------------------------------- 1 | """SSL Certificates.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/storage_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/storage_utils.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/__init__.py: -------------------------------------------------------------------------------- 1 | """Network subnets.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/clear_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/clear_route.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/edit_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/edit_ip.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/lookup.py -------------------------------------------------------------------------------- /SoftLayer/CLI/subnet/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/subnet/route.py -------------------------------------------------------------------------------- /SoftLayer/CLI/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/summary.py -------------------------------------------------------------------------------- /SoftLayer/CLI/tags/__init__.py: -------------------------------------------------------------------------------- 1 | """Manage Tags""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/tags/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/tags/cleanup.py -------------------------------------------------------------------------------- /SoftLayer/CLI/tags/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/tags/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/tags/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/tags/details.py -------------------------------------------------------------------------------- /SoftLayer/CLI/tags/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/tags/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/tags/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/tags/set.py -------------------------------------------------------------------------------- /SoftLayer/CLI/tags/taggable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/tags/taggable.py -------------------------------------------------------------------------------- /SoftLayer/CLI/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/template.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/attach.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/detach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/detach.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/subjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/subjects.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/summary.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/update.py -------------------------------------------------------------------------------- /SoftLayer/CLI/ticket/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/ticket/upload.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/__init__.py: -------------------------------------------------------------------------------- 1 | """Manage Users.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/user/apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/apikey.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/device_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/device_access.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/edit_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/edit_details.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/edit_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/edit_notifications.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/edit_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/edit_permissions.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/grant_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/grant_access.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/notifications.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/permissions.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/remove_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/remove_access.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/vpn_enable_or_disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/vpn_enable_or_disable.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/vpn_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/vpn_manual.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/vpn_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/vpn_password.py -------------------------------------------------------------------------------- /SoftLayer/CLI/user/vpn_subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/user/vpn_subnet.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/access.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/authorize_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/authorize_storage.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/bandwidth.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/billing.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/capacity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/capacity/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/capacity/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/capacity/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/capacity/create_guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/capacity/create_guest.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/capacity/create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/capacity/create_options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/capacity/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/capacity/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/capacity/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/capacity/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/capture.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/create_options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/credentials.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/dns.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/migrate.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/monitoring.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/notification_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/notification_add.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/notification_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/notification_delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/notifications.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/os_available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/os_available.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/placementgroup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/placementgroup/__init__.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/placementgroup/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/placementgroup/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/placementgroup/create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/placementgroup/create_options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/placementgroup/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/placementgroup/delete.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/placementgroup/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/placementgroup/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/placementgroup/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/placementgroup/list.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/power.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/ready.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/ready.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/reload.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/storage.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/upgrade.py -------------------------------------------------------------------------------- /SoftLayer/CLI/virt/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/virt/usage.py -------------------------------------------------------------------------------- /SoftLayer/CLI/vlan/__init__.py: -------------------------------------------------------------------------------- 1 | """Network VLANs.""" 2 | -------------------------------------------------------------------------------- /SoftLayer/CLI/vlan/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/vlan/cancel.py -------------------------------------------------------------------------------- /SoftLayer/CLI/vlan/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/vlan/create.py -------------------------------------------------------------------------------- /SoftLayer/CLI/vlan/create_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/vlan/create_options.py -------------------------------------------------------------------------------- /SoftLayer/CLI/vlan/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/vlan/detail.py -------------------------------------------------------------------------------- /SoftLayer/CLI/vlan/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/vlan/edit.py -------------------------------------------------------------------------------- /SoftLayer/CLI/vlan/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/CLI/vlan/list.py -------------------------------------------------------------------------------- /SoftLayer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/__init__.py -------------------------------------------------------------------------------- /SoftLayer/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/auth.py -------------------------------------------------------------------------------- /SoftLayer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/config.py -------------------------------------------------------------------------------- /SoftLayer/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/consts.py -------------------------------------------------------------------------------- /SoftLayer/decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/decoration.py -------------------------------------------------------------------------------- /SoftLayer/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/exceptions.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/BluePages_Search.py: -------------------------------------------------------------------------------- 1 | findBluePagesProfile = True 2 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Account.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Billing_Invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Billing_Invoice.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Billing_Invoice_Item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Billing_Invoice_Item.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Billing_Item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Billing_Item.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Billing_Item_Cancellation_Request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Billing_Item_Cancellation_Request.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Billing_Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Billing_Order.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Billing_Order_Quote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Billing_Order_Quote.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Dns_Domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Dns_Domain.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Dns_Domain_ResourceRecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Dns_Domain_ResourceRecord.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Email_Subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Email_Subscription.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Event_Log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Event_Log.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Hardware.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Hardware_Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Hardware_Server.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Location.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Location_Datacenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Location_Datacenter.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Location_Group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Location_Group.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Metric_Tracking_Object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Metric_Tracking_Object.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group.py: -------------------------------------------------------------------------------- 1 | kickAllConnections = True 2 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer.py: -------------------------------------------------------------------------------- 1 | deleteObject = True 2 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Bandwidth_Version1_Allotment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Bandwidth_Version1_Allotment.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge.py: -------------------------------------------------------------------------------- 1 | createPurge = [] 2 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Metrics.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Component.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Component_Firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Component_Firewall.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Firewall_Update_Request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Firewall_Update_Request.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_LBaaS_HealthMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_LBaaS_HealthMonitor.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_LBaaS_L7Pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_LBaaS_L7Pool.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_LBaaS_Listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Listener.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_LBaaS_LoadBalancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_LBaaS_LoadBalancer.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_LBaaS_Member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Member.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Message_Delivery_Email_Sendgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Message_Delivery_Email_Sendgrid.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Pod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Pod.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_SecurityGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_SecurityGroup.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Service_Vpn_Overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Service_Vpn_Overrides.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Storage.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Storage_Allowed_Host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Storage_Allowed_Host.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Storage_Hub_Cleversafe_Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Storage_Hub_Cleversafe_Account.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Storage_Iscsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Storage_Iscsi.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Subnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Subnet.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress_Global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress_Global.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Subnet_Rwhois_Data.py: -------------------------------------------------------------------------------- 1 | editObject = True 2 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Vlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Vlan.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Network_Vlan_Firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Network_Vlan_Firewall.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Notification_Occurrence_Event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Notification_Occurrence_Event.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Product_Order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Product_Order.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Product_Package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Product_Package.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Product_Package_Preset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Product_Package_Preset.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Provisioning_Hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Provisioning_Hook.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Provisioning_Maintenance_Window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Provisioning_Maintenance_Window.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Resource_Metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Resource_Metadata.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Scale_Group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Scale_Group.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Scale_Policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Scale_Policy.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Search.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Security_Certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Security_Certificate.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Security_Ssh_Key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Security_Ssh_Key.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Software_AccountLicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Software_AccountLicense.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Software_Component_Password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Software_Component_Password.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Tag.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Ticket.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Ticket_Subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Ticket_Subject.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_User_Customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_User_Customer.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_User_Customer_CustomerPermission_Permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_User_Customer_CustomerPermission_Permission.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_User_Customer_Notification_Hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_User_Customer_Notification_Hardware.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_User_Customer_Notification_Virtual_Guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_User_Customer_Notification_Virtual_Guest.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_User_Permission_Action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_User_Permission_Action.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_User_Permission_Department.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_User_Permission_Department.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Virtual_DedicatedHost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Virtual_DedicatedHost.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Virtual_Guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Virtual_Guest.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Virtual_Guest_Block_Device_Template_Group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Virtual_Guest_Block_Device_Template_Group.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Virtual_Host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Virtual_Host.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup_Rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup_Rule.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/SoftLayer_Virtual_ReservedCapacityGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/SoftLayer_Virtual_ReservedCapacityGroup.py -------------------------------------------------------------------------------- /SoftLayer/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/empty.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/full.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/full.conf -------------------------------------------------------------------------------- /SoftLayer/fixtures/id_rsa.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3N...pa67 user@example.com -------------------------------------------------------------------------------- /SoftLayer/fixtures/no_options.conf: -------------------------------------------------------------------------------- 1 | [softlayer] -------------------------------------------------------------------------------- /SoftLayer/fixtures/realtest.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/realtest.com -------------------------------------------------------------------------------- /SoftLayer/fixtures/sample_vs_template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/sample_vs_template.conf -------------------------------------------------------------------------------- /SoftLayer/fixtures/soap/SoftLayer_Account_getObject.soap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/soap/SoftLayer_Account_getObject.soap -------------------------------------------------------------------------------- /SoftLayer/fixtures/soap/SoftLayer_Account_getVirtualGuests.soap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/soap/SoftLayer_Account_getVirtualGuests.soap -------------------------------------------------------------------------------- /SoftLayer/fixtures/soap/SoftLayer_Virtual_Guest_getObject.soap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/soap/SoftLayer_Virtual_Guest_getObject.soap -------------------------------------------------------------------------------- /SoftLayer/fixtures/soap/test_objectFilter.soap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/soap/test_objectFilter.soap -------------------------------------------------------------------------------- /SoftLayer/fixtures/soap/test_objectMask.soap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/soap/test_objectMask.soap -------------------------------------------------------------------------------- /SoftLayer/fixtures/xmlrpc/Employee_getObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/xmlrpc/Employee_getObject.xml -------------------------------------------------------------------------------- /SoftLayer/fixtures/xmlrpc/expiredToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/xmlrpc/expiredToken.xml -------------------------------------------------------------------------------- /SoftLayer/fixtures/xmlrpc/invalidLogin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/xmlrpc/invalidLogin.xml -------------------------------------------------------------------------------- /SoftLayer/fixtures/xmlrpc/refreshFailure.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoftLayer/fixtures/xmlrpc/refreshSuccess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/xmlrpc/refreshSuccess.xml -------------------------------------------------------------------------------- /SoftLayer/fixtures/xmlrpc/successLogin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/fixtures/xmlrpc/successLogin.xml -------------------------------------------------------------------------------- /SoftLayer/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/__init__.py -------------------------------------------------------------------------------- /SoftLayer/managers/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/account.py -------------------------------------------------------------------------------- /SoftLayer/managers/bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/bandwidth.py -------------------------------------------------------------------------------- /SoftLayer/managers/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/block.py -------------------------------------------------------------------------------- /SoftLayer/managers/dedicated_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/dedicated_host.py -------------------------------------------------------------------------------- /SoftLayer/managers/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/dns.py -------------------------------------------------------------------------------- /SoftLayer/managers/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/email.py -------------------------------------------------------------------------------- /SoftLayer/managers/event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/event_log.py -------------------------------------------------------------------------------- /SoftLayer/managers/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/file.py -------------------------------------------------------------------------------- /SoftLayer/managers/firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/firewall.py -------------------------------------------------------------------------------- /SoftLayer/managers/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/hardware.py -------------------------------------------------------------------------------- /SoftLayer/managers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/image.py -------------------------------------------------------------------------------- /SoftLayer/managers/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/license.py -------------------------------------------------------------------------------- /SoftLayer/managers/load_balancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/load_balancer.py -------------------------------------------------------------------------------- /SoftLayer/managers/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/metadata.py -------------------------------------------------------------------------------- /SoftLayer/managers/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/network.py -------------------------------------------------------------------------------- /SoftLayer/managers/object_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/object_storage.py -------------------------------------------------------------------------------- /SoftLayer/managers/ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/ordering.py -------------------------------------------------------------------------------- /SoftLayer/managers/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/search.py -------------------------------------------------------------------------------- /SoftLayer/managers/sshkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/sshkey.py -------------------------------------------------------------------------------- /SoftLayer/managers/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/ssl.py -------------------------------------------------------------------------------- /SoftLayer/managers/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/storage.py -------------------------------------------------------------------------------- /SoftLayer/managers/storage_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/storage_utils.py -------------------------------------------------------------------------------- /SoftLayer/managers/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/tags.py -------------------------------------------------------------------------------- /SoftLayer/managers/ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/ticket.py -------------------------------------------------------------------------------- /SoftLayer/managers/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/user.py -------------------------------------------------------------------------------- /SoftLayer/managers/vs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/vs.py -------------------------------------------------------------------------------- /SoftLayer/managers/vs_capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/vs_capacity.py -------------------------------------------------------------------------------- /SoftLayer/managers/vs_placement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/managers/vs_placement.py -------------------------------------------------------------------------------- /SoftLayer/shell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoftLayer/shell/cmd_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/shell/cmd_env.py -------------------------------------------------------------------------------- /SoftLayer/shell/cmd_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/shell/cmd_exit.py -------------------------------------------------------------------------------- /SoftLayer/shell/cmd_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/shell/cmd_help.py -------------------------------------------------------------------------------- /SoftLayer/shell/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/shell/completer.py -------------------------------------------------------------------------------- /SoftLayer/shell/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/shell/core.py -------------------------------------------------------------------------------- /SoftLayer/shell/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/shell/routes.py -------------------------------------------------------------------------------- /SoftLayer/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/testing/__init__.py -------------------------------------------------------------------------------- /SoftLayer/testing/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/testing/xmlrpc.py -------------------------------------------------------------------------------- /SoftLayer/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/__init__.py -------------------------------------------------------------------------------- /SoftLayer/transports/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/debug.py -------------------------------------------------------------------------------- /SoftLayer/transports/fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/fixture.py -------------------------------------------------------------------------------- /SoftLayer/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/rest.py -------------------------------------------------------------------------------- /SoftLayer/transports/soap.py.unstable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/soap.py.unstable -------------------------------------------------------------------------------- /SoftLayer/transports/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/timing.py -------------------------------------------------------------------------------- /SoftLayer/transports/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/transport.py -------------------------------------------------------------------------------- /SoftLayer/transports/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/transports/xmlrpc.py -------------------------------------------------------------------------------- /SoftLayer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/SoftLayer/utils.py -------------------------------------------------------------------------------- /checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/checker.py -------------------------------------------------------------------------------- /checker_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/checker_README.md -------------------------------------------------------------------------------- /docCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docCheck.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/manager_template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/_templates/manager_template.rst -------------------------------------------------------------------------------- /docs/api/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/client.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.AccountManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.AccountManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.BandwidthManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.BandwidthManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.BlockStorageManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.BlockStorageManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.CDNManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.CDNManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.CapacityManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.CapacityManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.DNSManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.DNSManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.DedicatedHostManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.DedicatedHostManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.EventLogManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.EventLogManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.FileStorageManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.FileStorageManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.FirewallManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.FirewallManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.HardwareManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.HardwareManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.IPSECManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.IPSECManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.ImageManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.ImageManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.LicensesManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.LicensesManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.LoadBalancerManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.LoadBalancerManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.MetadataManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.MetadataManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.NetworkManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.NetworkManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.ObjectStorageManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.ObjectStorageManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.OrderingManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.OrderingManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.PlacementManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.PlacementManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.SSLManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.SSLManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.SearchManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.SearchManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.SshKeyManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.SshKeyManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.TagManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.TagManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.TicketManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.TicketManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.UserManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.UserManager.rst -------------------------------------------------------------------------------- /docs/api/managers/SoftLayer.managers.VSManager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/api/managers/SoftLayer.managers.VSManager.rst -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/cli/account.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/account.rst -------------------------------------------------------------------------------- /docs/cli/bandwidth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/bandwidth.rst -------------------------------------------------------------------------------- /docs/cli/block.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/block.rst -------------------------------------------------------------------------------- /docs/cli/cdn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/cdn.rst -------------------------------------------------------------------------------- /docs/cli/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/commands.rst -------------------------------------------------------------------------------- /docs/cli/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/config.rst -------------------------------------------------------------------------------- /docs/cli/dedicated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/dedicated.rst -------------------------------------------------------------------------------- /docs/cli/dns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/dns.rst -------------------------------------------------------------------------------- /docs/cli/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/email.rst -------------------------------------------------------------------------------- /docs/cli/event_log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/event_log.rst -------------------------------------------------------------------------------- /docs/cli/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/file.rst -------------------------------------------------------------------------------- /docs/cli/firewall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/firewall.rst -------------------------------------------------------------------------------- /docs/cli/global_ip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/global_ip.rst -------------------------------------------------------------------------------- /docs/cli/hardware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/hardware.rst -------------------------------------------------------------------------------- /docs/cli/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/image.rst -------------------------------------------------------------------------------- /docs/cli/ipsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/ipsec.rst -------------------------------------------------------------------------------- /docs/cli/licenses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/licenses.rst -------------------------------------------------------------------------------- /docs/cli/loadbal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/loadbal.rst -------------------------------------------------------------------------------- /docs/cli/nas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/nas.rst -------------------------------------------------------------------------------- /docs/cli/object_storage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/object_storage.rst -------------------------------------------------------------------------------- /docs/cli/ordering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/ordering.rst -------------------------------------------------------------------------------- /docs/cli/reports.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/reports.rst -------------------------------------------------------------------------------- /docs/cli/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/security.rst -------------------------------------------------------------------------------- /docs/cli/security_groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/security_groups.rst -------------------------------------------------------------------------------- /docs/cli/subnet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/subnet.rst -------------------------------------------------------------------------------- /docs/cli/tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/tags.rst -------------------------------------------------------------------------------- /docs/cli/tickets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/tickets.rst -------------------------------------------------------------------------------- /docs/cli/users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/users.rst -------------------------------------------------------------------------------- /docs/cli/vlan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/vlan.rst -------------------------------------------------------------------------------- /docs/cli/vs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/vs.rst -------------------------------------------------------------------------------- /docs/cli/vs/placement_group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/vs/placement_group.rst -------------------------------------------------------------------------------- /docs/cli/vs/reserved_capacity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli/vs/reserved_capacity.rst -------------------------------------------------------------------------------- /docs/cli_directory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/cli_directory.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config_file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/config_file.rst -------------------------------------------------------------------------------- /docs/dev/SoftLayer-Python.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/dev/SoftLayer-Python.drawio -------------------------------------------------------------------------------- /docs/dev/cla-corporate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/dev/cla-corporate.md -------------------------------------------------------------------------------- /docs/dev/cla-individual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/dev/cla-individual.md -------------------------------------------------------------------------------- /docs/dev/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/dev/cli.rst -------------------------------------------------------------------------------- /docs/dev/example_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/dev/example_module.rst -------------------------------------------------------------------------------- /docs/dev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/dev/index.rst -------------------------------------------------------------------------------- /docs/images/SoftLayer-Python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/images/SoftLayer-Python.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/fabfile.py -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/output.txt -------------------------------------------------------------------------------- /pkg/softlayer-python.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/pkg/softlayer-python.spec -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/setup.py -------------------------------------------------------------------------------- /slcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/slcli -------------------------------------------------------------------------------- /snap/local/slcli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/snap/local/slcli.png -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /tests/CLI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/CLI/core_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/core_tests.py -------------------------------------------------------------------------------- /tests/CLI/custom_types_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/custom_types_tests.py -------------------------------------------------------------------------------- /tests/CLI/environment_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/environment_tests.py -------------------------------------------------------------------------------- /tests/CLI/formatting_table_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/formatting_table_tests.py -------------------------------------------------------------------------------- /tests/CLI/helper_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/helper_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/CLI/modules/account_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/account_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/bandwidth_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/bandwidth_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/block_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/block_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/call_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/call_api_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/config_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/config_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/dedicatedhost_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/dedicatedhost_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/dns_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/dns_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/email_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/email_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/event_log_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/event_log_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/file_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/file_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/firewall_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/firewall_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/globalip_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/globalip_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/hardware/hardware_basic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/hardware/hardware_basic_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/hardware/hardware_firmware_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/hardware/hardware_firmware_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/hardware/hardware_list_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/hardware/hardware_list_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/hardware/hardware_vlan_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/hardware/hardware_vlan_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/image_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/image_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/licenses_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/licenses_test.py -------------------------------------------------------------------------------- /tests/CLI/modules/loadbal_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/loadbal_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/nas_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/nas_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/object_storage_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/object_storage_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/order_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/order_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/report_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/report_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/search_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/search_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/security_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/security_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/securitygroup_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/securitygroup_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/sshkey_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/sshkey_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/ssl_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/ssl_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/subnet_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/subnet_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/summary_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/summary_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/tag_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/tag_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/ticket_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/ticket_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/user_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/user_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/vlan_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/vlan_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/vs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/CLI/modules/vs/vs_capacity_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/vs/vs_capacity_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/vs/vs_create_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/vs/vs_create_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/vs/vs_placement_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/vs/vs_placement_tests.py -------------------------------------------------------------------------------- /tests/CLI/modules/vs/vs_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/CLI/modules/vs/vs_tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/api_tests.py -------------------------------------------------------------------------------- /tests/auth_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/auth_tests.py -------------------------------------------------------------------------------- /tests/basic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/basic_tests.py -------------------------------------------------------------------------------- /tests/config_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/config_tests.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/decoration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/decoration_tests.py -------------------------------------------------------------------------------- /tests/functional_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/functional_tests.py -------------------------------------------------------------------------------- /tests/managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/managers/account_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/account_tests.py -------------------------------------------------------------------------------- /tests/managers/bandwidth_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/bandwidth_tests.py -------------------------------------------------------------------------------- /tests/managers/block_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/block_tests.py -------------------------------------------------------------------------------- /tests/managers/dedicated_host_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/dedicated_host_tests.py -------------------------------------------------------------------------------- /tests/managers/dns_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/dns_tests.py -------------------------------------------------------------------------------- /tests/managers/email_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/email_tests.py -------------------------------------------------------------------------------- /tests/managers/event_log_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/event_log_tests.py -------------------------------------------------------------------------------- /tests/managers/file_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/file_tests.py -------------------------------------------------------------------------------- /tests/managers/firewall_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/firewall_tests.py -------------------------------------------------------------------------------- /tests/managers/hardware_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/hardware_tests.py -------------------------------------------------------------------------------- /tests/managers/image_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/image_tests.py -------------------------------------------------------------------------------- /tests/managers/loadbal_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/loadbal_tests.py -------------------------------------------------------------------------------- /tests/managers/metadata_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/metadata_tests.py -------------------------------------------------------------------------------- /tests/managers/network_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/network_tests.py -------------------------------------------------------------------------------- /tests/managers/object_storage_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/object_storage_tests.py -------------------------------------------------------------------------------- /tests/managers/ordering_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/ordering_tests.py -------------------------------------------------------------------------------- /tests/managers/search_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/search_tests.py -------------------------------------------------------------------------------- /tests/managers/sshkey_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/sshkey_tests.py -------------------------------------------------------------------------------- /tests/managers/ssl_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/ssl_tests.py -------------------------------------------------------------------------------- /tests/managers/storage_generic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/storage_generic_tests.py -------------------------------------------------------------------------------- /tests/managers/storage_utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/storage_utils_tests.py -------------------------------------------------------------------------------- /tests/managers/tag_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/tag_tests.py -------------------------------------------------------------------------------- /tests/managers/ticket_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/ticket_tests.py -------------------------------------------------------------------------------- /tests/managers/user_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/user_tests.py -------------------------------------------------------------------------------- /tests/managers/vs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/managers/vs/vs_capacity_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/vs/vs_capacity_tests.py -------------------------------------------------------------------------------- /tests/managers/vs/vs_order_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/vs/vs_order_tests.py -------------------------------------------------------------------------------- /tests/managers/vs/vs_placement_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/vs/vs_placement_tests.py -------------------------------------------------------------------------------- /tests/managers/vs/vs_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/vs/vs_tests.py -------------------------------------------------------------------------------- /tests/managers/vs/vs_waiting_for_ready_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/managers/vs/vs_waiting_for_ready_tests.py -------------------------------------------------------------------------------- /tests/resources/attachment_upload: -------------------------------------------------------------------------------- 1 | ticket attached data -------------------------------------------------------------------------------- /tests/transports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transports/debug_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/transports/debug_tests.py -------------------------------------------------------------------------------- /tests/transports/rest_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/transports/rest_tests.py -------------------------------------------------------------------------------- /tests/transports/soap_tests.py.unstable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/transports/soap_tests.py.unstable -------------------------------------------------------------------------------- /tests/transports/transport_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/transports/transport_tests.py -------------------------------------------------------------------------------- /tests/transports/xmlrpc_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/transports/xmlrpc_tests.py -------------------------------------------------------------------------------- /tests/utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tests/utils_tests.py -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tools/requirements.txt -------------------------------------------------------------------------------- /tools/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tools/test-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softlayer/softlayer-python/HEAD/tox.ini --------------------------------------------------------------------------------