Commit 121f4c58 authored by yunanan's avatar yunanan
Browse files

Update sliceNrm.yaml

parent a3f499ef
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -561,9 +561,15 @@ components:
        - $ref: 'comDefs.yaml#/components/schemas/Ipv4Addr'
        - $ref: 'comDefs.yaml#/components/schemas/Ipv6Addr'
    
    Ipv4Mask:
      type: string
      pattern: '^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$'
      example: '198.51.0.0/16'
      description: String identifying a IPv4 address mask formatted in the "dotted decimal" notation as defined in RFC 1166.

    IpSubnetmask:
      oneof:
        - $ref: 'comDefs.yaml#/components/schemas/Ipv4Mask'
        - $ref: '#/components/schemas/Ipv4Mask'
        - $ref: 'comDefs.yaml#/components/schemas/Ipv6Prefix'

    LogicInterfaceInfo: