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
303 304 305 306 307 308 |
# File 'lib/azure/cloud_service_management/cloud_service_management_service.rb', line 303 def get_cloud_service_properties(name) request_path = "/services/hostedservices/#{name}?embed-detail=true" request = ManagementHttpRequest.new(:get, request_path) response = request.call Serialization.cloud_services_from_xml(response).first end |