我可以在没有驱动程序的情况下创建 cloudshell shell 吗?

Can I create cloudshell shell without driver?

我想用驱动程序构建一个质量云shell shell。 IE。只是一个没有 python 驱动程序的数据模型。 在与 shellfoundry 合作时我可以这样做吗?

是的,无论是否使用 ShellFoundry,您都可以在没有驱动程序的情况下创建 CloudShell Shell。

为了删除附加到 Shell 模型的驱动程序,打开位于 datamodel 下的 shellconfig.xml 文件 编辑目录。

然后从 ResourceTemplate XML 节点移除 Driver 属性:

<?xml version="1.0" encoding="utf-8"?>
<ShellsConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.qualisystems.com/ResourceManagement/ShellsConfigurationSchema.xsd">
<ResourceTemplates>
    <ResourceTemplate Name="ShellWithoutDriver" Model="ShellWithoutDriver">
        <Description></Description>
        <AutoLoad Enable="false">
            <Description>Description for autoload </Description>
        </AutoLoad>
        <Attributes>
            <Attribute Name="User" Value="" />
            <Attribute Name="Password" Value="" />
        </Attributes>
    </ResourceTemplate>    
</ResourceTemplates>
</ShellsConfiguration>