Class: OneviewSDK::ImageStreamer::API300::PlanScript
- Defined in:
- lib/oneview-sdk/image-streamer/resource/api300/plan_script.rb
Overview
Plan Script resource implementation for Image Streamer
Direct Known Subclasses
Constant Summary collapse
- BASE_URI =
'/rest/plan-scripts'.freeze
Constants inherited from Resource
Resource::DEFAULT_REQUEST_HEADER, Resource::UNIQUE_IDENTIFIERS
Instance Attribute Summary
Attributes inherited from Resource
#api_version, #client, #data, #logger
Instance Method Summary collapse
-
#initialize(client, params = {}, api_ver = nil) ⇒ PlanScript
constructor
Create a resource object, associate it with a client, and set its properties.
-
#retrieve_differences ⇒ Hash
Retrieves the modified contents of the selected Plan Script as per the selected attributes.
Methods inherited from Resource
#==, #[], #[]=, build_query, #create, #create!, #deep_merge!, #delete, #each, #eql?, #exists?, find_by, find_with_pagination, from_file, get_all, get_all_with_query, #like?, #refresh, #retrieve!, #schema, schema, #set, #set_all, #to_file, #update
Constructor Details
#initialize(client, params = {}, api_ver = nil) ⇒ PlanScript
Create a resource object, associate it with a client, and set its properties.
25 26 27 28 29 |
# File 'lib/oneview-sdk/image-streamer/resource/api300/plan_script.rb', line 25 def initialize(client, params = {}, api_ver = nil) super # Default values: @data['type'] ||= 'PlanScript' end |
Instance Method Details
#retrieve_differences ⇒ Hash
Retrieves the modified contents of the selected Plan Script as per the selected attributes.
33 34 35 36 37 38 |
# File 'lib/oneview-sdk/image-streamer/resource/api300/plan_script.rb', line 33 def retrieve_differences ensure_client && ensure_uri path = "#{BASE_URI}/differences/#{@data['uri'].split('/').last}" response = @client.rest_post(path, { 'Content-Type' => 'none' }, @api_version) @client.response_handler(response) end |