class OneviewSDK::API2000::C7000::LogicalInterconnect

Logical interconnect resource implementation for API2000 C7000

Public Instance Methods

bulk_inconsistency_validate() click to toggle source

Validates the bulk update from group operation and gets the consolidated inconsistency report

# File lib/oneview-sdk/resource/api2000/c7000/logical_interconnect.rb, line 20
def bulk_inconsistency_validate
  raise IncompleteResource, 'Please retrieve the Logical Interconnect before trying to validate' unless @data['uri']
  options = {
    'logicalInterconnectUris' => @data['logicalInterconnectUris']
  }
  response = @client.rest_post("#{BASE_URI}/bulk-inconsistency-validation", { 'body' => options }, @api_version)
  body = @client.response_handler(response)
  set_all(body)
end