agilicus 1.298.5__py3-none-any.whl → 1.299.0__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 +4 -0
- agilicus/main.py +1 -0
- agilicus/output/table.py +4 -2
- agilicus/resources.py +3 -0
- {agilicus-1.298.5.dist-info → agilicus-1.299.0.dist-info}/METADATA +1 -1
- {agilicus-1.298.5.dist-info → agilicus-1.299.0.dist-info}/RECORD +12 -12
- {agilicus-1.298.5.dist-info → agilicus-1.299.0.dist-info}/LICENSE.txt +0 -0
- {agilicus-1.298.5.dist-info → agilicus-1.299.0.dist-info}/WHEEL +0 -0
- {agilicus-1.298.5.dist-info → agilicus-1.299.0.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.
|
80
|
+
self.user_agent = 'OpenAPI-Generator/1.299.0/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.25\n"\
|
390
|
-
"SDK Package Version: 1.
|
390
|
+
"SDK Package Version: 1.299.0".\
|
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.25
|
7
|
-
- Package version: 1.
|
7
|
+
- Package version: 1.299.0
|
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
@@ -249,6 +249,10 @@ def output_csv(ctx):
|
|
249
249
|
return get_value(ctx, "output_format") == "csv"
|
250
250
|
|
251
251
|
|
252
|
+
def output_markdown(ctx):
|
253
|
+
return get_value(ctx, "output_format") == "markdown"
|
254
|
+
|
255
|
+
|
252
256
|
def output_headers(ctx):
|
253
257
|
return get_value(ctx, "output_headers")
|
254
258
|
|
agilicus/main.py
CHANGED
@@ -6212,6 +6212,7 @@ def list_resource_groups(ctx, **kwargs):
|
|
6212
6212
|
@click.argument("id")
|
6213
6213
|
@click.option("--org-id", default=None)
|
6214
6214
|
@click.option("--name", default=None)
|
6215
|
+
@click.option("--bundle-id", default=None)
|
6215
6216
|
@click.option("--resource-member", multiple=True, type=str)
|
6216
6217
|
@click.option("--remove-resource-member", multiple=True, type=str)
|
6217
6218
|
@click.option(
|
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, MARKDOWN
|
13
13
|
from . import column_builder
|
14
14
|
|
15
15
|
|
@@ -390,11 +390,13 @@ def format_table(
|
|
390
390
|
return _table_to_console(ctx, table, nested)
|
391
391
|
|
392
392
|
|
393
|
-
def _table_to_console(ctx, table, nested):
|
393
|
+
def _table_to_console(ctx, table: PrettyTable, nested):
|
394
394
|
if context.output_csv(ctx):
|
395
395
|
if nested:
|
396
396
|
return table.get_json_string(header=False, indent=None, default=str)
|
397
397
|
return table.get_csv_string()
|
398
|
+
if context.output_markdown(ctx):
|
399
|
+
table.set_style(MARKDOWN)
|
398
400
|
return table
|
399
401
|
|
400
402
|
|
agilicus/resources.py
CHANGED
@@ -221,6 +221,7 @@ def update_resource(
|
|
221
221
|
roles_config_file=None,
|
222
222
|
published=None,
|
223
223
|
hide=None,
|
224
|
+
bundle_id=None,
|
224
225
|
**kwargs,
|
225
226
|
):
|
226
227
|
org_id = get_org_from_input_or_ctx(ctx, org_id=org_id)
|
@@ -253,6 +254,8 @@ def update_resource(
|
|
253
254
|
resource.spec.config.roles_config = roles_config_file
|
254
255
|
if published is not None:
|
255
256
|
resource.spec.config.published = published
|
257
|
+
if bundle_id is not None:
|
258
|
+
resource.spec.bundle_id = bundle_id
|
256
259
|
|
257
260
|
if hide:
|
258
261
|
display_info = config.display_info
|
@@ -74,9 +74,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=IGiq_Daxt1W_xbHkUEjq6y8SgkpYwuoKoq
|
|
74
74
|
agilicus/agilicus_api/api/users_api_mock.py,sha256=8FL2tkK1zGGN_SuPxtZ7CX-B6gqfZaqq37TuY9ETVV0,20960
|
75
75
|
agilicus/agilicus_api/api/whoami_api.py,sha256=QHBCh03CveuxMmpRWSBS2icTMDoz4tURqqWI9EAbiIc,7941
|
76
76
|
agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
|
77
|
-
agilicus/agilicus_api/api_client.py,sha256=
|
77
|
+
agilicus/agilicus_api/api_client.py,sha256=j1YA-b7BprqIdQqQWEuE1fBagKZ9Afy7ts8A9xQ8HbE,38845
|
78
78
|
agilicus/agilicus_api/apis/__init__.py,sha256=ijG84bKeWq8lCvqXBtmWXrEnDMfw2t5qu5nQwgAyckU,2280
|
79
|
-
agilicus/agilicus_api/configuration.py,sha256=
|
79
|
+
agilicus/agilicus_api/configuration.py,sha256=SxPfnyKTlqHi32ukTe9ik9PFnsH-FLfXW_OpcINAifY,18447
|
80
80
|
agilicus/agilicus_api/docs/APIKey.md,sha256=4cKuz4_l9HcEDnUrLwYbEnn9C2WoDayrjfrY1Ixgaf4,1747
|
81
81
|
agilicus/agilicus_api/docs/APIKeyIntrospect.md,sha256=nJ-zkuFm3JMbWFDYYN_vYyQk1snGBtBvIxtCQxamhAU,1019
|
82
82
|
agilicus/agilicus_api/docs/APIKeyIntrospectAuthorizationInfo.md,sha256=7RApOOLjvWQs5sw2jb25g7i3Kta1BiEY-s8VRXfppH8,725
|
@@ -2816,7 +2816,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=hP8XgPz8LTAX3Nd8
|
|
2816
2816
|
agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=TZDfcDA3TO5LQ4Phv52OELuYIi0lyYTmnntXux2XFpw,2832
|
2817
2817
|
agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=SJ9qXCOtwGDP0j9HtIDzgglgMUqChS4_3gzN7YI4_vc,2846
|
2818
2818
|
agilicus/agilicus_api/test/test_xss_settings.py,sha256=7275OlPatUVZqaEpzMYfElIc79f3mVDbi-lR0grHo5U,2746
|
2819
|
-
agilicus/agilicus_api_README.md,sha256=
|
2819
|
+
agilicus/agilicus_api_README.md,sha256=mOWqIW10QJcNiOg0_5VL_BeLal8_e_DxYlvJGzDrlZQ,181187
|
2820
2820
|
agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
|
2821
2821
|
agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
|
2822
2822
|
agilicus/apps.py,sha256=Mdc_pRXyfa-IvIFH7gNbx0Ob64gUHggZyeSyLUDpjMs,54048
|
@@ -2831,7 +2831,7 @@ agilicus/client_secrets.json,sha256=eyPFVzziH48RuwWl66cfi0JE4jpmoec0Vo_F2TzYOeI,
|
|
2831
2831
|
agilicus/command_helpers/__init__.py,sha256=6oUAOlb7IC_UfBgK3EmWVSIxKR546rjm3A2a2IEc-6s,67
|
2832
2832
|
agilicus/command_helpers/command_wrapper.py,sha256=_oZeSe6ZllrD6Ij731xX_yZ8l6gruMOcodmZ-uZg2Z8,1099
|
2833
2833
|
agilicus/connectors.py,sha256=gp1WqYUHtiWUJJMw7_iA0pdXCJVp76BBrpTX1UntVGc,44839
|
2834
|
-
agilicus/context.py,sha256=
|
2834
|
+
agilicus/context.py,sha256=qUOiSRIqpM70BfCf72QV3zjw9kl8aCp2ioA0nR-w3uY,8522
|
2835
2835
|
agilicus/create.py,sha256=ndMbOxQasyyUY7aW4U2TU8EKGcUla72xCjAwAwfTBVA,3270
|
2836
2836
|
agilicus/credentials.py,sha256=F3yPAwoMcziP1OLmzeJ8jIz1W-91-HXu4zcymyMp1E4,4730
|
2837
2837
|
agilicus/credentials_commands/credentials.py,sha256=YduI2SJR8nJgFuAloNowy16_s-rdVLZLDkuQvk_YmAg,3574
|
@@ -2877,7 +2877,7 @@ agilicus/licensing/licensing_main.py,sha256=go1GCWK3evgpwsA2TnHLZgi7joGG2s1vwKX3
|
|
2877
2877
|
agilicus/licensing/product_table_versions.py,sha256=Zk8L--z8wu6DPnbtYMGifc2J2KdNtnTBgyJv-CRAbr8,3038
|
2878
2878
|
agilicus/logs.py,sha256=Y4XVcLctY-2O-Q_CXbJs9sAqu0NknHKSsqilKiDM_A0,804
|
2879
2879
|
agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
|
2880
|
-
agilicus/main.py,sha256=
|
2880
|
+
agilicus/main.py,sha256=50FfqJN4MYoikNMyiTAMjfSKWktiSftXtyPLykwJ6fQ,296468
|
2881
2881
|
agilicus/messages/__init__.py,sha256=cVqfaKUndO-AYfppkdFICM5WvYFFB1hRjXihFWmiGPQ,174
|
2882
2882
|
agilicus/messages/messages.py,sha256=b2eO6BaWI9UZTLETcdy1NotyuNlKIJf6CS_TUzehuk4,9175
|
2883
2883
|
agilicus/messages/messages_main.py,sha256=A0xucYwwUZFIuUc0bAyAqVwofErakmyawq5bwhZKcOU,1598
|
@@ -2887,7 +2887,7 @@ agilicus/output/__init__.py,sha256=UKZbHS4t15vazJuN46FN-3HHqkxMXU0p3df2VcsSLcY,1
|
|
2887
2887
|
agilicus/output/column_builder.py,sha256=TWo4t8ygaTUv7qjD_moDroD1bKzzyTIao0FmLy5gs4o,4284
|
2888
2888
|
agilicus/output/console.py,sha256=xBURxlA7H1kmQ7zIKuifs_aQJq1cvmCJ5CtQVSo3_Ns,400
|
2889
2889
|
agilicus/output/json.py,sha256=eR-3gVU9yrgcmvcVVLq3L5kTSK3723gQG9kWl1qLkfA,939
|
2890
|
-
agilicus/output/table.py,sha256=
|
2890
|
+
agilicus/output/table.py,sha256=_wM3TPbaJY3gRy54wRBi-Gr5i6a2iBbM_Eq5L0sL4Xw,13345
|
2891
2891
|
agilicus/output/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2892
2892
|
agilicus/output/tests/column_builder_test.py,sha256=fKP4V5sqXtmEIr-Q0gWVSFdBqCUtugZkP6G5gML_T7I,2130
|
2893
2893
|
agilicus/pagination/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -2906,7 +2906,7 @@ agilicus/products/products.py,sha256=he27jN3MUyXBdTdV2HRyvUYb0zD3W1TGsuC7NHLKngQ
|
|
2906
2906
|
agilicus/products/products_main.py,sha256=saa2-e5oeHW6D5AWPcld99KwgQ9nBY3hoW8Jz_5nfMQ,3421
|
2907
2907
|
agilicus/regions.py,sha256=T2Xsp2L7eVORSKyYuBofMto3yp4QlnNI7MNqm48h0xM,13059
|
2908
2908
|
agilicus/resource_helpers.py,sha256=rATvmW5AN6rt_BIKtJnENyU9QEwujyWaIZV2ou6PPck,1271
|
2909
|
-
agilicus/resources.py,sha256=
|
2909
|
+
agilicus/resources.py,sha256=_SftIDKOUhJoaXgS_FIcCXWVvn2RjDFf5Ho8FLk5dSI,11081
|
2910
2910
|
agilicus/response.py,sha256=tI2-dAJwhBuuDplSsouuMmCmKHSwR_Mx71af8tgsuYo,468
|
2911
2911
|
agilicus/rules/rules.py,sha256=gpu7g308fTlE0LVuBcUXikho6TBx4-kdPUM6mPmawdY,30980
|
2912
2912
|
agilicus/rules/rules_main.py,sha256=aOH4mcxb4-_azgzcz5kuOSzI-CvLhCwq1rZxDvaoHe4,15026
|
@@ -2924,8 +2924,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
|
|
2924
2924
|
agilicus/users.py,sha256=0mPHePKOcHqJYgCfN3t2c0FJAlgYFAYY5tu0fh6oeR0,44838
|
2925
2925
|
agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
|
2926
2926
|
agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
|
2927
|
-
agilicus-1.
|
2928
|
-
agilicus-1.
|
2929
|
-
agilicus-1.
|
2930
|
-
agilicus-1.
|
2931
|
-
agilicus-1.
|
2927
|
+
agilicus-1.299.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
|
2928
|
+
agilicus-1.299.0.dist-info/METADATA,sha256=vfbAgN0jTA7reCCQ9wkRsWtBC3NGprglfu9wGFFQRbs,3878
|
2929
|
+
agilicus-1.299.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
2930
|
+
agilicus-1.299.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
|
2931
|
+
agilicus-1.299.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|