2022-04-25 12:26:05 -05:00

27 lines
581 B
Ruby

require "google/protobuf/well_known_types"
module VagrantPlugins
module CommandServe
module Client
class Host
prepend Util::ClientSetup
prepend Util::HasLogger
include CapabilityPlatform
include Util::HasSeeds::Client
# @return [<String>] parents
def parents
logger.debug("getting parents")
req = SDK::FuncSpec::Args.new(
args: []
)
res = client.parents(req)
logger.debug("got parents #{res}")
res.parents
end
end
end
end
end