fp-NGFW-SMC-python 1.0.31__py3-none-any.whl

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 (206) hide show
  1. fp_ngfw_smc_python-1.0.31.dist-info/METADATA +143 -0
  2. fp_ngfw_smc_python-1.0.31.dist-info/RECORD +206 -0
  3. fp_ngfw_smc_python-1.0.31.dist-info/WHEEL +5 -0
  4. fp_ngfw_smc_python-1.0.31.dist-info/licenses/LICENSE +201 -0
  5. fp_ngfw_smc_python-1.0.31.dist-info/top_level.txt +1 -0
  6. smc/.gitignore +5 -0
  7. smc/__init__.py +120 -0
  8. smc/__version__.py +13 -0
  9. smc/actions/__init__.py +11 -0
  10. smc/administration/__init__.py +11 -0
  11. smc/administration/access_rights.py +264 -0
  12. smc/administration/certificates/__init__.py +11 -0
  13. smc/administration/certificates/certificate_authority.py +75 -0
  14. smc/administration/certificates/tls.py +718 -0
  15. smc/administration/certificates/tls_common.py +210 -0
  16. smc/administration/certificates/vpn.py +280 -0
  17. smc/administration/eca_client_config.py +323 -0
  18. smc/administration/filter.py +37 -0
  19. smc/administration/license.py +73 -0
  20. smc/administration/monitoring_status.py +738 -0
  21. smc/administration/reports.py +340 -0
  22. smc/administration/role.py +142 -0
  23. smc/administration/scheduled_tasks.py +1340 -0
  24. smc/administration/system.py +1243 -0
  25. smc/administration/system_properties.py +63 -0
  26. smc/administration/tasks.py +462 -0
  27. smc/administration/upcoming_event.py +232 -0
  28. smc/administration/updates.py +163 -0
  29. smc/administration/user_auth/__init__.py +11 -0
  30. smc/administration/user_auth/servers.py +938 -0
  31. smc/administration/user_auth/users.py +491 -0
  32. smc/api/__init__.py +11 -0
  33. smc/api/common.py +193 -0
  34. smc/api/configloader.py +266 -0
  35. smc/api/entry_point.py +72 -0
  36. smc/api/exceptions.py +451 -0
  37. smc/api/session.py +988 -0
  38. smc/api/web.py +342 -0
  39. smc/base/__init__.py +11 -0
  40. smc/base/collection.py +916 -0
  41. smc/base/decorators.py +158 -0
  42. smc/base/mixins.py +73 -0
  43. smc/base/model.py +1019 -0
  44. smc/base/structs.py +178 -0
  45. smc/base/util.py +242 -0
  46. smc/compat.py +148 -0
  47. smc/core/__init__.py +11 -0
  48. smc/core/addon.py +801 -0
  49. smc/core/advanced_settings.py +88 -0
  50. smc/core/collection.py +1629 -0
  51. smc/core/contact_address.py +288 -0
  52. smc/core/engine.py +5013 -0
  53. smc/core/engine_vss.py +334 -0
  54. smc/core/engines.py +1788 -0
  55. smc/core/external_pki.py +186 -0
  56. smc/core/general.py +542 -0
  57. smc/core/ha_management.py +369 -0
  58. smc/core/hardware.py +23 -0
  59. smc/core/interfaces.py +2930 -0
  60. smc/core/lldp.py +168 -0
  61. smc/core/node.py +1148 -0
  62. smc/core/policy.py +81 -0
  63. smc/core/resource.py +235 -0
  64. smc/core/route.py +1272 -0
  65. smc/core/session_monitoring.py +45 -0
  66. smc/core/sub_interfaces.py +748 -0
  67. smc/core/waiters.py +239 -0
  68. smc/docs/.gitignore +2 -0
  69. smc/docs/Makefile +225 -0
  70. smc/docs/conf.py +393 -0
  71. smc/docs/index.rst +34 -0
  72. smc/docs/pages/administration.rst +104 -0
  73. smc/docs/pages/collections.rst +341 -0
  74. smc/docs/pages/elements.rst +175 -0
  75. smc/docs/pages/engine.rst +643 -0
  76. smc/docs/pages/extensions.rst +136 -0
  77. smc/docs/pages/installation.rst +38 -0
  78. smc/docs/pages/intro.rst +21 -0
  79. smc/docs/pages/logging.rst +24 -0
  80. smc/docs/pages/policy.rst +75 -0
  81. smc/docs/pages/reference.rst +1889 -0
  82. smc/docs/pages/resources.rst +60 -0
  83. smc/docs/pages/session.rst +253 -0
  84. smc/docs/pages/vpn.rst +65 -0
  85. smc/docs/requirements.txt +2 -0
  86. smc/elements/__init__.py +13 -0
  87. smc/elements/alerts.py +527 -0
  88. smc/elements/common.py +191 -0
  89. smc/elements/group.py +460 -0
  90. smc/elements/helpers.py +100 -0
  91. smc/elements/netlink.py +831 -0
  92. smc/elements/network.py +1048 -0
  93. smc/elements/other.py +828 -0
  94. smc/elements/profiles.py +745 -0
  95. smc/elements/protocols.py +521 -0
  96. smc/elements/servers.py +2804 -0
  97. smc/elements/service.py +537 -0
  98. smc/elements/situations.py +682 -0
  99. smc/elements/ssm.py +305 -0
  100. smc/elements/tags.py +233 -0
  101. smc/elements/user.py +565 -0
  102. smc/examples/README.md +103 -0
  103. smc/examples/__init__.py +21 -0
  104. smc/examples/add_sidewinder_routes.py +165 -0
  105. smc/examples/aggregated_interface.py +129 -0
  106. smc/examples/alert_chain_and_alert_chain_rule.py +202 -0
  107. smc/examples/alert_policy_and_alert_rule.py +156 -0
  108. smc/examples/alias.py +95 -0
  109. smc/examples/basic_requests.py +173 -0
  110. smc/examples/bgp.py +249 -0
  111. smc/examples/certify_component_ext_pki.py +302 -0
  112. smc/examples/cloud_engine.py +131 -0
  113. smc/examples/configure_ztna_addon.py +115 -0
  114. smc/examples/connection_type.py +116 -0
  115. smc/examples/domain_name.py +115 -0
  116. smc/examples/eca_configuration.py +228 -0
  117. smc/examples/elasticsearch_cluster.py +148 -0
  118. smc/examples/engine-node-health.py +149 -0
  119. smc/examples/engine_query_route.py +119 -0
  120. smc/examples/export_all.py +146 -0
  121. smc/examples/file_filtering_policy.py +230 -0
  122. smc/examples/firewall_policy_nat.py +204 -0
  123. smc/examples/gateway_certificates.py +120 -0
  124. smc/examples/gateway_profile.py +205 -0
  125. smc/examples/group.py +165 -0
  126. smc/examples/ha_management.py +246 -0
  127. smc/examples/images/256.png +0 -0
  128. smc/examples/import_engine_upgrade.py +137 -0
  129. smc/examples/internal_gateway.py +130 -0
  130. smc/examples/internal_user_and_user_group.py +175 -0
  131. smc/examples/ip_lists.py +257 -0
  132. smc/examples/layer3_cluster.py +464 -0
  133. smc/examples/layer3_cluster_ldap_replication.py +152 -0
  134. smc/examples/layer3_firewall.py +561 -0
  135. smc/examples/lldp.py +207 -0
  136. smc/examples/login_domain_username_password.py +276 -0
  137. smc/examples/match_expression.py +142 -0
  138. smc/examples/mini_reports.py +165 -0
  139. smc/examples/monitoring/black_list.py +351 -0
  140. smc/examples/monitoring/block_list.py +376 -0
  141. smc/examples/monitoring/logs.py +259 -0
  142. smc/examples/monitoring/neighbor.py +152 -0
  143. smc/examples/monitoring/routing_monitoring.py +150 -0
  144. smc/examples/monitoring/vpn_sa.py +148 -0
  145. smc/examples/monitoring/ws_async.py +262 -0
  146. smc/examples/monitoring_status.py +141 -0
  147. smc/examples/netlink.py +188 -0
  148. smc/examples/network.py +160 -0
  149. smc/examples/policy_rule_source_vpn.py +195 -0
  150. smc/examples/profiles.py +225 -0
  151. smc/examples/protocol_agent.py +134 -0
  152. smc/examples/rule_cleanup.py +252 -0
  153. smc/examples/run_example.sh +57 -0
  154. smc/examples/scheduled_tasks.py +289 -0
  155. smc/examples/servers.py +232 -0
  156. smc/examples/service.py +317 -0
  157. smc/examples/situations.py +173 -0
  158. smc/examples/ssl_vpn_portal.py +360 -0
  159. smc/examples/ssm_elements.py +210 -0
  160. smc/examples/sub_policies.py +391 -0
  161. smc/examples/switch_interface.py +129 -0
  162. smc/examples/sync_admins.py +255 -0
  163. smc/examples/sync_admins_config.json +20 -0
  164. smc/examples/system_properties.py +124 -0
  165. smc/examples/tasks.py +187 -0
  166. smc/examples/template_policies.py +171 -0
  167. smc/examples/test-parallel-multiprocessing.py +161 -0
  168. smc/examples/type_of_servers.py +867 -0
  169. smc/examples/upcoming_event.py +133 -0
  170. smc/examples/update_package.py +170 -0
  171. smc/examples/update_server_profile.py +121 -0
  172. smc/examples/url_list_application.py +137 -0
  173. smc/examples/user_id_service.py +144 -0
  174. smc/examples/virtual_engines.py +259 -0
  175. smc/examples/vpn_profile.py +209 -0
  176. smc/examples/vpn_site.py +123 -0
  177. smc/examples/vpn_to_external_peer.py +156 -0
  178. smc/examples/web_access_server.py +146 -0
  179. smc/known_issues +6 -0
  180. smc/policy/__init__.py +11 -0
  181. smc/policy/file_filtering.py +177 -0
  182. smc/policy/interface.py +171 -0
  183. smc/policy/ips.py +198 -0
  184. smc/policy/layer2.py +190 -0
  185. smc/policy/layer3.py +263 -0
  186. smc/policy/policy.py +222 -0
  187. smc/policy/qos.py +111 -0
  188. smc/policy/rule.py +1218 -0
  189. smc/policy/rule_elements.py +1577 -0
  190. smc/policy/rule_nat.py +780 -0
  191. smc/routing/__init__.py +11 -0
  192. smc/routing/access_list.py +215 -0
  193. smc/routing/bgp.py +1086 -0
  194. smc/routing/bgp_access_list.py +175 -0
  195. smc/routing/ospf.py +604 -0
  196. smc/routing/pim.py +524 -0
  197. smc/routing/prefix_list.py +117 -0
  198. smc/routing/route_map.py +465 -0
  199. smc/tests/.gitignore +14 -0
  200. smc/tests/__init__.py +11 -0
  201. smc/tests/docker_smc_bootstrap.py +349 -0
  202. smc/vpn/__init__.py +11 -0
  203. smc/vpn/elements.py +1351 -0
  204. smc/vpn/policy.py +638 -0
  205. smc/vpn/route.py +915 -0
  206. smc/vpn/ssl_vpn_portal.py +937 -0
