class CIMI::Model::NetworkPort

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Public Class Methods

create(request_body, context, type) click to toggle source
# File lib/cimi/models/network_port.rb, line 46
def self.create(request_body, context, type)
  input = (type == :xml)? XmlSimple.xml_in(request_body, {"ForceArray"=>false, "NormaliseSpace"=>2}) : JSON.parse(request_body)
  if input["vspTemplate"]["href"] #template by reference
    vsp_config, network = get_by_reference(input, context)
  else
    if input["vspTemplate"]["vspConfig"]["href"] # configuration by reference
      vsp_config = CIMI::Model::VSPConfiguration.find(context.href_id(input["vspTemplate"]["vspConfig"]["href"],:vsp_configurations), context)
    else #configuration by value
      vsp_config = get_by_value(request_body, type)
    end
    network = CIMI::Model::Network.find(context.href_id(input["vspTemplate"]["network"]["href"], :networks), context)
  end
  params = {:vsp_config => vsp_config, :network => network, :name=>input["name"], :description=>input["description"], :env=>context}
  raise CIMI::Model::BadRequest.new("Bad request - missing required parameters. Client sent: #{request_body} which produced #{params.inspect}")  if params.has_value?(nil)
  context.driver.create_vsp(context.credentials, params)
end
delete!(id, context) click to toggle source
# File lib/cimi/models/network_port.rb, line 63
def self.delete!(id, context)
  context.driver.delete_vsp(context.credentials, id)
end
find(id, context) click to toggle source
# File lib/cimi/models/network_port.rb, line 38
def self.find(id, context)
  if id==:all
    context.driver.network_ports(context.credentials, {:env=>context})
  else
    context.driver.network_ports(context.credentials, {:id=>id, :env=>context})
  end
end

Public Instance Methods

perform(action, context, &block) click to toggle source
# File lib/cimi/models/network_port.rb, line 67
def perform(action, context, &block)
  begin
    if context.driver.send(:"#{action.name}_vsp", context.credentials, self.name)
      block.callback :success
    else
      raise "Operation #{action.name} failed to execute on the VSP #{self.name} "
    end
  rescue => e
    block.callback :failure, e.message
  end
end