Method: Azure::CloudServiceManagement::CloudServiceManagementService#get_cloud_service_properties
- Defined in:
- lib/azure/cloud_service_management/cloud_service_management_service.rb
#get_cloud_service_properties(name) ⇒ Object
83 84 85 86 87 88 |
# File 'lib/azure/cloud_service_management/cloud_service_management_service.rb', line 83 def get_cloud_service_properties(name) request_path = "/services/hostedservices/#{name}?embed-detail=true" request = client.management_request(:get, request_path) response = request.call Serialization.cloud_services_from_xml(response).first end |