module VagrantPlugins module CommandServe class Mappers # Build a machine client from a FuncSpec value class NamedCapabilityFromSpec < Mapper def initialize inputs = [].tap do |i| i << Input.new(type: SDK::FuncSpec::Value) { |arg| arg.type == "hashicorp.vagrant.sdk.Args.NamedCapability" && !arg&.value&.value.nil? } end super(inputs: inputs, output: Symbol, func: method(:converter)) end def converter(proto) SDK::Args::NamedCapability.load(proto.value.value). capability.to_s.to_sym end end end end end