f5-icontrol 0.2.1 → 0.2.2

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: 69b7a284147776e3e9c8d0af7f92bed2dfa4614f
4
- data.tar.gz: d3dedbce1c543c2f9d2504c2cfdd2e3604f2ac6b
3
+ metadata.gz: e72d390863e04fc0c84f1774c92c8c1cb4bc662f
4
+ data.tar.gz: 718fd83b630310319152660bfc34cbb9ea742388
5
5
  SHA512:
6
- metadata.gz: a33dc65500231c8f02732e537ea3efa4a330536cd436baf644527cb61ad1436355a87ba51a4edc825b78159ce2c977af59d6c52a2f899992812c784b49b2deaf
7
- data.tar.gz: 3367a52f896a392930835d62ed9b55a88a4b25fdcd0ae079ea75fa7000fed4ea51d0ec3a101b5f5122ed7c1b4bbfdc7f1dc66f20db7894fbbf9c0d16e569c3c8
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
@@ -1,5 +1,5 @@
1
1
  module F5
2
2
  module Icontrol
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.2"
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.1
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-25 00:00:00.000000000 Z
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.5.1
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