junoser 0.2.11 → 0.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 681932944528ce0c17ed6a01d9630eccc3487353
4
- data.tar.gz: b93ab704fafd87072e69b836131b48a892e584d7
3
+ metadata.gz: 871cb07ac9b1610894a47cf834ecb0009d19225c
4
+ data.tar.gz: 48396fd866ca9bb636ba8fb84ef57a3867c47592
5
5
  SHA512:
6
- metadata.gz: 1a9be3d00d639ae70468c6fefcf8d7f9d24aa4e1cb45e2203611bf4e1bc13d4cc76e55c0ad12f5e23d1618e5830da0a1497e9c3120117525fc15c32327a63c4c
7
- data.tar.gz: 43bf75c835a850e9fcdc0bac537aeaa293d8d45450ee7bd5a0a5b94adf201a6c8a6d8b7e70c65f7dec1b885addfa404d6416ca6329997d079f0e855537b9f712
6
+ metadata.gz: 1d9a2c8cd9d8ff398bdafb35a4ea0b3bd6a329e2a9329482238ae8a19dcae01d25bfff8d2fece76f6385430dfc355d1c6c436578a324bde653d49335490ff2d8
7
+ data.tar.gz: bf8c5d49d2d7f5efdcf77e07cbe1122c2bc91f39cc0857e309a8005c49e0bfab08a7ae8e8c9e8cd007f79a8853f3985e803178f94489ab293a8cd88d74e48f7e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.2.12 / 2017-10-06
2
+
3
+ * Newly supported syntax
4
+ * class-of-service shared-buffer
5
+
1
6
  ## 0.2.11 / 2017-09-07
2
7
 
3
8
  * Newly supported syntax
@@ -11814,7 +11814,26 @@ rule(:juniper_class_of_service_options) do
11814
11814
  ),
11815
11815
  "copy-plp-all",
11816
11816
  "tri-color",
11817
- "shared-buffer".as(:oneline),
11817
+ "shared-buffer" (
11818
+ c(
11819
+ "egress" (
11820
+ c(
11821
+ "buffer-partition" ("lossless" | "lossy" | "multicast") (
11822
+ "percent" arg
11823
+ ),
11824
+ "percent" arg
11825
+ )
11826
+ ),
11827
+ "ingress" (
11828
+ c(
11829
+ "buffer-partition" ("lossless-headroom" | "lossless" | "lossy") (
11830
+ "percent" arg
11831
+ ),
11832
+ "percent" arg
11833
+ )
11834
+ )
11835
+ )
11836
+ ),
11818
11837
  "forwarding-classes" (
11819
11838
  c(
11820
11839
  "class".as(:oneline),
@@ -11854,7 +11854,26 @@ module Junoser
11854
11854
  ),
11855
11855
  str("copy-plp-all"),
11856
11856
  str("tri-color"),
11857
- str("shared-buffer").as(:oneline),
11857
+ b(str("shared-buffer"),
11858
+ c(
11859
+ b(str("egress"),
11860
+ c(
11861
+ a(str("buffer-partition"), str("lossless") | str("lossy") | str("multicast"),
11862
+ a(str("percent"), arg)
11863
+ ),
11864
+ a(str("percent"), arg)
11865
+ )
11866
+ ),
11867
+ b(str("ingress"),
11868
+ c(
11869
+ a(str("buffer-partition"), str("lossless-headroom") | str("lossless") | str("lossy"),
11870
+ a(str("percent"), arg)
11871
+ ),
11872
+ a(str("percent"), arg)
11873
+ )
11874
+ )
11875
+ )
11876
+ ),
11858
11877
  b(str("forwarding-classes"),
11859
11878
  c(
11860
11879
  str("class").as(:oneline),
@@ -1,3 +1,3 @@
1
1
  module Junoser
2
- VERSION = "0.2.11"
2
+ VERSION = "0.2.12"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: junoser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.11
4
+ version: 0.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shintaro Kojima
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-07 00:00:00.000000000 Z
11
+ date: 2017-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parslet