fujitsu-factory

used for the debugging of fujitsu. Copyright (c) 2015 Fujitsu Ltd. All rights reserved.

  • Version: 2015-10-13

    fujitsu-factory@2015-10-13


    
      module fujitsu-factory {
    
        yang-version 1;
    
        namespace
          "urn:fujitsu:params:xml:ns:yang:fujitsu-factory";
    
        prefix fujitsu-factory;
    
        organization "Fujitsu Ltd.";
    
        contact
          "Fujitsu Ltd.
         
         Address: 2801 Telecom Parkway
                  Richardson, Texas 75082
         
         Tel: +1-800-USE-FTAC (1-800-873-3822)
         Email: ftac@fnc.fujitsu.com
         Web: www.fujitsu.com/us/services/telecom";
    
        description
          "used for the debugging of fujitsu.
         
         Copyright (c) 2015 Fujitsu Ltd.
         All rights reserved. ";
    
        revision "2015-10-13" {
          description "Initial revision.";
        }
    
    
        typedef debugPortType {
          type enumeration {
            enum "enable" {
              value 0;
              description
                "Enable SSH Debug Port";
            }
            enum "disable" {
              value 1;
              description
                "Disable SSH Debug Port";
            }
          }
          description "Reset Types";
        }
    
        rpc debug-port {
          description "Enables SSH Debug Port";
          input {
            leaf status {
              type debugPortType;
              description
                " enable  means to true on the debug port";
            }
          }
    
          output {
            leaf status {
              type string {
                length "4..255";
              }
              description
                "response of the command";
            }
          }
        }  // rpc debug-port
    
        rpc debug-port-state {
          description "debug-port state";
          output {
            leaf port-status {
              type string {
                length "4..255";
              }
              description
                "response of the command";
            }
          }
        }  // rpc debug-port-state
      }  // module fujitsu-factory
    

© 2023 YumaWorks, Inc. All rights reserved.