class OneviewSDK::ImageStreamer::API600::DeploymentPlan

Deployment Plan resource implementation for Image Streamer

Public Instance Methods

get_osdp() click to toggle source

Retrieves the Deployment Plan details as per the selected attributes. @return [Hash] The OS Deployment Plan.

# File lib/oneview-sdk/image-streamer/resource/api600/deployment_plan.rb, line 22
def get_osdp
  ensure_client && ensure_uri
  path = "#{BASE_URI}/#{@data['uri'].split('/').last}/osdp/"
  response = @client.rest_get(path, { 'Content-Type' => 'none' }, @api_version)
  @client.response_handler(response)
end