@@ -0,0 +1,143 @@
1
+ Metadata-Version: 2.4
2
+ Name: fp-NGFW-SMC-python
3
+ Version: 1.0.31
4
+ Summary: Python based API to Forcepoint NGFW Management Center
5
+ Author-email: Forcepoint <PSIRT@forcepoint.com>
6
+ License: Apache License (2.0)
7
+ Classifier: Development Status :: 5 - Production/Stable
8
+ Classifier: Programming Language :: Python
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.5
11
+ Description-Content-Type: text/x-rst
12
+ License-File: LICENSE
13
+ Requires-Dist: requests>=2.31.0
14
+ Requires-Dist: pytz>=2022.6
15
+ Requires-Dist: urllib3>=1.26.18
16
+ Dynamic: license-file
17
+
18
+ |Python version|
19
+
20
+ smc-python
21
+ ==========
22
+
23
+ Python based library to provide the ability to interact with the
24
+ Forcepoint NGFW Management Center API. Provides automation capabilities
25
+ for any environment that interact with the SMC remotely.
26
+
27
+ Some of the functionality you get with the SMC Python API:
28
+
29
+ - Create any engine types; single firewall, cluster firewalls, ips
30
+ engines, layer 2 firewalls, master engine and virtual engines.
31
+ - Engine operations such as enabling/disabling AV, GTI, default NAT,
32
+ Contact Addresses, etc
33
+ - Interface configurations
34
+ - Routing configurations (OSPF, BGP, Static, Antispoofing)
35
+ - Engine level commands such as rebooting, going offline, policy push,
36
+ enable/disable SSH, etc.
37
+ - Create and modify all network element objects such as Host, Network,
38
+ Address Ranges, Domain Names, etc.
39
+ - Policy control (create rules, delete rules) for layer 3 firewall
40
+ policies
41
+ - VPN Policy control and creation
42
+ - Management / Log Server settings configuration
43
+ - Admin User creation and modification
44
+ - System level controls; update system packages, update engines, global
45
+ blacklisting, etc
46
+ - Tasks
47
+ - Search operations for any object type by name, href and by filter
48
+ - Collections interface to view all objects by type
49
+ - Monitoring by polling
50
+ - High-Availability management
51
+
52
+ Requirements
53
+ ------------
54
+
55
+ Python >= 3.5
56
+
57
+ Requests >= 2.32.0
58
+ websocket-client >= 1.8.0
59
+
60
+ Security Management Center version >= 6.10
61
+
62
+ Getting Started
63
+ ---------------
64
+
65
+ Installing package
66
+
67
+ From git:
68
+
69
+ ``pip install git+https://github.com/Forcepoint/fp-NGFW-SMC-python.git``
70
+
71
+ Or after cloning:
72
+
73
+ ``python setup.py install``
74
+
75
+ Examples
76
+ --------
77
+
78
+ Included are a variety of test example scripts that leverage the API to
79
+ do various tasks in `smc/examples <https://github.com/Forcepoint/fp-NGFW-SMC-python/tree/master/smc/examples>`__ directory
80
+
81
+ Basics
82
+ ------
83
+
84
+ Before any commands are run, you must obtain a login session. Once
85
+ commands are complete, call `session.logout()` to remove the active session.
86
+ To obtain the api\_key, log in to the Forcepoint NGFW Management Center and
87
+ create an API client with the proper privileges.
88
+
89
+ .. code:: python
90
+
91
+ from smc import session
92
+
93
+ session.login(url='http://1.1.1.1:8082', api_key='xxxxxxxxxxxxx')
94
+ ....do stuff....
95
+ session.logout()
96
+
97
+ Or log in to a specific Admin Domain and use a specific version of the
98
+ API:
99
+
100
+ .. code:: python
101
+
102
+ session.login(url='http://1.1.1.1:8082', api_key='xxxxxxxxxxxxx',
103
+ domain=mydomain, api_version=6.2)
104
+ ....do stuff....
105
+ session.logout()
106
+
107
+ Once a valid session is obtained, it will be re-used for each operation
108
+ for the duration of the sessions validity, or until the program is
109
+ exited.
110
+
111
+ Extensions
112
+ **********
113
+
114
+ Extensions are available to smc-python that provide additional functionality besides what
115
+ is provided in the base library. Extensions are kept separate as they may require additional
116
+ package requirements and simplify packaging.
117
+
118
+ Available extensions:
119
+
120
+ * `smc-python-monitoring <https://badge.fury.io/py/fp-NGFW-SMC-python-monitoring>`__: Monitoring for SMC connections, blacklists, users, VPNs, alerts, etc. In addition this package provides the ability to 'subscribe' to administrative event modifications.
121
+
122
+ Extensions are found in the base smc-python repository as namespace packages and each is housed in it's own sub-directory of this base package.
123
+
124
+ Pull Requests
125
+ *************
126
+
127
+ Pull requests are welcome and appreciated, but they cannot be merged as-is.
128
+ We use an internal repository to validate and integrate these changes.
129
+ However, they may be released later according to our roadmap.
130
+ You can use 'Issues' to suggest changes to us.
131
+
132
+ Documentation
133
+ -------------
134
+
135
+ `View Documentation on Read The Docs <http://fp-ngfw-smc-python.readthedocs.io/en/latest/?badge=latest>`__
136
+
137
+ .. |Python version| image:: https://img.shields.io/badge/python-2.7%20%7C%203.5%20%7C%203.6-blue
138
+ :target: https://pypi.python.org/pypi/fp-NGFW-SMC-python/
139
+
140
+ Release History
141
+ ===============
142
+
143
+ `Release notes on GitHub <https://github.com/Forcepoint/fp-NGFW-SMC-python/tags>`__
@@ -0,0 +1,206 @@
1
+ fp_ngfw_smc_python-1.0.31.dist-info/licenses/LICENSE,sha256=-LJ1PHyYz4hpaPkELFPxlTb1D0dlnY5mns_mpDRDGrQ,11345
2
+ smc/.gitignore,sha256=N6LJv04oRoCzpWeW6KZUpEpRvH8wKcQ7LgQyRjje1mQ,29
3
+ smc/__init__.py,sha256=nHXEWkA4IFSkpio15CeIP9A_8NXb32JItqlVZM3ueFs,3517
4
+ smc/__version__.py,sha256=ehnCi6H93-WPuj5y4u-WOXHgsGqbYiGXOPMwrrpDvLk,578
5
+ smc/compat.py,sha256=yp2r2155lHqKs7YrpFZmYDsTuvmj4zG7462GGMZsWFE,4892
6
+ smc/known_issues,sha256=18rFJhmMUpBDouboR4Ivod4J62UBhCLjK7hygEwCf0Y,327
7
+ smc/actions/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
8
+ smc/administration/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
9
+ smc/administration/access_rights.py,sha256=2lFZB6c88TCe0ndLcwgJEDwLSTBcnmFoGI1HNs6CF8M,8830
10
+ smc/administration/eca_client_config.py,sha256=4H99ej8crfA77og_3kUX62Tcf-sP8002wM8uLEMGmvc,12148
11
+ smc/administration/filter.py,sha256=roE6ZcbHQ4FHFu92LIztjrU87DVpo_yKS7pp2sh5eqU,1249
12
+ smc/administration/license.py,sha256=lkIuvl8NThBkR4H8BdaRr5GCg-z4snW17AV2mkZQjNM,2342
13
+ smc/administration/monitoring_status.py,sha256=Y_LwxEg-GEQAoBkPTL6bXDGWSaqonWyEnzYqczNk9gY,21866
14
+ smc/administration/reports.py,sha256=_VYLsdh9rN7l3BWDHwBFQz8cbZv2NNEY0XtEg3eMiUY,12732
15
+ smc/administration/role.py,sha256=Mxcpe-QKReQTpcITHSVOxboNIORBmzQ7KCX5SwGNT-w,5345
16
+ smc/administration/scheduled_tasks.py,sha256=VIUGbMO0GpQZkxp9QrtsnETH4wPL53M5u3CVC-e66qk,53159
17
+ smc/administration/system.py,sha256=x2c34hym6vGkHqPTtREg23fBCyBgWbqikEOF5JMdvwM,45507
18
+ smc/administration/system_properties.py,sha256=ZWBYdMHEA1tep5N27Z-K5X8VqQ8gDFF3rabMXfP1VgY,2161
19
+ smc/administration/tasks.py,sha256=jdRQUps4oOMaWGlJPOdRG8jnYOPf2CGWoHBXEJ_oUPE,13575
20
+ smc/administration/upcoming_event.py,sha256=sXm2IPfg5qOyw6OZwUriN6qJW22oK0XULZQNXB-vavo,6818
21
+ smc/administration/updates.py,sha256=7PcwqPQrzcEu8MXyqoO-iftqdpYfl0_9PdBaU9CUzXk,4587
22
+ smc/administration/certificates/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
23
+ smc/administration/certificates/certificate_authority.py,sha256=_lv_9ZKZcin5OUva3-9F_8ysQ-aDQplsm39eMeRQp5c,2557
24
+ smc/administration/certificates/tls.py,sha256=v5l_OrM9bpNcnVxTwkCrXMY1o785mM-Tqc3fvMtNGeo,28463
25
+ smc/administration/certificates/tls_common.py,sha256=efhM5ZsREKdJxvz8IZBHSX3AI6a4lWdfVyFlw9fuMI8,7118
26
+ smc/administration/certificates/vpn.py,sha256=cPYediproXhCoyiVAoyNMIOc1jUmP-gwzMSKCRF468c,8699
27
+ smc/administration/user_auth/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
28
+ smc/administration/user_auth/servers.py,sha256=DeF8Xd6sxpKKxiW6JEG23LXWXnRuFruC0-4Vm1cgnPs,37664
29
+ smc/administration/user_auth/users.py,sha256=Cm1bF1Ag-rWCQhnjVltkw3vs3SfFs5_Sq2cwxGPZoNU,17942
30
+ smc/api/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
31
+ smc/api/common.py,sha256=CLm_pbBnKWN3GzSKoPSZuZzj1UCQ0ucUT2ngnvVjMvY,6310
32
+ smc/api/configloader.py,sha256=73ibIIWkN86RJNz_c6kmNjvnE7-h8PjpG0yFDC6zt4g,8313
33
+ smc/api/entry_point.py,sha256=b_lEbeVUqwUITp5bfhJUAVaIh3FjVJxuNDgAjdiYxZY,2192
34
+ smc/api/exceptions.py,sha256=56uH9tbYiXIAvLc7ElXpBMoPrrklxrJMQMhxvbxtCeg,12395
35
+ smc/api/session.py,sha256=713JHlNZZpSQVYk_3m5L2m6UWaJqSx8BlkumpeAT8Yg,35309
36
+ smc/api/web.py,sha256=L3EIU5gAvM0-EmmOt_AiURR2hNv2aWfI5qp2epCj3rs,12209
37
+ smc/base/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
38
+ smc/base/collection.py,sha256=yHAAdyDCSA-bAScUOMmPXkXyRoQH-R05RFzhiIlmNtI,31475
39
+ smc/base/decorators.py,sha256=R25jhzrzX_j0IoQP_aNyGv-a1SwJuFrmzzI2aNbRBDE,4267
40
+ smc/base/mixins.py,sha256=vEF8oXceusrHga1eXKHWKKehjuLqc2GES_bAXe0CPXw,2546
41
+ smc/base/model.py,sha256=F9ciD6SswHkIpkHTXAEicNi7DZAXoYNoTcK1geTBPeE,36913
42
+ smc/base/structs.py,sha256=fY0T6rgWKVGg-5PXUCo0PGH7TEVPeXj5S0-SSC5hRM4,5562
43
+ smc/base/util.py,sha256=H7lb7naSQY81f8RHZ5AcbJLp_0UPbI6DbG-I4mmo84E,7885
44
+ smc/core/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
45
+ smc/core/addon.py,sha256=4nhJaNRdvrO9mp2Y7LZ9L8mL27XStQu5lAaSVS0RKWY,26427
46
+ smc/core/advanced_settings.py,sha256=yzZpt6aLd919qeEdVZWVGH5vCqcqLq1NASNBuyMRd60,4085
47
+ smc/core/collection.py,sha256=vIwEzgsaQ65KQoajpwaJ50zoNaI8plNsPqUsZ2eCp80,65114
48
+ smc/core/contact_address.py,sha256=bRQSChcyqKhoOWac1uFLVfWRzqeVd9kVNMS4MzVpXP8,11148
49
+ smc/core/engine.py,sha256=SDGLiA373SY5AAUaTDru7IQaOBIdoY90sKj38wm5er8,190420
50
+ smc/core/engine_vss.py,sha256=E4nwPj5-qI922zjwmw_eIszcCEBH2W42cUu_FFoFVLg,11515
51
+ smc/core/engines.py,sha256=RstJneTeCYrLQuOrug2E0QCZhxCobomITNL8S8HltLo,71818
52
+ smc/core/external_pki.py,sha256=8GUaIDJ_ba_twQpY9L6XSZLIED1Zd2Wvf2oJHdkOakI,5486
53
+ smc/core/general.py,sha256=kgr3G1QXkuqwdbWUnd_1ELv1gRQQc37gqoaBNvdx_8A,18416
54
+ smc/core/ha_management.py,sha256=2dWxMa1UvemgiaxYPy9Lwrl-jHzm_bhbwwhvgKb6ik0,13508
55
+ smc/core/hardware.py,sha256=l-hbzRMv4S5re7Rv0ArF0judGaezy1K40pqhVpwuU7c,840
56
+ smc/core/interfaces.py,sha256=4IC8CRKiG5LBPgpP99B20aNMJ_Ohpg7pwIpQcaOgVXk,113577
57
+ smc/core/lldp.py,sha256=b9jGmyHdYfcUkrl-eRqFEFDR6H74sIXAODIhhRMbUvY,5727
58
+ smc/core/node.py,sha256=zNz84RtfehU6oEpEF9HNafZGLnOITBP1BK2syHxaraM,40492
59
+ smc/core/policy.py,sha256=mN4iD3Sw_NlGfWlYQuV4iTSof92LAX7RIPyleRrpAHU,2517
60
+ smc/core/resource.py,sha256=fLdfwkexNgcO2jIIWwYi6FYL8wW2AXxTrFNF00RwbrM,7580
61
+ smc/core/route.py,sha256=7HOND2GFziQAGrgbM3TAhIhOH5mfUUQ96DFSz_zjruw,46514
62
+ smc/core/session_monitoring.py,sha256=NjqDMxL21DUVASz6irSzTe5rsGS48VfRW_LYl1oNUjc,1516
63
+ smc/core/sub_interfaces.py,sha256=fJBYW4XhFkSkzoCPpm-IJPfgDIm44Mi7nPYeo49LncA,26733
64
+ smc/core/waiters.py,sha256=His8_B9lJh21kh9-_7w4XDBNHkntkrUgZuslwm_FAa8,8261
65
+ smc/docs/.gitignore,sha256=Qe5m6JiDtZfU38xJirEpx976LFTl30lIwPyvrc5M2GQ,18
66
+ smc/docs/Makefile,sha256=_9WWamwM-9y0uoO9GH08Jlwsdu9TA2Pl2VeuZgIYzcA,7622
67
+ smc/docs/conf.py,sha256=pnPKT69-MSSfBptdgcdFWANVlMuGny6iUJrxcvaO_70,11248
68
+ smc/docs/index.rst,sha256=eiM29OWtxad9wijNOeoh55GwcuDTTRAMbF7chUVf0cc,671
69
+ smc/docs/requirements.txt,sha256=dIZaLLQUTFnvtVdXTZp0dBP4QRbgSh22Ov4vmdyd9lY,37
70
+ smc/docs/pages/administration.rst,sha256=EmyxOXhFLnjX9kmxkgxM4PbFcF-N7ZfLEh74ZXOiP5I,3226
71
+ smc/docs/pages/collections.rst,sha256=YH7i0D98Io6UiNraOSS9F-mzHaxu3PbWy2Tna6lCUOs,15243
72
+ smc/docs/pages/elements.rst,sha256=9gE9--0qtqsNzJgYFmYHHHecWX1gr6FdbkS0IqFqafI,5484
73
+ smc/docs/pages/engine.rst,sha256=xkpgV6anU_O5qYQP3qI3Ot0U8X5fKNi-cI65Iabpbmw,28683
74
+ smc/docs/pages/extensions.rst,sha256=-TeIQECkF3MyzLfa_sdWYPMbDkxcZ8_QuHj-HR39Uro,2120
75
+ smc/docs/pages/installation.rst,sha256=5qaiqqZUQWYOhtInABUj1aE5mFgeG8kNLdl_rlzMjtQ,1004
76
+ smc/docs/pages/intro.rst,sha256=pAwJNCkHyVRhH6Ll7ShuOZSW-22AljPCwue3EQqiBrw,809
77
+ smc/docs/pages/logging.rst,sha256=Cd4CXYj9Xs9QmUeBOOVV9CE947NsDQ2ih1cW_N3W7Dw,846
78
+ smc/docs/pages/policy.rst,sha256=1O-4MZmlFVuSnW38gs_Db9EkMz4gYdxtnuOAj12rBjM,3517
79
+ smc/docs/pages/reference.rst,sha256=fWxipEXHQZapbxx28IdNvHDTLfRYz5YJ_6v3SjMUUiA,31501
80
+ smc/docs/pages/resources.rst,sha256=CtrBQltudLqXaA81MDs0qwilU42CK5xVNlquR5y6tz4,4070
81
+ smc/docs/pages/session.rst,sha256=R08D3NmIqMkP_ESjIVAgn3_Usv5zRk0rWfrcLhY19iM,7937
82
+ smc/docs/pages/vpn.rst,sha256=QQKs26-w-jC71vnlrFSPeuakPd-0pzszxx6QyYbOABA,2683
83
+ smc/elements/__init__.py,sha256=pem9rrAgvQPmgzW9-IpR8dXKKiGqbJfPSRmnsVeT5bc,568
84
+ smc/elements/alerts.py,sha256=4SX37Zf4nlbxGltpH5SjIUbCoYTmDYCXSHNyNQQvbu0,23389
85
+ smc/elements/common.py,sha256=9uuxbqv6BvZ-oqfn_vAlKA1J-fNoBeFoV0amNXGN1ak,6333
86
+ smc/elements/group.py,sha256=aD8C1RDm4ROK1V1GOx_AafiIOhU6es9GoyfPwvlQiKo,15644
87
+ smc/elements/helpers.py,sha256=2Uzd6MapCxfor4bFHOEM6KqkT5VQQEoUfcKL-P8pzak,3338
88
+ smc/elements/netlink.py,sha256=8047gQyPtJ8FRP3xUCXdBFG3ty6CdMgUoD5Ordcu0Uo,34293
89
+ smc/elements/network.py,sha256=vIJsoPpIfS0GEeL7SKCnh_h-9pKsJsKaUOkLwmFE6FE,36339
90
+ smc/elements/other.py,sha256=c0R3yHVdvQ9l5kPEA4yPc9CoAxb5nzWgU3Zzt7oItxI,29201
91
+ smc/elements/profiles.py,sha256=X7upjVpYu7oxdA5VGkCrbkJOzsNt1iQkwFyPCBb3Ofw,25382
92
+ smc/elements/protocols.py,sha256=DV3_k1wlLABtA-_swIpV0mQFp0A_P5AjA6xkINlRiYI,20302
93
+ smc/elements/servers.py,sha256=eQ5XBd5NWx0fhW9Asnw-h-7fB4_cJum1AzxJ3xIj23I,108796
94
+ smc/elements/service.py,sha256=xXQOnJ7rrY-KsivCWCLBwuLypwhTImpYZbu-DrUsfuE,17394
95
+ smc/elements/situations.py,sha256=Fa3Pzn0v8oFd8km3djNZaeRYenV6nHc1r3wfFzRQmWE,25436
96
+ smc/elements/ssm.py,sha256=AIcyv2gLbuvIWECGAectPRLPQqRASR4gjWUlXqpyGE8,10013
97
+ smc/elements/tags.py,sha256=DNAbIzInY83OA53FXyqe-VqA_sG3VhkjC2Tfapa8D3c,5565
98
+ smc/elements/user.py,sha256=TVPcyWrFOvtd1xdWaZEN3c2sB57_TTpRh51gjorbhlA,19603
99
+ smc/examples/README.md,sha256=tza6dZpVXm6HShmxgDRgg8DQRHlTRlBUrIYrNqWOik8,2239
100
+ smc/examples/__init__.py,sha256=lJcVez3euu-fZpoYFRjJ6zfBDekDXZ_6BY_osQotMXU,838
101
+ smc/examples/add_sidewinder_routes.py,sha256=01Hj7gzR8TFmmNQRUQJsRsQY7jG_7OhhxiUVSe0cjIs,5830
102
+ smc/examples/aggregated_interface.py,sha256=E316pQU08fCUYCAGXDodIIFNkf-jIB3JSYkfunnZ1cE,4263
103
+ smc/examples/alert_chain_and_alert_chain_rule.py,sha256=X4bolfDDQDxh99qcxRVCr-cNZ2VbI2s1XfmVsZ3RBlM,8983
104
+ smc/examples/alert_policy_and_alert_rule.py,sha256=7JdjEMpONIAm3gx9bvtsMoiOcHAGyH3nI1CEZSRPJ2c,6511
105
+ smc/examples/alias.py,sha256=_-tkldvQ6fSCmcMu8oZigGJVpdfr9XXqLjz3x4OHAfQ,2693
106
+ smc/examples/basic_requests.py,sha256=vRyAmfsV9PZNc9-nzTCSMNmvCMl6i2lgD3moeZ51P88,6294
107
+ smc/examples/bgp.py,sha256=0IlgbmwhuU1BM4LuidJoDMALej4zb_qL6pUUUKM6MBc,10380
108
+ smc/examples/certify_component_ext_pki.py,sha256=9CE_bihlU0-s84ZU4wFGgJXb8VZM4haRLm0iixUbSKc,11931
109
+ smc/examples/cloud_engine.py,sha256=KUVuDO8-AR2RjiQGXQ1J4nw5-u7ApuElWm9V9-pOBuw,4322
110
+ smc/examples/configure_ztna_addon.py,sha256=g5wd6kmCQAi6bEz6Xr-O74jsFxKp_xoeEcEz9FRU7zk,3496
111
+ smc/examples/connection_type.py,sha256=2vevCf4zwNmiPmYmJIIXNyEFwqOoN7Of4Yfe2V5H80E,4045
112
+ smc/examples/domain_name.py,sha256=y7FrIp28EqswGhVDS9pT_C_1-nKuFZ2y9xhJaLA4L5s,3863
113
+ smc/examples/eca_configuration.py,sha256=wkywdfr9EbrlsVv1nBwGxdw5CivZgI6RWi3VCIftMSU,10711
114
+ smc/examples/elasticsearch_cluster.py,sha256=IblT68giJz-tvCQwRigv_W506hQ_fO6a2WaSfkChTrA,5890
115
+ smc/examples/engine-node-health.py,sha256=Vjb-qUCvEsjwKcpOYfznnZuhOHGLCIc83aF6us90wUY,5195
116
+ smc/examples/engine_query_route.py,sha256=hNsAIHnTzb7LTYyMF4X7J1g6E-xMDrWlSfWlClq9m0A,4034
117
+ smc/examples/export_all.py,sha256=nibf36E3QjZCsZeJDJtrok3b5FVQCuiQRWyj-DOhO3M,4716
118
+ smc/examples/file_filtering_policy.py,sha256=CirwXYkzwPpwOPQxnY8iFLQDqDnT3Mtvwix36uQ8QO4,9467
119
+ smc/examples/firewall_policy_nat.py,sha256=wSQihqVVej3mRyLPNczO09JPpQmevrqyEBQJ3BMGinA,7741
120
+ smc/examples/gateway_certificates.py,sha256=szJO3CA0KggrO-gbcKjaF6gLwsc1f8CrBifCeiBpzxs,3770
121
+ smc/examples/gateway_profile.py,sha256=UswJutjOOPQR-b1L0Wpl5ECV-u2nhwNtHEVVgP1FkOM,7188
122
+ smc/examples/group.py,sha256=srfVh0qyozgz8rj3knWDDpQIM2tA-tiU5sC2X_JFwnM,5936
123
+ smc/examples/ha_management.py,sha256=_ibuqwOd8pCu23AIhF4FYUQiRyVdGSIhhXvE4DmEm4c,8090
124
+ smc/examples/import_engine_upgrade.py,sha256=2TkJr4B7zDF7WaUch89PSjtWplgOWaTYjedYlQOSFj0,4652
125
+ smc/examples/internal_gateway.py,sha256=4WbM7S272_U8QqT3_elB0jITyoG2SRCA6aPwXvgNca8,4658
126
+ smc/examples/internal_user_and_user_group.py,sha256=u08kg9whTIiBiLTq9chgFb6dN9E2SC18FbrV5A3S_jo,7025
127
+ smc/examples/ip_lists.py,sha256=_j5vVw7EFwJGe5mYWT1oG5OAYGZC2V03AB7macx9y9Y,7459
128
+ smc/examples/layer3_cluster.py,sha256=FMsQrwWaHQ-70esPOUA0DcdmKv_ChPeLFC6B4NPdskw,21135
129
+ smc/examples/layer3_cluster_ldap_replication.py,sha256=iZHhIvNi8T_upKaw8FKkSD4Mjui71gcDnn_Pfnh-86M,4872
130
+ smc/examples/layer3_firewall.py,sha256=oaEvbYzbh1ih35v0AhtlQspGCoVesWlV8ju6E4kWv0o,27984
131
+ smc/examples/lldp.py,sha256=6Vn42HCxnSKYA_kiZNkGbP65BMv5_0DAXC6WmpJiUuw,8213
132
+ smc/examples/login_domain_username_password.py,sha256=94Xlv6CaakutokzstN9KK2I0fdADXDSniWfgQrnrf6k,11939
133
+ smc/examples/match_expression.py,sha256=erY7PHUtKZCDhH0i9Uicml2lbN5bEAibC-12vsbh0rA,4554
134
+ smc/examples/mini_reports.py,sha256=CtHoVy1QZcww-lepM0civ5LpVjZVojtKC3YwE8XmSsE,5211
135
+ smc/examples/monitoring_status.py,sha256=RWCy_9zbCNggc68pWVFllvCFf0oW3BENGNR9qFt7G7s,4867
136
+ smc/examples/netlink.py,sha256=13hiYW0pfLojPmggwWICdN7C9mjclcrCgBcdWySPGb0,7966
137
+ smc/examples/network.py,sha256=0BmDzeGvIVRLJwmDTIoGh_GyYu5HqODhD3PUM88DQU8,6450
138
+ smc/examples/policy_rule_source_vpn.py,sha256=NNI-K4HcujxYgrwVE3BL6jTSJUuuicRov92uW50EWeM,6811
139
+ smc/examples/profiles.py,sha256=-n6AmxU8hVBz2LtKudrU9zEIFAIDcZ3nDUkQnAZDKJU,9942
140
+ smc/examples/protocol_agent.py,sha256=wuf5-ldBvzkKdG-n-pumaGWCelkUx61H2px-Jy8EPcM,4431
141
+ smc/examples/rule_cleanup.py,sha256=ZysUnUgeJzh1wjj0awN2pzvq4YzTzeb7cluoHBlHfc0,9723
142
+ smc/examples/run_example.sh,sha256=iZD-FTqV3H6Bs9-cjfkZ8mkGR16h-vgmoS6aata3iNw,1563
143
+ smc/examples/scheduled_tasks.py,sha256=M3gg_VImjOC7a5Fzwh6AW15WOBCQHtHXjqnhs_3YKnU,11831
144
+ smc/examples/servers.py,sha256=5A0ljScToRHOOTVNu6F3dpFlkLK__YFZ0WWhV93HUNU,8329
145
+ smc/examples/service.py,sha256=d684cIACjpdCDaRcgdueAWj9xV74Sd9UMsKzm6N9pjg,15612
146
+ smc/examples/situations.py,sha256=enrbv44Dj0Y2sS1nn2xmiHsSBiCMHY8pKBAeinQ_vgw,7265
147
+ smc/examples/ssl_vpn_portal.py,sha256=968OamcFp8N60BMPxPmkc31scEx4t-VKs_P8fuAaN74,19706
148
+ smc/examples/ssm_elements.py,sha256=KNtMj58VpkgW8nE93-3QWmuXdGWdQ0O5hfs-q12ByiI,9595
149
+ smc/examples/sub_policies.py,sha256=TPiXSX0cwcs8n-22HufTwvpqMcVQvucvHX5PuQhWCnE,14551
150
+ smc/examples/switch_interface.py,sha256=E5EkFXHK8tm-itAQDjy9SRsrwVGYXY0mp4uDq-Z_dTE,4236
151
+ smc/examples/sync_admins.py,sha256=zNnxQJalN8e19KCnkBiZmBjgiLDfqLReGraUAzojOCc,10623
152
+ smc/examples/sync_admins_config.json,sha256=nRjlAfsiYeulZReCqziHVObyeTDoexUmUfWL2l_7o1s,727
153
+ smc/examples/system_properties.py,sha256=vTXyrrmoC4olMB6kpbqIckSHKgt03ug_d3gxR4vPOUA,4266
154
+ smc/examples/tasks.py,sha256=3u7n6F78uQ_bGvNMD7Gpk9brCGngr1-SVDTC85lFCsA,6416
155
+ smc/examples/template_policies.py,sha256=RtQL3ekMcKt8E4lJzE3Zee4_zHOiAlsqpsLRdpindYM,5896
156
+ smc/examples/test-parallel-multiprocessing.py,sha256=jU3xZqz51U7uaQI1T74M0y4Hc3zqTIkaqz3NPuKgHnI,4552
157
+ smc/examples/type_of_servers.py,sha256=8eTQtl9i3_jMMumTDHDaQ5tXQsd8Dh3WruowWgnuGC4,41723
158
+ smc/examples/upcoming_event.py,sha256=JMu-w5OeGNN-t-Ytm8Ng4svPdP_2vUGI5PDsq5RnGwg,4089
159
+ smc/examples/update_package.py,sha256=eCnaMpoHv2ESW_iS4AHz2HS9qR2G4C5_ZuWOS5WjoDM,5919
160
+ smc/examples/update_server_profile.py,sha256=z9yO5UzhJ4cdmN97VTW6G_8wk6sLcjx12T5soq9R69U,4246
161
+ smc/examples/url_list_application.py,sha256=katzLtjNWjGRA3ZAZq9ZE1l5cqddc5zP58HFjEVS3IA,4734
162
+ smc/examples/user_id_service.py,sha256=x93Pm8VzMw8TRgkHSbmc3k1LPM1xBT3tJiQeayDTFY8,5754
163
+ smc/examples/virtual_engines.py,sha256=2O7ymc3cHSIr22RjdLzNrtAn0yqrZiO6dbG94yFinzQ,10851
164
+ smc/examples/vpn_profile.py,sha256=86KmKpsXhiIiyFs9smDWnL-bRpzVX1Q5utYroE2JZzM,7617
165
+ smc/examples/vpn_site.py,sha256=Flp2mT6ZE6fpjZPTz8FRX3yeMl97NGBf2YV6F4o8Y2E,3973
166
+ smc/examples/vpn_to_external_peer.py,sha256=iQbLUUCpxq0fTIuCT-1qe42B_kpPzNduSp9r6yefk1Q,5015
167
+ smc/examples/web_access_server.py,sha256=9TWnkFBXYGeJGQfaI4ELFtBuII3DvBjiu_W8C1RvAGo,5963
168
+ smc/examples/images/256.png,sha256=PgciEFaxg9mDS0z9X8oA1jynTX3B3dfDGOqFt7qqLlE,15272
169
+ smc/examples/monitoring/black_list.py,sha256=Pe0xuyqBxEHie85XvP0UKJjIqQ4YEcjDlvWohyTtbys,13562
170
+ smc/examples/monitoring/block_list.py,sha256=wSDSAT5taI0SYVCYrirUNrUNXrPTj4SR-voQKkAPOpg,14873
171
+ smc/examples/monitoring/logs.py,sha256=IiA2Awwn9NtGntevcCX8tToz1izmjyNn9NB_cxU_PMg,10152
172
+ smc/examples/monitoring/neighbor.py,sha256=x961VVHwtXs1SUp-t3cjioMLf5BJ98vYxGOIc9H4LsA,5076
173
+ smc/examples/monitoring/routing_monitoring.py,sha256=lfIcAgA_ReIiqiQxJXVG3oD09hm4cBeE2br7WmrdeHU,4915
174
+ smc/examples/monitoring/vpn_sa.py,sha256=X064UQpKVIABhoy88X2AVFCfKcBtWvp31OHhXFiv7ak,4818
175
+ smc/examples/monitoring/ws_async.py,sha256=xbmwysHlTr5olt0lGSVGIO0deNXGSDuM0rK98SWYz7Q,9113
176
+ smc/policy/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
177
+ smc/policy/file_filtering.py,sha256=ew_gYX7NPdMkbZgHyPWNXr8hwmA2fTSrWgC4BL38Obc,7233
178
+ smc/policy/interface.py,sha256=2C4tVFWH7hVE90q6VDD3YQmypUI3vd0Nhm8Q-lKm_Go,5508
179
+ smc/policy/ips.py,sha256=15CDtlo2UYsN7zGzm8QlqgvkYA7Y_Pe_k2hK-XEc8dg,6448
180
+ smc/policy/layer2.py,sha256=PDhL8PdZcfvHER0HnNxeUYiUp-cZlffEwWxlQmqy3vU,6568
181
+ smc/policy/layer3.py,sha256=SMwbpUgM5l8fAIkvvRSWqPm2Tt2shtTz0_640iTPuv4,8889
182
+ smc/policy/policy.py,sha256=JAqK5JI7UfL30RF4yCQgVpbPht9GEf-Je9vqVLUN12g,8475
183
+ smc/policy/qos.py,sha256=7oaWb2TxvY28jrcyw0Zv-kL9bNNa0q2OTD3Nyn0Rns8,3775
184
+ smc/policy/rule.py,sha256=gZAAZKh1BpEvzA73sTyZDPA6c3ZCrHSvO2Qn_amrlmE,44831
185
+ smc/policy/rule_elements.py,sha256=eqDnUyQuH84yJnN75tQQ-3NL6bexpRNZsaP5tvb5f_Q,49422
186
+ smc/policy/rule_nat.py,sha256=HdCwB805cXauESlWhM1Vdzt5qDbmLnzmKE2IUEeRhDg,29340
187
+ smc/routing/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
188
+ smc/routing/access_list.py,sha256=KX3PvX-Dy3G_3uniZGhZZS5Z9zNM50u1W9CdPh9A2g4,8068
189
+ smc/routing/bgp.py,sha256=tD-dbVK7qdACqgTeHtkkNUADyxHu7dBk0bqH1AO1kh8,37350
190
+ smc/routing/bgp_access_list.py,sha256=nhEQGz11DcW9kZkkNDtyv2P0lOCjZ-CHLAldCgoiFPc,6844
191
+ smc/routing/ospf.py,sha256=ZLVnWgf2R7otpo_XTjFHlJxkvfOQYpID7cqNDU_1UpI,21680
192
+ smc/routing/pim.py,sha256=ADM5SzFf3xJvxxDqrSd5h9IhLIoPqeonPYUZ9sRHTC4,19567
193
+ smc/routing/prefix_list.py,sha256=fDWWncdrI8VFc8ZRbMSibw4RZ1YOe_RRj1RT9y1NKPw,4458
194
+ smc/routing/route_map.py,sha256=tlbijuaGaJ6Ko6qZq9uTjHYQkt7yTrNsFiSka_t7wRo,16629
195
+ smc/tests/.gitignore,sha256=Hvp0jDxaThecTO1nyov_ZR7TmyM3esaSzTCpI1x1NT8,164
196
+ smc/tests/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
197
+ smc/tests/docker_smc_bootstrap.py,sha256=baibCWXNousPhS__xPNNhskUC3qcqMduAqRlbvDXj3o,10749
198
+ smc/vpn/__init__.py,sha256=c51SJBSqPjc4Kv5FTtk3NSQI2vgvvBmCCeCWZtlr9Vw,554
199
+ smc/vpn/elements.py,sha256=FEiBx3UsVOOSHGZYVvlLNsGHA7yD_GgvVx_2QAkB8p0,51996
200
+ smc/vpn/policy.py,sha256=z-W9v5eH0KIW0T7ikLfPWDGCvU8Fy5o5vhmkH54IIdg,20702
201
+ smc/vpn/route.py,sha256=jOvhi79XSZGS2hBIed6nPl6qpoUaB-r6AbXRRbF9o4U,32783
202
+ smc/vpn/ssl_vpn_portal.py,sha256=PjfUpEbonYludNBrYCCtKtWTMyECzD3p4cFRfEvTaq0,29343
203
+ fp_ngfw_smc_python-1.0.31.dist-info/METADATA,sha256=YoN993ynlYRFqbmvIy1YVyn3j4SIvh0CdMxS26DP64o,4623
204
+ fp_ngfw_smc_python-1.0.31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
205
+ fp_ngfw_smc_python-1.0.31.dist-info/top_level.txt,sha256=7WTLcxRvqhQBxSwyotqkkkUJGuudF_r2KemmWcnEQeQ,4
206
+ fp_ngfw_smc_python-1.0.31.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "{}"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2016-2020 Forcepoint
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
smc/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.pyc
2
+ .smcrc
3
+
4
+
5
+ /tests/test_*