agilicus 1.297.9__py3-none-any.whl → 1.297.11__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/main.py +2 -2
- agilicus/output/table.py +2 -2
- {agilicus-1.297.9.dist-info → agilicus-1.297.11.dist-info}/METADATA +1 -1
- {agilicus-1.297.9.dist-info → agilicus-1.297.11.dist-info}/RECORD +10 -10
- {agilicus-1.297.9.dist-info → agilicus-1.297.11.dist-info}/LICENSE.txt +0 -0
- {agilicus-1.297.9.dist-info → agilicus-1.297.11.dist-info}/WHEEL +0 -0
- {agilicus-1.297.9.dist-info → agilicus-1.297.11.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.297.
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.297.11/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.14\n"\
|
390
|
-
"SDK Package Version: 1.297.
|
390
|
+
"SDK Package Version: 1.297.11".\
|
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.14
|
7
|
-
- Package version: 1.297.
|
7
|
+
- Package version: 1.297.11
|
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/main.py
CHANGED
@@ -9,7 +9,7 @@ import requests
|
|
9
9
|
import sys
|
10
10
|
from datetime import date, datetime
|
11
11
|
from urllib.parse import urlparse
|
12
|
-
from prettytable import
|
12
|
+
from prettytable import TableStyle
|
13
13
|
from click_shell import shell
|
14
14
|
from appdirs import user_data_dir
|
15
15
|
|
@@ -5424,7 +5424,7 @@ def list_agent_connectors(
|
|
5424
5424
|
results = connectors.query_agents(ctx, **kwargs)
|
5425
5425
|
table = connectors.format_agents_as_text(ctx, results, **kwargs)
|
5426
5426
|
if output_msfriendly:
|
5427
|
-
table.set_style(MSWORD_FRIENDLY)
|
5427
|
+
table.set_style(TableStyle.MSWORD_FRIENDLY)
|
5428
5428
|
if sort_by is not None and ctx.obj["output_format"] != "json":
|
5429
5429
|
print(table.get_string(sortby=sort_by, reversesort=reverse_sort))
|
5430
5430
|
else:
|
agilicus/output/table.py
CHANGED
@@ -320,7 +320,7 @@ def get_table_style(ctx):
|
|
320
320
|
DEFAULT,
|
321
321
|
MARKDOWN,
|
322
322
|
PLAIN_COLUMNS,
|
323
|
-
|
323
|
+
TableStyle,
|
324
324
|
)
|
325
325
|
|
326
326
|
if table_style_str == "default":
|
@@ -330,7 +330,7 @@ def get_table_style(ctx):
|
|
330
330
|
elif table_style_str == "plain":
|
331
331
|
table_style = PLAIN_COLUMNS
|
332
332
|
elif table_style_str == "msword":
|
333
|
-
table_style = MSWORD_FRIENDLY
|
333
|
+
table_style = TableStyle.MSWORD_FRIENDLY
|
334
334
|
else:
|
335
335
|
raise Exception(f"invalid table style {table_style_str}")
|
336
336
|
return table_style
|
@@ -73,9 +73,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=VsizK8iriKv4kEpugRFSKeMVU85iy46dpc
|
|
73
73
|
agilicus/agilicus_api/api/users_api_mock.py,sha256=GP0l1NcvX0ynOiZhRtuArS4D7lviWYADG_5KZNSNY-s,18930
|
74
74
|
agilicus/agilicus_api/api/whoami_api.py,sha256=W2H0_J1_0hiN-zVCMWWPdm8IBLcSfaXfByrbfKxkED0,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=vHxqwPy5_0DXF6IrICHrXRA2Ku7jfUtdyxRa5ssWESA,38846
|
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=7SGoQ77kFGIVOsL2yOKlAQbPfqxd1q2PIwTGfaKkNMY,18448
|
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
|
@@ -2803,7 +2803,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=DdwjyzqWgFPTAEqE
|
|
2803
2803
|
agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=h12JyKchyJgl_afVqOjKacx4CF7mM6TNXcTjHSUmyOA,2832
|
2804
2804
|
agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=wpfMrmRc6_g2RkGI0iDLCYQFah6Q7OleQmmrgECCo58,2846
|
2805
2805
|
agilicus/agilicus_api/test/test_xss_settings.py,sha256=BD5qYTNWqWPjPwQMHnCqFLfvXQnlapcKUIGDCM7wRmc,2746
|
2806
|
-
agilicus/agilicus_api_README.md,sha256=
|
2806
|
+
agilicus/agilicus_api_README.md,sha256=gYLpHkfj63WUaIjefdV4PL8u90od99AtsSP35F8w-k0,179529
|
2807
2807
|
agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
|
2808
2808
|
agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
|
2809
2809
|
agilicus/apps.py,sha256=Mdc_pRXyfa-IvIFH7gNbx0Ob64gUHggZyeSyLUDpjMs,54048
|
@@ -2864,7 +2864,7 @@ agilicus/licensing/licensing_main.py,sha256=go1GCWK3evgpwsA2TnHLZgi7joGG2s1vwKX3
|
|
2864
2864
|
agilicus/licensing/product_table_versions.py,sha256=Zk8L--z8wu6DPnbtYMGifc2J2KdNtnTBgyJv-CRAbr8,3038
|
2865
2865
|
agilicus/logs.py,sha256=Y4XVcLctY-2O-Q_CXbJs9sAqu0NknHKSsqilKiDM_A0,804
|
2866
2866
|
agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
|
2867
|
-
agilicus/main.py,sha256=
|
2867
|
+
agilicus/main.py,sha256=vHKa7DOXBJ1qgOk1U07A5Wj6CFzO7ex6SU4qgds7r3g,295678
|
2868
2868
|
agilicus/messages/__init__.py,sha256=cVqfaKUndO-AYfppkdFICM5WvYFFB1hRjXihFWmiGPQ,174
|
2869
2869
|
agilicus/messages/messages.py,sha256=b2eO6BaWI9UZTLETcdy1NotyuNlKIJf6CS_TUzehuk4,9175
|
2870
2870
|
agilicus/messages/messages_main.py,sha256=A0xucYwwUZFIuUc0bAyAqVwofErakmyawq5bwhZKcOU,1598
|
@@ -2874,7 +2874,7 @@ agilicus/output/__init__.py,sha256=UKZbHS4t15vazJuN46FN-3HHqkxMXU0p3df2VcsSLcY,1
|
|
2874
2874
|
agilicus/output/column_builder.py,sha256=TWo4t8ygaTUv7qjD_moDroD1bKzzyTIao0FmLy5gs4o,4284
|
2875
2875
|
agilicus/output/console.py,sha256=xBURxlA7H1kmQ7zIKuifs_aQJq1cvmCJ5CtQVSo3_Ns,400
|
2876
2876
|
agilicus/output/json.py,sha256=eR-3gVU9yrgcmvcVVLq3L5kTSK3723gQG9kWl1qLkfA,939
|
2877
|
-
agilicus/output/table.py,sha256=
|
2877
|
+
agilicus/output/table.py,sha256=jLDXTt2osbT4Kt9irpy8-E-2Xezow9K_Ko_1yg0-b3Q,13251
|
2878
2878
|
agilicus/output/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2879
2879
|
agilicus/output/tests/column_builder_test.py,sha256=fKP4V5sqXtmEIr-Q0gWVSFdBqCUtugZkP6G5gML_T7I,2130
|
2880
2880
|
agilicus/pagination/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -2911,8 +2911,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
|
|
2911
2911
|
agilicus/users.py,sha256=PRpEYDh6KzWhn14qu_PUA4yl8k7u7gMf-1f15E-Vaxo,44555
|
2912
2912
|
agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
|
2913
2913
|
agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
|
2914
|
-
agilicus-1.297.
|
2915
|
-
agilicus-1.297.
|
2916
|
-
agilicus-1.297.
|
2917
|
-
agilicus-1.297.
|
2918
|
-
agilicus-1.297.
|
2914
|
+
agilicus-1.297.11.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
|
2915
|
+
agilicus-1.297.11.dist-info/METADATA,sha256=eGKXyABPwLPBThKUzcAtlhGblYPy7y51s_VdmrgL0g0,3879
|
2916
|
+
agilicus-1.297.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
2917
|
+
agilicus-1.297.11.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
|
2918
|
+
agilicus-1.297.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|