Method: Azure::CloudServiceManagement::CloudServiceManagementService#list_cloud_services
- Defined in:
- lib/azure/cloud_service_management/cloud_service_management_service.rb
#list_cloud_services ⇒ Object
Public: Gets a list of hosted services available under the current subscription.
Returns an array of Azure::CloudServiceManagement::CloudService objects
63 64 65 66 67 68 |
# File 'lib/azure/cloud_service_management/cloud_service_management_service.rb', line 63 def list_cloud_services request_path = '/services/hostedservices' request = client.management_request(:get, request_path) response = request.call Serialization.cloud_services_from_xml(response) end |