puppet_x_eos_eapi 0.2.0

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.
Files changed (123) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +24 -0
  4. data/LICENSE.txt +202 -0
  5. data/README.md +87 -0
  6. data/Rakefile +1 -0
  7. data/lib/puppet_x/eos/autoload.rb +57 -0
  8. data/lib/puppet_x/eos/eapi.rb +259 -0
  9. data/lib/puppet_x/eos/module_base.rb +37 -0
  10. data/lib/puppet_x/eos/modules/daemon.rb +109 -0
  11. data/lib/puppet_x/eos/modules/extension.rb +167 -0
  12. data/lib/puppet_x/eos/modules/interface.rb +180 -0
  13. data/lib/puppet_x/eos/modules/ipinterface.rb +133 -0
  14. data/lib/puppet_x/eos/modules/mlag.rb +268 -0
  15. data/lib/puppet_x/eos/modules/ntp.rb +129 -0
  16. data/lib/puppet_x/eos/modules/ospf.rb +129 -0
  17. data/lib/puppet_x/eos/modules/portchannel.rb +277 -0
  18. data/lib/puppet_x/eos/modules/radius.rb +367 -0
  19. data/lib/puppet_x/eos/modules/snmp.rb +177 -0
  20. data/lib/puppet_x/eos/modules/switchport.rb +255 -0
  21. data/lib/puppet_x/eos/modules/system.rb +138 -0
  22. data/lib/puppet_x/eos/modules/tacacs.rb +302 -0
  23. data/lib/puppet_x/eos/modules/vlan.rb +179 -0
  24. data/lib/puppet_x/eos/modules/vxlan.rb +132 -0
  25. data/lib/puppet_x/eos/provider.rb +71 -0
  26. data/lib/puppet_x/eos/version.rb +41 -0
  27. data/lib/puppet_x/net_dev/eos_api.rb +1011 -0
  28. data/lib/puppet_x/net_dev/eos_api/common_methods.rb +27 -0
  29. data/lib/puppet_x/net_dev/eos_api/snmp_methods.rb +647 -0
  30. data/lib/puppet_x/net_dev/eos_api/version.rb +8 -0
  31. data/lib/puppet_x_eos_eapi.rb +4 -0
  32. data/puppet_x_eos_eapi.gemspec +31 -0
  33. data/spec/fixtures/fixture_all_portchannel_modes.json +8 -0
  34. data/spec/fixtures/fixture_all_portchannels_detailed.json +15 -0
  35. data/spec/fixtures/fixture_create_vlan_error.json +17 -0
  36. data/spec/fixtures/fixture_create_vlan_success.json +12 -0
  37. data/spec/fixtures/fixture_eapi_conf.yaml +4 -0
  38. data/spec/fixtures/fixture_enable_configure_vlan_3111_name_foo.json +14 -0
  39. data/spec/fixtures/fixture_enable_configure_vlan_foo_name_bar.json +19 -0
  40. data/spec/fixtures/fixture_get_snmp_communities_non_existent_acl.yaml +2 -0
  41. data/spec/fixtures/fixture_get_snmp_location_westeros.json +5 -0
  42. data/spec/fixtures/fixture_portchannel_min_links_1.json +8 -0
  43. data/spec/fixtures/fixture_portchannel_min_links_2.json +8 -0
  44. data/spec/fixtures/fixture_running_config.yaml +1 -0
  45. data/spec/fixtures/fixture_running_configuration_radius_configured.yaml +30 -0
  46. data/spec/fixtures/fixture_running_configuration_radius_default.yaml +29 -0
  47. data/spec/fixtures/fixture_running_configuration_radius_server_groups.yaml +38 -0
  48. data/spec/fixtures/fixture_running_configuration_radius_servers.yaml +34 -0
  49. data/spec/fixtures/fixture_running_configuration_tacacs_configured.yaml +38 -0
  50. data/spec/fixtures/fixture_running_configuration_tacacs_default.yaml +38 -0
  51. data/spec/fixtures/fixture_running_configuration_tacacs_groups.yaml +1 -0
  52. data/spec/fixtures/fixture_running_configuration_tacacs_groups_3.yaml +43 -0
  53. data/spec/fixtures/fixture_running_configuration_tacacs_servers.yaml +41 -0
  54. data/spec/fixtures/fixture_s4_show_etherchannel_detailed.json +9 -0
  55. data/spec/fixtures/fixture_show_flowcontrol_et1.json +5 -0
  56. data/spec/fixtures/fixture_show_interfaces.json +297 -0
  57. data/spec/fixtures/fixture_show_interfaces_switchport_format_text.json +9 -0
  58. data/spec/fixtures/fixture_show_port_channel_summary_2_lags.json +9 -0
  59. data/spec/fixtures/fixture_show_port_channel_summary_static.json +9 -0
  60. data/spec/fixtures/fixture_show_snmp_community.yaml +2 -0
  61. data/spec/fixtures/fixture_show_snmp_contact_empty.json +5 -0
  62. data/spec/fixtures/fixture_show_snmp_contact_name.json +5 -0
  63. data/spec/fixtures/fixture_show_snmp_disabled.json +5 -0
  64. data/spec/fixtures/fixture_show_snmp_enabled.json +5 -0
  65. data/spec/fixtures/fixture_show_snmp_host.yaml +2 -0
  66. data/spec/fixtures/fixture_show_snmp_host_duplicates.yaml +2 -0
  67. data/spec/fixtures/fixture_show_snmp_host_more_duplicates.yaml +2 -0
  68. data/spec/fixtures/fixture_show_snmp_location_empty.json +5 -0
  69. data/spec/fixtures/fixture_show_snmp_trap.yaml +2 -0
  70. data/spec/fixtures/fixture_show_snmp_user.yaml +2 -0
  71. data/spec/fixtures/fixture_show_snmp_user_raw_text.yaml +1 -0
  72. data/spec/fixtures/fixture_show_vlan.json +37 -0
  73. data/spec/fixtures/fixture_show_vlan_3110.json +18 -0
  74. data/spec/fixtures/fixture_show_vlan_4000.json +18 -0
  75. data/spec/fixtures/fixture_snmp_host_opts.yaml +11 -0
  76. data/spec/spec_helper.rb +21 -0
  77. data/spec/support/fixtures.rb +104 -0
  78. data/spec/unit/puppet_x/eos/eapi_spec.rb +182 -0
  79. data/spec/unit/puppet_x/eos/module_base_spec.rb +26 -0
  80. data/spec/unit/puppet_x/eos/modules/daemon_spec.rb +110 -0
  81. data/spec/unit/puppet_x/eos/modules/extension_spec.rb +197 -0
  82. data/spec/unit/puppet_x/eos/modules/fixtures/daemon_getall.json +3 -0
  83. data/spec/unit/puppet_x/eos/modules/fixtures/extension_getall.json +28 -0
  84. data/spec/unit/puppet_x/eos/modules/fixtures/hostname.json +6 -0
  85. data/spec/unit/puppet_x/eos/modules/fixtures/interface_getall.json +509 -0
  86. data/spec/unit/puppet_x/eos/modules/fixtures/ipinterface_getall.json +56 -0
  87. data/spec/unit/puppet_x/eos/modules/fixtures/mlag_get.json +21 -0
  88. data/spec/unit/puppet_x/eos/modules/fixtures/mlag_get_interfaces.json +18 -0
  89. data/spec/unit/puppet_x/eos/modules/fixtures/ntp_get.json +5 -0
  90. data/spec/unit/puppet_x/eos/modules/fixtures/ospf_instance_getall.json +58 -0
  91. data/spec/unit/puppet_x/eos/modules/fixtures/portchannel_get.json +54 -0
  92. data/spec/unit/puppet_x/eos/modules/fixtures/portchannel_getlacpmode.json +5 -0
  93. data/spec/unit/puppet_x/eos/modules/fixtures/portchannel_getmembers.json +5 -0
  94. data/spec/unit/puppet_x/eos/modules/fixtures/portchannel_po1.json +7 -0
  95. data/spec/unit/puppet_x/eos/modules/fixtures/snmp_get.json +14 -0
  96. data/spec/unit/puppet_x/eos/modules/fixtures/switchport_get.json +5 -0
  97. data/spec/unit/puppet_x/eos/modules/fixtures/switchport_get_et1.json +7 -0
  98. data/spec/unit/puppet_x/eos/modules/fixtures/switchport_getall_interfaces.json +230 -0
  99. data/spec/unit/puppet_x/eos/modules/fixtures/system_domain_list.json +5 -0
  100. data/spec/unit/puppet_x/eos/modules/fixtures/system_domain_name.json +5 -0
  101. data/spec/unit/puppet_x/eos/modules/fixtures/system_hostname.json +6 -0
  102. data/spec/unit/puppet_x/eos/modules/fixtures/system_name_servers.json +5 -0
  103. data/spec/unit/puppet_x/eos/modules/fixtures/vlan_getall.json +123 -0
  104. data/spec/unit/puppet_x/eos/modules/fixtures/vxlan_get.json +24 -0
  105. data/spec/unit/puppet_x/eos/modules/interface_spec.rb +281 -0
  106. data/spec/unit/puppet_x/eos/modules/ipinterface_spec.rb +143 -0
  107. data/spec/unit/puppet_x/eos/modules/mlag_spec.rb +349 -0
  108. data/spec/unit/puppet_x/eos/modules/ntp_spec.rb +136 -0
  109. data/spec/unit/puppet_x/eos/modules/ospf_spec.rb +143 -0
  110. data/spec/unit/puppet_x/eos/modules/portchannel_spec.rb +357 -0
  111. data/spec/unit/puppet_x/eos/modules/radius_spec.rb +509 -0
  112. data/spec/unit/puppet_x/eos/modules/snmp_spec.rb +202 -0
  113. data/spec/unit/puppet_x/eos/modules/switchport_get_et1.json +7 -0
  114. data/spec/unit/puppet_x/eos/modules/switchport_spec.rb +307 -0
  115. data/spec/unit/puppet_x/eos/modules/system_spec.rb +170 -0
  116. data/spec/unit/puppet_x/eos/modules/tacacs_spec.rb +448 -0
  117. data/spec/unit/puppet_x/eos/modules/vlan_spec.rb +244 -0
  118. data/spec/unit/puppet_x/eos/modules/vxlan_spec.rb +189 -0
  119. data/spec/unit/puppet_x/eos/provider_spec.rb +35 -0
  120. data/spec/unit/puppet_x/net_dev/eos_api/common_methods_spec.rb +34 -0
  121. data/spec/unit/puppet_x/net_dev/eos_api/snmp_methods_spec.rb +842 -0
  122. data/spec/unit/puppet_x/net_dev/eos_api_spec.rb +1000 -0
  123. metadata +369 -0
