Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ndk-sshx-go / opt / sshx / yang / sshx.yang
Size: Mime:
module sshx {
  yang-version 1.1;
  namespace "urn:srlinux.dev:ndk:sshx";
  prefix ndk-sshx;

  import srl_nokia-common {
    prefix srl-comm;
  }

  description
    "sshx YANG module";

  revision 2024-10-04 {
    description
      "initial release";
  }

  container sshx {
    leaf admin-state {
      type srl-comm:admin-state;
      default "disable";
      description
        "Globally enable or disable the SSHX client

         Enabling the SSHX client will start the sshx binary and update the url value.";
    }
    leaf shell {
      type enumeration {
        enum cli;
        enum bash;
      }
      description
        "Specifies the shell to use for the SSHX connection";
      default "cli";
    }
    leaf url {
      description
        "URL of the SSHX.io service";
      type string;
      config false;
    }
  }
}