Class: OneviewSDK::API800::C7000::HypervisorClusterProfile

Inherits:
Resource
  • Object
show all
Defined in:
lib/oneview-sdk/resource/api800/c7000/hypervisor_cluster_profile.rb

Overview

Hypervisor Cluster profile resource implementation

Direct Known Subclasses

Synergy::HypervisorClusterProfile

Constant Summary collapse

BASE_URI =
'/rest/hypervisor-cluster-profiles'.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

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) ⇒ HypervisorClusterProfile

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.



25
26
27
28
29
# File 'lib/oneview-sdk/resource/api800/c7000/hypervisor_cluster_profile.rb', line 25

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

Instance Method Details

#compliance_previewObject

Gets the preview of manual and automatic updates required to make the cluster profile consistent with its template.



32
33
34
35
# File 'lib/oneview-sdk/resource/api800/c7000/hypervisor_cluster_profile.rb', line 32

def compliance_preview
  ensure_client && ensure_uri
  @client.response_handler(@client.rest_get(@data['uri'] + '/compliance-preview', {}, @api_version))
end