metadata ADDED
@@ -0,0 +1,369 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: puppet_x_eos_eapi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Jeff McCune
8
+ - Peter Sprygada
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-11-26 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: net_http_unix
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: bundler
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '1.3'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '1.3'
42
+ - !ruby/object:Gem::Dependency
43
+ name: yard
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: redcarpet
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: rake
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: 10.1.0
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: 10.1.0
84
+ - !ruby/object:Gem::Dependency
85
+ name: rspec
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: 3.0.0
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: 3.0.0
98
+ - !ruby/object:Gem::Dependency
99
+ name: rspec-mocks
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: 3.0.0
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: 3.0.0
112
+ - !ruby/object:Gem::Dependency
113
+ name: simplecov
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ description: Arista eAPI Ruby Library
127
+ email:
128
+ - jeff@puppetlabs.com
129
+ executables: []
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - ".gitignore"
134
+ - Gemfile
135
+ - LICENSE.txt
136
+ - README.md
137
+ - Rakefile
138
+ - lib/puppet_x/eos/autoload.rb
139
+ - lib/puppet_x/eos/eapi.rb
140
+ - lib/puppet_x/eos/module_base.rb
141
+ - lib/puppet_x/eos/modules/daemon.rb
142
+ - lib/puppet_x/eos/modules/extension.rb
143
+ - lib/puppet_x/eos/modules/interface.rb
144
+ - lib/puppet_x/eos/modules/ipinterface.rb
145
+ - lib/puppet_x/eos/modules/mlag.rb
146
+ - lib/puppet_x/eos/modules/ntp.rb
147
+ - lib/puppet_x/eos/modules/ospf.rb
148
+ - lib/puppet_x/eos/modules/portchannel.rb
149
+ - lib/puppet_x/eos/modules/radius.rb
150
+ - lib/puppet_x/eos/modules/snmp.rb
151
+ - lib/puppet_x/eos/modules/switchport.rb
152
+ - lib/puppet_x/eos/modules/system.rb
153
+ - lib/puppet_x/eos/modules/tacacs.rb
154
+ - lib/puppet_x/eos/modules/vlan.rb
155
+ - lib/puppet_x/eos/modules/vxlan.rb
156
+ - lib/puppet_x/eos/provider.rb
157
+ - lib/puppet_x/eos/version.rb
158
+ - lib/puppet_x/net_dev/eos_api.rb
159
+ - lib/puppet_x/net_dev/eos_api/common_methods.rb
160
+ - lib/puppet_x/net_dev/eos_api/snmp_methods.rb
161
+ - lib/puppet_x/net_dev/eos_api/version.rb
162
+ - lib/puppet_x_eos_eapi.rb
163
+ - puppet_x_eos_eapi.gemspec
164
+ - spec/fixtures/fixture_all_portchannel_modes.json
165
+ - spec/fixtures/fixture_all_portchannels_detailed.json
166
+ - spec/fixtures/fixture_create_vlan_error.json
167
+ - spec/fixtures/fixture_create_vlan_success.json
168
+ - spec/fixtures/fixture_eapi_conf.yaml
169
+ - spec/fixtures/fixture_enable_configure_vlan_3111_name_foo.json
170
+ - spec/fixtures/fixture_enable_configure_vlan_foo_name_bar.json
171
+ - spec/fixtures/fixture_get_snmp_communities_non_existent_acl.yaml
172
+ - spec/fixtures/fixture_get_snmp_location_westeros.json
173
+ - spec/fixtures/fixture_portchannel_min_links_1.json
174
+ - spec/fixtures/fixture_portchannel_min_links_2.json
175
+ - spec/fixtures/fixture_running_config.yaml
176
+ - spec/fixtures/fixture_running_configuration_radius_configured.yaml
177
+ - spec/fixtures/fixture_running_configuration_radius_default.yaml
178
+ - spec/fixtures/fixture_running_configuration_radius_server_groups.yaml
179
+ - spec/fixtures/fixture_running_configuration_radius_servers.yaml
180
+ - spec/fixtures/fixture_running_configuration_tacacs_configured.yaml
181
+ - spec/fixtures/fixture_running_configuration_tacacs_default.yaml
182
+ - spec/fixtures/fixture_running_configuration_tacacs_groups.yaml
183
+ - spec/fixtures/fixture_running_configuration_tacacs_groups_3.yaml
184
+ - spec/fixtures/fixture_running_configuration_tacacs_servers.yaml
185
+ - spec/fixtures/fixture_s4_show_etherchannel_detailed.json
186
+ - spec/fixtures/fixture_show_flowcontrol_et1.json
187
+ - spec/fixtures/fixture_show_interfaces.json
188
+ - spec/fixtures/fixture_show_interfaces_switchport_format_text.json
189
+ - spec/fixtures/fixture_show_port_channel_summary_2_lags.json
190
+ - spec/fixtures/fixture_show_port_channel_summary_static.json
191
+ - spec/fixtures/fixture_show_snmp_community.yaml
192
+ - spec/fixtures/fixture_show_snmp_contact_empty.json
193
+ - spec/fixtures/fixture_show_snmp_contact_name.json
194
+ - spec/fixtures/fixture_show_snmp_disabled.json
195
+ - spec/fixtures/fixture_show_snmp_enabled.json
196
+ - spec/fixtures/fixture_show_snmp_host.yaml
197
+ - spec/fixtures/fixture_show_snmp_host_duplicates.yaml
198
+ - spec/fixtures/fixture_show_snmp_host_more_duplicates.yaml
199
+ - spec/fixtures/fixture_show_snmp_location_empty.json
200
+ - spec/fixtures/fixture_show_snmp_trap.yaml
201
+ - spec/fixtures/fixture_show_snmp_user.yaml
202
+ - spec/fixtures/fixture_show_snmp_user_raw_text.yaml
203
+ - spec/fixtures/fixture_show_vlan.json
204
+ - spec/fixtures/fixture_show_vlan_3110.json
205
+ - spec/fixtures/fixture_show_vlan_4000.json
206
+ - spec/fixtures/fixture_snmp_host_opts.yaml
207
+ - spec/spec_helper.rb
208
+ - spec/support/fixtures.rb
209
+ - spec/unit/puppet_x/eos/eapi_spec.rb
210
+ - spec/unit/puppet_x/eos/module_base_spec.rb
211
+ - spec/unit/puppet_x/eos/modules/daemon_spec.rb
212
+ - spec/unit/puppet_x/eos/modules/extension_spec.rb
213
+ - spec/unit/puppet_x/eos/modules/fixtures/daemon_getall.json
214
+ - spec/unit/puppet_x/eos/modules/fixtures/extension_getall.json
215
+ - spec/unit/puppet_x/eos/modules/fixtures/hostname.json
216
+ - spec/unit/puppet_x/eos/modules/fixtures/interface_getall.json
217
+ - spec/unit/puppet_x/eos/modules/fixtures/ipinterface_getall.json
218
+ - spec/unit/puppet_x/eos/modules/fixtures/mlag_get.json
219
+ - spec/unit/puppet_x/eos/modules/fixtures/mlag_get_interfaces.json
220
+ - spec/unit/puppet_x/eos/modules/fixtures/ntp_get.json
221
+ - spec/unit/puppet_x/eos/modules/fixtures/ospf_instance_getall.json
222
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_get.json
223
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_getlacpmode.json
224
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_getmembers.json
225
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_po1.json
226
+ - spec/unit/puppet_x/eos/modules/fixtures/snmp_get.json
227
+ - spec/unit/puppet_x/eos/modules/fixtures/switchport_get.json
228
+ - spec/unit/puppet_x/eos/modules/fixtures/switchport_get_et1.json
229
+ - spec/unit/puppet_x/eos/modules/fixtures/switchport_getall_interfaces.json
230
+ - spec/unit/puppet_x/eos/modules/fixtures/system_domain_list.json
231
+ - spec/unit/puppet_x/eos/modules/fixtures/system_domain_name.json
232
+ - spec/unit/puppet_x/eos/modules/fixtures/system_hostname.json
233
+ - spec/unit/puppet_x/eos/modules/fixtures/system_name_servers.json
234
+ - spec/unit/puppet_x/eos/modules/fixtures/vlan_getall.json
235
+ - spec/unit/puppet_x/eos/modules/fixtures/vxlan_get.json
236
+ - spec/unit/puppet_x/eos/modules/interface_spec.rb
237
+ - spec/unit/puppet_x/eos/modules/ipinterface_spec.rb
238
+ - spec/unit/puppet_x/eos/modules/mlag_spec.rb
239
+ - spec/unit/puppet_x/eos/modules/ntp_spec.rb
240
+ - spec/unit/puppet_x/eos/modules/ospf_spec.rb
241
+ - spec/unit/puppet_x/eos/modules/portchannel_spec.rb
242
+ - spec/unit/puppet_x/eos/modules/radius_spec.rb
243
+ - spec/unit/puppet_x/eos/modules/snmp_spec.rb
244
+ - spec/unit/puppet_x/eos/modules/switchport_get_et1.json
245
+ - spec/unit/puppet_x/eos/modules/switchport_spec.rb
246
+ - spec/unit/puppet_x/eos/modules/system_spec.rb
247
+ - spec/unit/puppet_x/eos/modules/tacacs_spec.rb
248
+ - spec/unit/puppet_x/eos/modules/vlan_spec.rb
249
+ - spec/unit/puppet_x/eos/modules/vxlan_spec.rb
250
+ - spec/unit/puppet_x/eos/provider_spec.rb
251
+ - spec/unit/puppet_x/net_dev/eos_api/common_methods_spec.rb
252
+ - spec/unit/puppet_x/net_dev/eos_api/snmp_methods_spec.rb
253
+ - spec/unit/puppet_x/net_dev/eos_api_spec.rb
254
+ homepage: https://github.com/arista-eosplus/puppet_x_eos_eapi
255
+ licenses:
256
+ - Apache 2.0
257
+ metadata: {}
258
+ post_install_message:
259
+ rdoc_options: []
260
+ require_paths:
261
+ - lib
262
+ required_ruby_version: !ruby/object:Gem::Requirement
263
+ requirements:
264
+ - - ">="
265
+ - !ruby/object:Gem::Version
266
+ version: '0'
267
+ required_rubygems_version: !ruby/object:Gem::Requirement
268
+ requirements:
269
+ - - ">="
270
+ - !ruby/object:Gem::Version
271
+ version: '0'
272
+ requirements: []
273
+ rubyforge_project:
274
+ rubygems_version: 2.2.2
275
+ signing_key:
276
+ specification_version: 4
277
+ summary: This Gem library provides a Ruby interface to the Arista EOS REST API
278
+ test_files:
279
+ - spec/fixtures/fixture_all_portchannel_modes.json
280
+ - spec/fixtures/fixture_all_portchannels_detailed.json
281
+ - spec/fixtures/fixture_create_vlan_error.json
282
+ - spec/fixtures/fixture_create_vlan_success.json
283
+ - spec/fixtures/fixture_eapi_conf.yaml
284
+ - spec/fixtures/fixture_enable_configure_vlan_3111_name_foo.json
285
+ - spec/fixtures/fixture_enable_configure_vlan_foo_name_bar.json
286
+ - spec/fixtures/fixture_get_snmp_communities_non_existent_acl.yaml
287
+ - spec/fixtures/fixture_get_snmp_location_westeros.json
288
+ - spec/fixtures/fixture_portchannel_min_links_1.json
289
+ - spec/fixtures/fixture_portchannel_min_links_2.json
290
+ - spec/fixtures/fixture_running_config.yaml
291
+ - spec/fixtures/fixture_running_configuration_radius_configured.yaml
292
+ - spec/fixtures/fixture_running_configuration_radius_default.yaml
293
+ - spec/fixtures/fixture_running_configuration_radius_server_groups.yaml
294
+ - spec/fixtures/fixture_running_configuration_radius_servers.yaml
295
+ - spec/fixtures/fixture_running_configuration_tacacs_configured.yaml
296
+ - spec/fixtures/fixture_running_configuration_tacacs_default.yaml
297
+ - spec/fixtures/fixture_running_configuration_tacacs_groups.yaml
298
+ - spec/fixtures/fixture_running_configuration_tacacs_groups_3.yaml
299
+ - spec/fixtures/fixture_running_configuration_tacacs_servers.yaml
300
+ - spec/fixtures/fixture_s4_show_etherchannel_detailed.json
301
+ - spec/fixtures/fixture_show_flowcontrol_et1.json
302
+ - spec/fixtures/fixture_show_interfaces.json
303
+ - spec/fixtures/fixture_show_interfaces_switchport_format_text.json
304
+ - spec/fixtures/fixture_show_port_channel_summary_2_lags.json
305
+ - spec/fixtures/fixture_show_port_channel_summary_static.json
306
+ - spec/fixtures/fixture_show_snmp_community.yaml
307
+ - spec/fixtures/fixture_show_snmp_contact_empty.json
308
+ - spec/fixtures/fixture_show_snmp_contact_name.json
309
+ - spec/fixtures/fixture_show_snmp_disabled.json
310
+ - spec/fixtures/fixture_show_snmp_enabled.json
311
+ - spec/fixtures/fixture_show_snmp_host.yaml
312
+ - spec/fixtures/fixture_show_snmp_host_duplicates.yaml
313
+ - spec/fixtures/fixture_show_snmp_host_more_duplicates.yaml
314
+ - spec/fixtures/fixture_show_snmp_location_empty.json
315
+ - spec/fixtures/fixture_show_snmp_trap.yaml
316
+ - spec/fixtures/fixture_show_snmp_user.yaml
317
+ - spec/fixtures/fixture_show_snmp_user_raw_text.yaml
318
+ - spec/fixtures/fixture_show_vlan.json
319
+ - spec/fixtures/fixture_show_vlan_3110.json
320
+ - spec/fixtures/fixture_show_vlan_4000.json
321
+ - spec/fixtures/fixture_snmp_host_opts.yaml
322
+ - spec/spec_helper.rb
323
+ - spec/support/fixtures.rb
324
+ - spec/unit/puppet_x/eos/eapi_spec.rb
325
+ - spec/unit/puppet_x/eos/module_base_spec.rb
326
+ - spec/unit/puppet_x/eos/modules/daemon_spec.rb
327
+ - spec/unit/puppet_x/eos/modules/extension_spec.rb
328
+ - spec/unit/puppet_x/eos/modules/fixtures/daemon_getall.json
329
+ - spec/unit/puppet_x/eos/modules/fixtures/extension_getall.json
330
+ - spec/unit/puppet_x/eos/modules/fixtures/hostname.json
331
+ - spec/unit/puppet_x/eos/modules/fixtures/interface_getall.json
332
+ - spec/unit/puppet_x/eos/modules/fixtures/ipinterface_getall.json
333
+ - spec/unit/puppet_x/eos/modules/fixtures/mlag_get.json
334
+ - spec/unit/puppet_x/eos/modules/fixtures/mlag_get_interfaces.json
335
+ - spec/unit/puppet_x/eos/modules/fixtures/ntp_get.json
336
+ - spec/unit/puppet_x/eos/modules/fixtures/ospf_instance_getall.json
337
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_get.json
338
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_getlacpmode.json
339
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_getmembers.json
340
+ - spec/unit/puppet_x/eos/modules/fixtures/portchannel_po1.json
341
+ - spec/unit/puppet_x/eos/modules/fixtures/snmp_get.json
342
+ - spec/unit/puppet_x/eos/modules/fixtures/switchport_get.json
343
+ - spec/unit/puppet_x/eos/modules/fixtures/switchport_get_et1.json
344
+ - spec/unit/puppet_x/eos/modules/fixtures/switchport_getall_interfaces.json
345
+ - spec/unit/puppet_x/eos/modules/fixtures/system_domain_list.json
346
+ - spec/unit/puppet_x/eos/modules/fixtures/system_domain_name.json
347
+ - spec/unit/puppet_x/eos/modules/fixtures/system_hostname.json
348
+ - spec/unit/puppet_x/eos/modules/fixtures/system_name_servers.json
349
+ - spec/unit/puppet_x/eos/modules/fixtures/vlan_getall.json
350
+ - spec/unit/puppet_x/eos/modules/fixtures/vxlan_get.json
351
+ - spec/unit/puppet_x/eos/modules/interface_spec.rb
352
+ - spec/unit/puppet_x/eos/modules/ipinterface_spec.rb
353
+ - spec/unit/puppet_x/eos/modules/mlag_spec.rb
354
+ - spec/unit/puppet_x/eos/modules/ntp_spec.rb
355
+ - spec/unit/puppet_x/eos/modules/ospf_spec.rb
356
+ - spec/unit/puppet_x/eos/modules/portchannel_spec.rb
357
+ - spec/unit/puppet_x/eos/modules/radius_spec.rb
358
+ - spec/unit/puppet_x/eos/modules/snmp_spec.rb
359
+ - spec/unit/puppet_x/eos/modules/switchport_get_et1.json
360
+ - spec/unit/puppet_x/eos/modules/switchport_spec.rb
361
+ - spec/unit/puppet_x/eos/modules/system_spec.rb
362
+ - spec/unit/puppet_x/eos/modules/tacacs_spec.rb
363
+ - spec/unit/puppet_x/eos/modules/vlan_spec.rb
364
+ - spec/unit/puppet_x/eos/modules/vxlan_spec.rb
365
+ - spec/unit/puppet_x/eos/provider_spec.rb
366
+ - spec/unit/puppet_x/net_dev/eos_api/common_methods_spec.rb
367
+ - spec/unit/puppet_x/net_dev/eos_api/snmp_methods_spec.rb
368
+ - spec/unit/puppet_x/net_dev/eos_api_spec.rb
369
+ has_rdoc: