f5-icontrol 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/f5/icontrol/locallb/client_ssl_certificate_mode.rb +18 -0
- data/lib/f5/icontrol/locallb/profile_context_type.rb +18 -0
- data/lib/f5/icontrol/locallb/profile_type.rb +87 -0
- data/lib/f5/icontrol/locallb/virtual_server/source_address_translation.rb +26 -0
- data/lib/f5/icontrol/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e72d390863e04fc0c84f1774c92c8c1cb4bc662f
|
4
|
+
data.tar.gz: 718fd83b630310319152660bfc34cbb9ea742388
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4907fe563918cc3084bf35c38e87730ac7548740d5d589cc56db9295b61ae5e7302964f112e4b960b8f2792e46c35a4d207bec84559f6b0035e3d74790bd3c9b
|
7
|
+
data.tar.gz: 10ba7e8be95924d8bcecc711cff9108e65317cbacf12ea033b22b0fba877c40ccc7dcffb89ff4dfed372eaa21887343eb3eb1a084e3c47d1e0633629f07a53e8
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module F5
|
2
|
+
module Icontrol
|
3
|
+
module LocalLB
|
4
|
+
# https://devcentral.f5.com/wiki/iControl.LocalLB__ProfileContextType.ashx
|
5
|
+
# A list of profile context types.
|
6
|
+
module ProfileContextType
|
7
|
+
# Profile applies to both client and server sides.
|
8
|
+
PROFILE_CONTEXT_TYPE_ALL = 0
|
9
|
+
|
10
|
+
# Profile applies to the client side only.
|
11
|
+
PROFILE_CONTEXT_TYPE_CLIENT = 1
|
12
|
+
|
13
|
+
# Profile applies to the server side only.
|
14
|
+
PROFILE_CONTEXT_TYPE_SERVER = 2
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module F5
|
2
|
+
module Icontrol
|
3
|
+
module LocalLB
|
4
|
+
# https://devcentral.f5.com/wiki/iControl.LocalLB__ProfileContextType.ashx
|
5
|
+
# A list of profile context types.
|
6
|
+
module ProfileContextType
|
7
|
+
# Profile applies to both client and server sides.
|
8
|
+
PROFILE_CONTEXT_TYPE_ALL = 0
|
9
|
+
|
10
|
+
# Profile applies to the client side only.
|
11
|
+
PROFILE_CONTEXT_TYPE_CLIENT = 1
|
12
|
+
|
13
|
+
# Profile applies to the server side only.
|
14
|
+
PROFILE_CONTEXT_TYPE_SERVER = 2
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
module F5
|
2
|
+
module Icontrol
|
3
|
+
module LocalLB
|
4
|
+
# https://devcentral.f5.com/wiki/iControl.LocalLB__ProfileType.ashx
|
5
|
+
# A list of profile types.
|
6
|
+
module ProfileType
|
7
|
+
# The TCP profile.
|
8
|
+
PROFILE_TYPE_TCP = 0
|
9
|
+
|
10
|
+
# The UDP profile.
|
11
|
+
PROFILE_TYPE_UDP = 1
|
12
|
+
|
13
|
+
# The FTP profile.
|
14
|
+
PROFILE_TYPE_FTP = 2
|
15
|
+
|
16
|
+
# The L4 translation profile.
|
17
|
+
PROFILE_TYPE_FAST_L4 = 3
|
18
|
+
|
19
|
+
# The HTTP profile.
|
20
|
+
PROFILE_TYPE_HTTP = 4
|
21
|
+
|
22
|
+
# The server-side SSL profile.
|
23
|
+
PROFILE_TYPE_SERVER_SSL = 5
|
24
|
+
|
25
|
+
# The client-side SSL profile.
|
26
|
+
PROFILE_TYPE_CLIENT_SSL = 6
|
27
|
+
|
28
|
+
# The authorization profile.
|
29
|
+
PROFILE_TYPE_AUTH = 7
|
30
|
+
|
31
|
+
# The persistence profile.
|
32
|
+
PROFILE_TYPE_PERSISTENCE = 8
|
33
|
+
|
34
|
+
# The connection pool profile.
|
35
|
+
PROFILE_TYPE_CONNECTION_POOL = 9
|
36
|
+
|
37
|
+
# The stream profile.
|
38
|
+
PROFILE_TYPE_STREAM = 10
|
39
|
+
|
40
|
+
# The XML profile.
|
41
|
+
PROFILE_TYPE_XML = 11
|
42
|
+
|
43
|
+
# The FastHTTP profile.
|
44
|
+
PROFILE_TYPE_FAST_HTTP = 12
|
45
|
+
|
46
|
+
# The IIOP profile.
|
47
|
+
PROFILE_TYPE_IIOP = 13
|
48
|
+
|
49
|
+
# The RTSP profile.
|
50
|
+
PROFILE_TYPE_RTSP = 14
|
51
|
+
|
52
|
+
# The STATISTICS profile.
|
53
|
+
PROFILE_TYPE_STATISTICS = 15
|
54
|
+
|
55
|
+
# The HTTP class profile.
|
56
|
+
PROFILE_TYPE_HTTPCLASS = 16
|
57
|
+
|
58
|
+
# The DNS profile.
|
59
|
+
PROFILE_TYPE_DNS = 17
|
60
|
+
|
61
|
+
# The SCTP profile.
|
62
|
+
PROFILE_TYPE_SCTP = 18
|
63
|
+
|
64
|
+
# A loosely-typed profile.
|
65
|
+
PROFILE_TYPE_INSTANCE = 19
|
66
|
+
|
67
|
+
# The SIP profile.
|
68
|
+
PROFILE_TYPE_SIPP = 20
|
69
|
+
|
70
|
+
# The HTTP Compression profile.
|
71
|
+
PROFILE_TYPE_HTTPCOMPRESSION = 21
|
72
|
+
|
73
|
+
# The Web Acceleration profile.
|
74
|
+
PROFILE_TYPE_WEBACCELERATION = 22
|
75
|
+
|
76
|
+
# Profile type is unknown (or is unsupported by iControl).
|
77
|
+
PROFILE_TYPE_UNKNOWN = 23
|
78
|
+
|
79
|
+
# The RADIUS profile.
|
80
|
+
PROFILE_TYPE_RADIUS = 24
|
81
|
+
|
82
|
+
# The Diameter profile.
|
83
|
+
PROFILE_TYPE_DIAMETER = 25
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module F5
|
2
|
+
module Icontrol
|
3
|
+
module LocalLB
|
4
|
+
module VirtualServer
|
5
|
+
# https://devcentral.f5.com/wiki/iControl.LocalLB__VirtualServer__SourceAddressTranslationType.ashx
|
6
|
+
# A list of source address translation types.
|
7
|
+
module
|
8
|
+
# Translation type unknown (or unsupported by iControl).
|
9
|
+
SRC_TRANS_UNKNOWN = 0
|
10
|
+
|
11
|
+
# No translation is being used.
|
12
|
+
SRC_TRANS_NONE = 1
|
13
|
+
|
14
|
+
# The translation uses self IP addresses.
|
15
|
+
SRC_TRANS_AUTOMAP = 2
|
16
|
+
|
17
|
+
# The translation uses a SNAT pool of translation addresses.
|
18
|
+
SRC_TRANS_SNATPOOL = 3
|
19
|
+
|
20
|
+
# The translation uses an LSN pool of translation addresses.
|
21
|
+
SRC_TRANS_LSNPOOL = 4
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
data/lib/f5/icontrol/version.rb
CHANGED
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.
|
4
|
+
version: 0.2.2
|
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-08-
|
11
|
+
date: 2017-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: savon
|
@@ -143,7 +143,11 @@ files:
|
|
143
143
|
- lib/f5/icontrol.rb
|
144
144
|
- lib/f5/icontrol/api.rb
|
145
145
|
- lib/f5/icontrol/locallb/availability_status.rb
|
146
|
+
- lib/f5/icontrol/locallb/client_ssl_certificate_mode.rb
|
146
147
|
- lib/f5/icontrol/locallb/enabled_status.rb
|
148
|
+
- lib/f5/icontrol/locallb/profile_context_type.rb
|
149
|
+
- lib/f5/icontrol/locallb/profile_type.rb
|
150
|
+
- lib/f5/icontrol/locallb/virtual_server/source_address_translation.rb
|
147
151
|
- lib/f5/icontrol/version.rb
|
148
152
|
- lib/wsdl/ASM.LoggingProfile.wsdl
|
149
153
|
- lib/wsdl/ASM.ObjectParams.wsdl
|
@@ -443,7 +447,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
443
447
|
version: '0'
|
444
448
|
requirements: []
|
445
449
|
rubyforge_project:
|
446
|
-
rubygems_version: 2.
|
450
|
+
rubygems_version: 2.6.11
|
447
451
|
signing_key:
|
448
452
|
specification_version: 4
|
449
453
|
summary: A gem to manage F5 BigIP devices using the iControl API
|