Class: OneviewSDK::ImageStreamer::API300::DeploymentPlan

Inherits:
Resource show all
Defined in:
lib/oneview-sdk/image-streamer/resource/api300/deployment_plan.rb

Overview

Deployment Plan resource implementation for Image Streamer

Constant Summary collapse

BASE_URI =
'/rest/deployment-plans'.freeze

Constants inherited from Resource

Resource::UNIQUE_IDENTIFIERS

Instance Attribute Summary

Attributes inherited from Resource

#api_version, #client, #data, #logger

Instance Method Summary collapse

Methods inherited from Resource

#==, #[], #[]=, build_query, #create, #create!, #delete, #each, #eql?, #exists?, find_by, from_file, get_all, #like?, #refresh, #retrieve!, schema, #schema, #set, #set_all, #to_file, #update

Constructor Details

#initialize(client, params = {}, api_ver = nil) ⇒ DeploymentPlan

Create a resource object, associate it with a client, and set its properties.

Parameters:

  • client (OneviewSDK::ImageStreamer::Client)

    The client object for the Image Streamer appliance

  • params (Hash) (defaults to: {})

    The options for this resource (key-value pairs)

  • api_ver (Integer) (defaults to: nil)

    The api version to use when interracting with this resource.



25
26
27
28
29
# File 'lib/oneview-sdk/image-streamer/resource/api300/deployment_plan.rb', line 25

def initialize(client, params = {}, api_ver = nil)
  super
  # Default values:
  @data['type'] ||= 'OEDeploymentPlan'
end