junos-nfx-rpc-set

Junos RPC YANG module for set command(s)

  • Version: 2019-01-01

    junos-nfx-rpc-set@2019-01-01


    
      module junos-nfx-rpc-set {
    
        yang-version 1;
    
        namespace
          "http://yang.juniper.net/junos-nfx/rpc/set";
    
        prefix set;
    
        import junos-common-types {
          prefix jt;
          revision-date "2019-01-01";
        }
    
        organization "Juniper Networks, Inc.";
    
        contact "yang-support@juniper.net";
    
        description
          "Junos RPC YANG module for set command(s)";
    
        revision "2019-01-01" {
          description "Junos: 21.3R1.9";
        }
    
    
        rpc set-cli-screen-length {
          description
            "Set number of lines on screen";
          input {
            leaf length {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type int32 {
                  range "0 .. 10000";
                }
              }
              mandatory true;
              description
                "Number of lines except 1 in range";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-screen-length
    
        rpc set-cli-screen-width {
          description
            "Set number of characters on a line";
          input {
            leaf width {
              type union {
                type int32;
                type string {
                  pattern "<.*>|$.*";
                }
              }
              mandatory true;
              description "Number of characters";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-screen-width
    
        rpc set-cli-terminal {
          description "Set terminal type";
          input {
            leaf type {
              type enumeration {
                enum "ansi" {
                  value 0;
                  description
                    "ANSI-compatible terminal";
                }
                enum "vt100" {
                  value 1;
                  description
                    "VT100-compatible terminal";
                }
                enum "small-xterm" {
                  value 2;
                  description
                    "Small (24 line) xterm window";
                }
                enum "xterm" {
                  value 3;
                  description
                    "Large (65 line) xterm window";
                }
              }
              mandatory true;
              description "Terminal type";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-terminal
    
        rpc set-cli-complete-on-space {
          description
            "Set whether typing space completes current word";
          input {
            leaf on-off {
              type enumeration {
                enum "on" {
                  value 0;
                  description
                    "Typing space completes word";
                }
                enum "off" {
                  value 1;
                  description
                    "Typing space doesn't complete word";
                }
              }
              mandatory true;
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-complete-on-space
    
        rpc set-cli-prompt {
          description
            "Set CLI command prompt string";
          input {
            leaf cli-prompt {
              type string;
              mandatory true;
              description
                "CLI command prompt string";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-prompt
    
        rpc set-cli-idle-timeout {
          description
            "Set maximum idle time before login session ends";
          input {
            leaf timeout {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type int32 {
                  range "0 .. 100000";
                }
              }
              units "minutes";
              mandatory true;
              description "Maximum idle time";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-idle-timeout
    
        rpc set-cli-timestamp {
          description "Timestamp CLI output";
          input {
            leaf format {
              type string;
              default "%b %d %T";
              description
                "Timestamp format (default is '%b %d %T')";
            }
    
            leaf disable {
              type empty;
              description
                "Disable CLI timestamp";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-timestamp
    
        rpc set-working-directory {
          description "Set working directory";
          input {
            leaf directory {
              type string;
              mandatory true;
              description
                "Pathname of working directory";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-working-directory
    
        rpc set-cli-logical-router {
          description
            "Set default logical system";
          input {
            leaf logical-system {
              type string;
              mandatory true;
              description
                "Name of logical system";
            }
    
            leaf tenant {
              type string;
              description "Name of tenant";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-logical-router
    
        rpc set-tenant {
          description "Set default tenant";
          input {
            leaf tenant-name {
              type string;
              mandatory true;
              description "Name of tenant";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml cli;
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-tenant
    
        rpc set-cli-restart-on-upgrade {
          description
            "Set whether CLI prompts to restart after software upgrade";
          input {
            leaf on-off {
              type enumeration {
                enum "on" {
                  value 0;
                  description
                    "CLI prompts to restart";
                }
                enum "off" {
                  value 1;
                  description
                    "CLI doesn't prompt to restart";
                }
              }
              mandatory true;
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-cli-restart-on-upgrade
    
        rpc set-server-chassis {
          description
            "Set default server chassis";
          input {
            leaf server-name {
              type enumeration {
                enum "server0" {
                  value 0;
                  description "Server0";
                }
                enum "server1" {
                  value 1;
                  description "Server1";
                }
              }
              description
                "Server identifier of server chassis";
            }
    
            leaf disable {
              type empty;
              description
                "Disable server chassis";
            }
    
            leaf sync-from-other-server {
              type empty;
              description
                "Trigger configuration synchronization from other server";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml cli;
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-server-chassis
    
        rpc set-chassis-cluster {
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-chassis-cluster
    
        rpc set-chassis-cluster-enable {
          description "Set cluster identifier";
          input {
            leaf cluster-id {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type uint8;
              }
              mandatory true;
              description "Cluster identifier";
            }
    
            leaf node {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type int32 {
                  range "0 .. 1";
                }
              }
              mandatory true;
              description "Node identifier";
            }
    
            leaf reboot {
              type empty;
              description
                "Reboot the system after setting the identifiers";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-chassis-cluster-enable
    
        rpc set-chassis-cluster-control-port {
          description
            "Set cluster control port attributes";
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-chassis-cluster-control-port
    
        rpc set-chassis-cluster-control-port-speed {
          description "Speed mode";
          input {
            leaf speed_identifier {
              type enumeration {
                enum
                  "set-chassis-cluster-control-port-speed-10g" {
                  value 0;
                  description "Speed 10g";
                }
                enum
                  "set-chassis-cluster-control-port-speed-1g" {
                  value 1;
                  description "Speed 1g";
                }
              }
              mandatory true;
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-chassis-cluster-control-port-speed
    
        rpc set-chassis-cluster-disable {
          description
            "Disable the chassis cluster";
          input {
            leaf reboot {
              type empty;
              description
                "Reboot the system after disabling the cluster";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-chassis-cluster-disable
    
        rpc set-virtual-chassis-mode {
          description
            "Enable/disable virtual chassis mode";
          input {
            leaf disable {
              type enumeration {
                enum "disable" {
                  value 0;
                  description
                    "Disable virtual chassis mode";
                }
              }
            }
    
            leaf local {
              type empty;
              description
                "Apply to local RE only";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-virtual-chassis-mode
    
        rpc set-rps-network {
          description
            "Set RPS network parameters";
          input {
            leaf member {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type int32;
              }
              mandatory true;
              description
                "Member of virtual chassis configuration";
            }
    
            leaf ip-address {
              type jt:ipv4addr;
              description "RPS IP address";
            }
    
            leaf netmask {
              type jt:ipv4addr;
              description "RPS netmask";
            }
    
            leaf gateway {
              type jt:ipv4addr;
              description "RPS gateway IP";
            }
          }
    
          output {
            choice output_c {
              leaf output {
                type string;
              }
              anyxml rps-network-setting;
              anyxml multi-routing-engine-results;
            }  // choice output_c
          }
        }  // rpc set-rps-network
    
        grouping command-forwarding {
          choice chassis-selector {
            leaf all-chassis {
              type empty;
              description "All chassis";
            }
            leaf all-lcc {
              type empty;
              description "All LCC chassis";
            }
            leaf scc {
              type empty;
              description "SCC";
            }
            leaf sfc {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type uint32;
              }
              description "SFC";
            }
            leaf lcc {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type uint32;
              }
              description "Specific LCC";
            }
            leaf node {
              type string;
              description "Specific node";
            }
            leaf bsys {
              type empty;
              description "Base system";
            }
            leaf gnf {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type uint32 {
                  range "1 .. 10";
                }
              }
              description
                "Specific guest network function";
            }
            leaf all-gnfs {
              type empty;
              description
                "All guest network functions";
            }
            leaf all-system {
              type empty;
              description
                "All system (BSYS and GNFs)";
            }
            leaf server {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type uint32 {
                  range "0 .. 1";
                }
              }
              description "Specific server slot";
            }
            leaf all-servers {
              type empty;
              description "All servers";
            }
            leaf vnf {
              type string;
              description
                "Specific virtual-network-function";
            }
            leaf all-vnfs {
              type empty;
              description
                "All virtual-network-functions";
            }
          }  // choice chassis-selector
    
          choice re-selector {
            leaf re0 {
              type empty;
              description "RE0";
            }
            leaf re1 {
              type empty;
              description "RE1";
            }
            leaf routing-engine {
              type enumeration {
                enum "local" {
                  value 0;
                  description
                    "Local routing engine";
                }
                enum "other" {
                  value 1;
                  description
                    "Other routing engine";
                }
                enum "master" {
                  value 2;
                  description
                    "Master routing engine";
                }
                enum "backup" {
                  value 3;
                  description
                    "Backup routing engine";
                }
                enum "both" {
                  value 4;
                  description
                    "Both routing engines";
                }
              }
              description
                "Specific routing engine";
            }
          }  // choice re-selector
    
          choice lr-selector {
            leaf logical-system {
              type string;
              description
                "Name of logical system, or 'all'";
            }
          }  // choice lr-selector
    
          choice tenant-selector {
            leaf tenant {
              type string;
              description
                "Name of tenant, or 'all'";
            }
          }  // choice tenant-selector
    
          choice vc-selector {
            leaf local {
              type empty;
              description
                "Local virtual chassis member";
            }
            leaf all-members {
              type empty;
              description
                "All virtual chassis members";
            }
            leaf member {
              type union {
                type string {
                  pattern "<.*>|$.*";
                }
                type uint32;
              }
              description
                "Specific virtual chassis member";
            }
          }  // choice vc-selector
        }  // grouping command-forwarding
      }  // module junos-nfx-rpc-set
    

© 2023 YumaWorks, Inc. All rights reserved.