agilicus 1.299.5__py3-none-any.whl → 1.299.6__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.
- agilicus/agilicus_api/api_client.py +1 -1
- agilicus/agilicus_api/configuration.py +1 -1
- agilicus/agilicus_api_README.md +1 -1
- agilicus/context.py +0 -1
- agilicus/main.py +2 -2
- agilicus/output/table.py +3 -4
- {agilicus-1.299.5.dist-info → agilicus-1.299.6.dist-info}/METADATA +9 -11
- {agilicus-1.299.5.dist-info → agilicus-1.299.6.dist-info}/RECORD +11 -11
- {agilicus-1.299.5.dist-info → agilicus-1.299.6.dist-info}/LICENSE.txt +0 -0
- {agilicus-1.299.5.dist-info → agilicus-1.299.6.dist-info}/WHEEL +0 -0
- {agilicus-1.299.5.dist-info → agilicus-1.299.6.dist-info}/entry_points.txt +0 -0
@@ -77,7 +77,7 @@ class ApiClient(object):
|
|
77
77
|
self.default_headers[header_name] = header_value
|
78
78
|
self.cookie = cookie
|
79
79
|
# Set default User-Agent.
|
80
|
-
self.user_agent = 'OpenAPI-Generator/1.299.
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.299.6/python'
|
81
81
|
|
82
82
|
def __enter__(self):
|
83
83
|
return self
|
@@ -387,7 +387,7 @@ class Configuration(object):
|
|
387
387
|
"OS: {env}\n"\
|
388
388
|
"Python Version: {pyversion}\n"\
|
389
389
|
"Version of the API: 2025.08.28\n"\
|
390
|
-
"SDK Package Version: 1.299.
|
390
|
+
"SDK Package Version: 1.299.6".\
|
391
391
|
format(env=sys.platform, pyversion=sys.version)
|
392
392
|
|
393
393
|
def get_host_settings(self):
|
agilicus/agilicus_api_README.md
CHANGED
@@ -4,7 +4,7 @@ Agilicus is API-first. Modern software is controlled by other software, is open,
|
|
4
4
|
The `agilicus_api` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
5
5
|
|
6
6
|
- API version: 2025.08.28
|
7
|
-
- Package version: 1.299.
|
7
|
+
- Package version: 1.299.6
|
8
8
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
9
9
|
For more information, please visit [https://www.agilicus.com/api](https://www.agilicus.com/api)
|
10
10
|
|
agilicus/context.py
CHANGED
agilicus/main.py
CHANGED
@@ -15,7 +15,7 @@ from appdirs import user_data_dir
|
|
15
15
|
import click
|
16
16
|
import click_extension
|
17
17
|
import os
|
18
|
-
from prettytable import PrettyTable,
|
18
|
+
from prettytable import PrettyTable, TableStyle
|
19
19
|
from colorama import init
|
20
20
|
from agilicus.agilicus_api import ApiException
|
21
21
|
from . import (
|
@@ -5437,7 +5437,7 @@ def list_agent_connectors(
|
|
5437
5437
|
results = connectors.query_agents(ctx, **kwargs)
|
5438
5438
|
table = connectors.format_agents_as_text(ctx, results, **kwargs)
|
5439
5439
|
if output_msfriendly:
|
5440
|
-
table.set_style(MSWORD_FRIENDLY)
|
5440
|
+
table.set_style(TableStyle.MSWORD_FRIENDLY)
|
5441
5441
|
if sort_by is not None and ctx.obj["output_format"] != "json":
|
5442
5442
|
print(table.get_string(sortby=sort_by, reversesort=reverse_sort))
|
5443
5443
|
else:
|
agilicus/output/table.py
CHANGED
@@ -9,7 +9,7 @@ from agilicus.output.json import convert_to_json
|
|
9
9
|
from dataclasses import dataclass
|
10
10
|
from typing import Callable
|
11
11
|
|
12
|
-
from prettytable import PrettyTable,
|
12
|
+
from prettytable import PrettyTable, TableStyle
|
13
13
|
from . import column_builder
|
14
14
|
|
15
15
|
|
@@ -318,7 +318,6 @@ def get_table_style(ctx):
|
|
318
318
|
if table_style_str and not output_is_formatted(ctx):
|
319
319
|
from prettytable import (
|
320
320
|
DEFAULT,
|
321
|
-
MARKDOWN,
|
322
321
|
PLAIN_COLUMNS,
|
323
322
|
TableStyle,
|
324
323
|
)
|
@@ -326,7 +325,7 @@ def get_table_style(ctx):
|
|
326
325
|
if table_style_str == "default":
|
327
326
|
table_style = DEFAULT
|
328
327
|
elif table_style_str == "markdown":
|
329
|
-
table_style = MARKDOWN
|
328
|
+
table_style = TableStyle.MARKDOWN
|
330
329
|
elif table_style_str == "plain":
|
331
330
|
table_style = PLAIN_COLUMNS
|
332
331
|
elif table_style_str == "msword":
|
@@ -396,7 +395,7 @@ def _table_to_console(ctx, table: PrettyTable, nested):
|
|
396
395
|
return table.get_json_string(header=False, indent=None, default=str)
|
397
396
|
return table.get_csv_string()
|
398
397
|
if context.output_markdown(ctx):
|
399
|
-
table.set_style(MARKDOWN)
|
398
|
+
table.set_style(TableStyle.MARKDOWN)
|
400
399
|
return table
|
401
400
|
|
402
401
|
|
@@ -1,27 +1,25 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: agilicus
|
3
|
-
Version: 1.299.
|
3
|
+
Version: 1.299.6
|
4
4
|
Summary: Agilicus SDK
|
5
5
|
License: MIT
|
6
6
|
Author: Agilicus Devs
|
7
7
|
Author-email: dev@agilicus.com
|
8
|
-
Requires-Python: >=3.
|
8
|
+
Requires-Python: >=3.10,<4.0
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
|
-
Classifier: Programming Language :: Python :: 3.8
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
13
11
|
Classifier: Programming Language :: Python :: 3.10
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
15
13
|
Classifier: Programming Language :: Python :: 3.12
|
16
14
|
Classifier: Programming Language :: Python :: 3.13
|
17
15
|
Provides-Extra: billing
|
18
|
-
Requires-Dist: PyJWT (>=2.
|
16
|
+
Requires-Dist: PyJWT (>=2.10.1,<3.0.0)
|
19
17
|
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
|
20
18
|
Requires-Dist: babel (>=2.13.1,<3.0.0)
|
21
|
-
Requires-Dist: certifi (
|
22
|
-
Requires-Dist: click (>=8.
|
19
|
+
Requires-Dist: certifi (==2025.8.3)
|
20
|
+
Requires-Dist: click (>=8.2.1,<9.0.0)
|
23
21
|
Requires-Dist: click-shell (>=2.1,<3.0)
|
24
|
-
Requires-Dist: colorama (>=0.4.
|
22
|
+
Requires-Dist: colorama (>=0.4.6,<0.5.0)
|
25
23
|
Requires-Dist: cryptography (>=39.0.0)
|
26
24
|
Requires-Dist: dateparser (==1.2.2)
|
27
25
|
Requires-Dist: keyring (>=23.0.0)
|
@@ -29,15 +27,15 @@ Requires-Dist: keyrings.alt (>=4.2,<6.0)
|
|
29
27
|
Requires-Dist: oauth2client (>=4.1.3,<4.2.0)
|
30
28
|
Requires-Dist: paho-mqtt (>=1.6.1,<3.0.0)
|
31
29
|
Requires-Dist: pem (>=23.1.0,<24.0.0)
|
32
|
-
Requires-Dist: prettytable (
|
30
|
+
Requires-Dist: prettytable (==3.16.0)
|
33
31
|
Requires-Dist: prometheus_client (==0.21.1) ; extra == "billing"
|
34
32
|
Requires-Dist: python_dateutil (>2.5.3)
|
35
33
|
Requires-Dist: pyyaml (==6.0.2)
|
36
34
|
Requires-Dist: requests (>=2.23.0,<3.0.0)
|
37
35
|
Requires-Dist: shortuuid (>=1.0.13,<2.0.0)
|
38
|
-
Requires-Dist: six (>=1.
|
36
|
+
Requires-Dist: six (>=1.17.0,<2.0.0)
|
39
37
|
Requires-Dist: stripe (>=2.60,<13.0) ; extra == "billing"
|
40
|
-
Requires-Dist: xdg (>=
|
38
|
+
Requires-Dist: xdg (>=6.0.0,<7.0.0)
|
41
39
|
Project-URL: Homepage, https://www.agilicus.com/
|
42
40
|
Project-URL: Repository, https://github.com/Agilicus
|
43
41
|
Description-Content-Type: text/markdown
|
@@ -73,9 +73,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=6id867R6fJAsXJ4-j6gfaKBO6wNq5eB1fr
|
|
73
73
|
agilicus/agilicus_api/api/users_api_mock.py,sha256=8FL2tkK1zGGN_SuPxtZ7CX-B6gqfZaqq37TuY9ETVV0,20960
|
74
74
|
agilicus/agilicus_api/api/whoami_api.py,sha256=3TrXeBlkwmlzO_dkO1bTHtIs60vLpsoSHjuP7IyEomo,7941
|
75
75
|
agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
|
76
|
-
agilicus/agilicus_api/api_client.py,sha256=
|
76
|
+
agilicus/agilicus_api/api_client.py,sha256=NQYAA5jfq5OzxBOhcwacJFcDKpKlVR7pUhPeDJQZUec,38845
|
77
77
|
agilicus/agilicus_api/apis/__init__.py,sha256=ijG84bKeWq8lCvqXBtmWXrEnDMfw2t5qu5nQwgAyckU,2280
|
78
|
-
agilicus/agilicus_api/configuration.py,sha256=
|
78
|
+
agilicus/agilicus_api/configuration.py,sha256=W_KKiGbLvz1Em5y23_z8czqNQPZTX7mC4_Wagkf2Cf0,18447
|
79
79
|
agilicus/agilicus_api/docs/APIKey.md,sha256=4cKuz4_l9HcEDnUrLwYbEnn9C2WoDayrjfrY1Ixgaf4,1747
|
80
80
|
agilicus/agilicus_api/docs/APIKeyIntrospect.md,sha256=nJ-zkuFm3JMbWFDYYN_vYyQk1snGBtBvIxtCQxamhAU,1019
|
81
81
|
agilicus/agilicus_api/docs/APIKeyIntrospectAuthorizationInfo.md,sha256=7RApOOLjvWQs5sw2jb25g7i3Kta1BiEY-s8VRXfppH8,725
|
@@ -2818,7 +2818,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=9bOu50Z6envjMCwb
|
|
2818
2818
|
agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=-AYuUCCUn-n-oMh25kOSPGLwDJCYqPIDqYmCUfEVe_U,2832
|
2819
2819
|
agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=X2c1sC5wmejfYjoE0MswU0bRM3DQedrbzOOpSqoewbs,2846
|
2820
2820
|
agilicus/agilicus_api/test/test_xss_settings.py,sha256=_6XSGzvD4ZzZ21CZfbWd8zMAbDvXzm2xHT8EuyzDPWI,2746
|
2821
|
-
agilicus/agilicus_api_README.md,sha256=
|
2821
|
+
agilicus/agilicus_api_README.md,sha256=TIL5SKzRgq-5ddQK1S3DOYQCC79--LrCjlwGdFhcc6Q,181381
|
2822
2822
|
agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
|
2823
2823
|
agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
|
2824
2824
|
agilicus/apps.py,sha256=Mdc_pRXyfa-IvIFH7gNbx0Ob64gUHggZyeSyLUDpjMs,54048
|
@@ -2833,7 +2833,7 @@ agilicus/client_secrets.json,sha256=eyPFVzziH48RuwWl66cfi0JE4jpmoec0Vo_F2TzYOeI,
|
|
2833
2833
|
agilicus/command_helpers/__init__.py,sha256=6oUAOlb7IC_UfBgK3EmWVSIxKR546rjm3A2a2IEc-6s,67
|
2834
2834
|
agilicus/command_helpers/command_wrapper.py,sha256=_oZeSe6ZllrD6Ij731xX_yZ8l6gruMOcodmZ-uZg2Z8,1099
|
2835
2835
|
agilicus/connectors.py,sha256=gp1WqYUHtiWUJJMw7_iA0pdXCJVp76BBrpTX1UntVGc,44839
|
2836
|
-
agilicus/context.py,sha256=
|
2836
|
+
agilicus/context.py,sha256=UGu4tpXoovkjfRSZjY5s4saWpZIJk7NPro2ZRqAU8U0,8503
|
2837
2837
|
agilicus/create.py,sha256=ndMbOxQasyyUY7aW4U2TU8EKGcUla72xCjAwAwfTBVA,3270
|
2838
2838
|
agilicus/credentials.py,sha256=F3yPAwoMcziP1OLmzeJ8jIz1W-91-HXu4zcymyMp1E4,4730
|
2839
2839
|
agilicus/credentials_commands/credentials.py,sha256=YduI2SJR8nJgFuAloNowy16_s-rdVLZLDkuQvk_YmAg,3574
|
@@ -2879,7 +2879,7 @@ agilicus/licensing/licensing_main.py,sha256=go1GCWK3evgpwsA2TnHLZgi7joGG2s1vwKX3
|
|
2879
2879
|
agilicus/licensing/product_table_versions.py,sha256=Zk8L--z8wu6DPnbtYMGifc2J2KdNtnTBgyJv-CRAbr8,3038
|
2880
2880
|
agilicus/logs.py,sha256=Y4XVcLctY-2O-Q_CXbJs9sAqu0NknHKSsqilKiDM_A0,804
|
2881
2881
|
agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
|
2882
|
-
agilicus/main.py,sha256=
|
2882
|
+
agilicus/main.py,sha256=RBz2mocYQIF-74tgDps_7Non2QPO4c5HZgK5KAwryq0,296746
|
2883
2883
|
agilicus/messages/__init__.py,sha256=cVqfaKUndO-AYfppkdFICM5WvYFFB1hRjXihFWmiGPQ,174
|
2884
2884
|
agilicus/messages/messages.py,sha256=b2eO6BaWI9UZTLETcdy1NotyuNlKIJf6CS_TUzehuk4,9175
|
2885
2885
|
agilicus/messages/messages_main.py,sha256=A0xucYwwUZFIuUc0bAyAqVwofErakmyawq5bwhZKcOU,1598
|
@@ -2889,7 +2889,7 @@ agilicus/output/__init__.py,sha256=UKZbHS4t15vazJuN46FN-3HHqkxMXU0p3df2VcsSLcY,1
|
|
2889
2889
|
agilicus/output/column_builder.py,sha256=TWo4t8ygaTUv7qjD_moDroD1bKzzyTIao0FmLy5gs4o,4284
|
2890
2890
|
agilicus/output/console.py,sha256=xBURxlA7H1kmQ7zIKuifs_aQJq1cvmCJ5CtQVSo3_Ns,400
|
2891
2891
|
agilicus/output/json.py,sha256=eR-3gVU9yrgcmvcVVLq3L5kTSK3723gQG9kWl1qLkfA,939
|
2892
|
-
agilicus/output/table.py,sha256=
|
2892
|
+
agilicus/output/table.py,sha256=GvWzDo_nfg-mBn3_3rFzvRCiYC_EnkEOUVIepYJwjG8,13347
|
2893
2893
|
agilicus/output/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2894
2894
|
agilicus/output/tests/column_builder_test.py,sha256=fKP4V5sqXtmEIr-Q0gWVSFdBqCUtugZkP6G5gML_T7I,2130
|
2895
2895
|
agilicus/pagination/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -2926,8 +2926,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
|
|
2926
2926
|
agilicus/users.py,sha256=0mPHePKOcHqJYgCfN3t2c0FJAlgYFAYY5tu0fh6oeR0,44838
|
2927
2927
|
agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
|
2928
2928
|
agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
|
2929
|
-
agilicus-1.299.
|
2930
|
-
agilicus-1.299.
|
2931
|
-
agilicus-1.299.
|
2932
|
-
agilicus-1.299.
|
2933
|
-
agilicus-1.299.
|
2929
|
+
agilicus-1.299.6.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
|
2930
|
+
agilicus-1.299.6.dist-info/METADATA,sha256=gGIfrOvnYud1SYt3D3eUDI1bi_8JpUDr8McF0c8DH8g,3837
|
2931
|
+
agilicus-1.299.6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
2932
|
+
agilicus-1.299.6.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
|
2933
|
+
agilicus-1.299.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|