f5-icontrol 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0c35394edd17c078cd1738f0f6ce71d9685a973c
4
- data.tar.gz: 74f69ae09196b4b29c52c87d23cb05e95ce025bb
3
+ metadata.gz: 69b7a284147776e3e9c8d0af7f92bed2dfa4614f
4
+ data.tar.gz: d3dedbce1c543c2f9d2504c2cfdd2e3604f2ac6b
5
5
  SHA512:
6
- metadata.gz: ba7df76ca1ab3104d50f86f66812929eff78bee0c8b75cb9c7c5c94a568c35ede1dee8a3ed5e7199f0bddd5806a394f567567f353a4401fb63cfec3cee1ac24d
7
- data.tar.gz: d83fccc4834d2e030edf955df04c1d74fcf5827bd294a8593008df5e4a11633cedeca179f75efd23fd2b86226c628fdf13b1fe870412a06203b2749787e3263e
6
+ metadata.gz: a33dc65500231c8f02732e537ea3efa4a330536cd436baf644527cb61ad1436355a87ba51a4edc825b78159ce2c977af59d6c52a2f899992812c784b49b2deaf
7
+ data.tar.gz: 3367a52f896a392930835d62ed9b55a88a4b25fdcd0ae079ea75fa7000fed4ea51d0ec3a101b5f5122ed7c1b4bbfdc7f1dc66f20db7894fbbf9c0d16e569c3c8
@@ -1,5 +1,3 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.0
4
- - 2.0.0
5
- - 1.9.3
3
+ - 2.3.1
@@ -1,4 +1,6 @@
1
1
  # Changelog
2
+ ## 0.2.1
3
+ davidalpert - Add some enumerations to localLB
2
4
 
3
5
  ## 0.2.0
4
6
  Updating to latest WSDL, thanks fspijkerman
@@ -0,0 +1,31 @@
1
+ module F5
2
+ module Icontrol
3
+ module LocalLB
4
+ # https://devcentral.f5.com/wiki/iControl.LocalLB__AvailabilityStatus.ashx
5
+ # A list of possible values for an object's availability status.
6
+ module AvailabilityStatus
7
+ # Error scenario.
8
+ AVAILABILITY_STATUS_NONE = 0
9
+
10
+ # The object is available in some capacity.
11
+ AVAILABILITY_STATUS_GREEN = 1
12
+
13
+ # The object is not available at the current
14
+ # moment, but may become available again even
15
+ # without user intervention.
16
+ AVAILABILITY_STATUS_YELLOW = 2
17
+
18
+ # The object is not available, and will require
19
+ # user intervention to make this object available
20
+ # again.
21
+ AVAILABILITY_STATUS_RED = 3
22
+
23
+ # The object's availability status is unknown.
24
+ AVAILABILITY_STATUS_BLUE = 4
25
+
26
+ # The object's is unlicensed.
27
+ AVAILABILITY_STATUS_GRAY = 5
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,28 @@
1
+ module F5
2
+ module Icontrol
3
+ module LocalLB
4
+ # https://devcentral.f5.com/wiki/iControl.LocalLB__EnabledStatus.ashx
5
+ # A list of possible values for enabled status.
6
+ module EnabledStatus
7
+ # Error scenario.
8
+ ENABLED_STATUS_NONE = 0
9
+
10
+ # The object is active when in Green
11
+ # availability status. It may or may
12
+ # not be active when in Blue
13
+ # availability status.
14
+ ENABLED_STATUS_ENABLED = 1
15
+
16
+ # The object is inactive regardless
17
+ # of availability status.
18
+ ENABLED_STATUS_DISABLED = 2
19
+
20
+ # The object is inactive regardless of
21
+ # availability status because its parent
22
+ # has been disabled, but the object
23
+ # itself is still enabled.
24
+ ENABLED_STATUS_DISABLED_BY_PARENT = 3
25
+ end
26
+ end
27
+ end
28
+ end
@@ -1,5 +1,5 @@
1
1
  module F5
2
2
  module Icontrol
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: f5-icontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Walberg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-07 00:00:00.000000000 Z
11
+ date: 2017-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: savon
@@ -142,6 +142,8 @@ files:
142
142
  - lib/f5/cli/application.rb
143
143
  - lib/f5/icontrol.rb
144
144
  - lib/f5/icontrol/api.rb
145
+ - lib/f5/icontrol/locallb/availability_status.rb
146
+ - lib/f5/icontrol/locallb/enabled_status.rb
145
147
  - lib/f5/icontrol/version.rb
146
148
  - lib/wsdl/ASM.LoggingProfile.wsdl
147
149
  - lib/wsdl/ASM.ObjectParams.wsdl