Class: OneviewSDK::API200::VolumeSnapshot

Inherits:
Resource show all
Defined in:
lib/oneview-sdk/resource/api200/volume_snapshot.rb

Overview

Volume snapshot resource implementation

Constant Summary collapse

BASE_URI =
nil

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

Methods inherited from Resource

#==, #[], #[]=, build_query, #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

Constructor Details

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

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

Parameters:

  • client (OneviewSDK::Client)

    The client object for the OneView 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.



24
25
26
27
28
# File 'lib/oneview-sdk/resource/api200/volume_snapshot.rb', line 24

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

Instance Method Details

#createObject

Method is not available

Raises:



32
33
34
# File 'lib/oneview-sdk/resource/api200/volume_snapshot.rb', line 32

def create(*)
  unavailable_method
end

#set_volume(volume) ⇒ Object

Sets the volume

Parameters:

  • volume (OneviewSDK::Volume)

    Volume



44
45
46
47
# File 'lib/oneview-sdk/resource/api200/volume_snapshot.rb', line 44

def set_volume(volume)
  volume.retrieve! unless volume['uri']
  @data['storageVolumeUri'] = volume['uri']
end

#updateObject

Method is not available

Raises:



38
39
40
# File 'lib/oneview-sdk/resource/api200/volume_snapshot.rb', line 38

def update(*)
  unavailable_method
end