agilicus 1.264.0__py3-none-any.whl → 1.265.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- 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 -0
- agilicus/orgs.py +6 -4
- {agilicus-1.264.0.dist-info → agilicus-1.265.0.dist-info}/METADATA +1 -1
- {agilicus-1.264.0.dist-info → agilicus-1.265.0.dist-info}/RECORD +10 -10
- {agilicus-1.264.0.dist-info → agilicus-1.265.0.dist-info}/LICENSE.txt +0 -0
- {agilicus-1.264.0.dist-info → agilicus-1.265.0.dist-info}/WHEEL +0 -0
- {agilicus-1.264.0.dist-info → agilicus-1.265.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.265.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: 2024.07.29\n"\
|
390
|
-
"SDK Package Version: 1.
|
390
|
+
"SDK Package Version: 1.265.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: 2024.07.29
|
7
|
-
- Package version: 1.
|
7
|
+
- Package version: 1.265.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/main.py
CHANGED
@@ -1074,6 +1074,7 @@ def reconcile_sub_org_issuer(ctx, **kwargs):
|
|
1074
1074
|
|
1075
1075
|
@cli.command(name="show-org")
|
1076
1076
|
@click.argument("org-id", default=None, required=False)
|
1077
|
+
@click.option("--get-system-options", type=bool, default=None)
|
1077
1078
|
@click.pass_context
|
1078
1079
|
def show_org(ctx, org_id, **kwargs):
|
1079
1080
|
output_entry(ctx, orgs.get(ctx, org_id, **kwargs))
|
@@ -8015,6 +8016,7 @@ def delete_demo(ctx, **kwargs):
|
|
8015
8016
|
@click.option("--org-id", default=None)
|
8016
8017
|
@click.option("--page-at-id", default=None)
|
8017
8018
|
@click.option("--email", default=None)
|
8019
|
+
@click.option("--user-id", default=None)
|
8018
8020
|
@click.option("--allow-partial-match", is_flag=True, default=False)
|
8019
8021
|
@click.option("--type", multiple=True, type=click.Choice(users.USER_TYPES), default=None)
|
8020
8022
|
@click.pass_context
|
agilicus/orgs.py
CHANGED
@@ -20,6 +20,7 @@ from .output.table import (
|
|
20
20
|
column,
|
21
21
|
)
|
22
22
|
from . import get_many_entries
|
23
|
+
from .input_helpers import strip_none
|
23
24
|
|
24
25
|
|
25
26
|
def get_org_by_dictionary(ctx, org_id):
|
@@ -84,17 +85,18 @@ def query_suborgs(ctx, org_id=None, **kwargs):
|
|
84
85
|
return json.loads(resp.text)["orgs"]
|
85
86
|
|
86
87
|
|
87
|
-
def get_raw(ctx, org_id):
|
88
|
+
def get_raw(ctx, org_id, **kwargs):
|
88
89
|
org_id = get_org_from_input_or_ctx(ctx, org_id)
|
89
90
|
apiclient = context.get_apiclient(ctx)
|
90
|
-
org = apiclient.org_api.get_org(org_id=org_id)
|
91
|
+
org = apiclient.org_api.get_org(org_id=org_id, **kwargs)
|
91
92
|
return org
|
92
93
|
|
93
94
|
|
94
|
-
def get(ctx, org_id, org=None):
|
95
|
+
def get(ctx, org_id, org=None, **kwargs):
|
96
|
+
kwargs = strip_none(kwargs)
|
95
97
|
org_id = get_org_from_input_or_ctx(ctx, org_id)
|
96
98
|
try:
|
97
|
-
return get_raw(ctx, org_id).to_dict()
|
99
|
+
return get_raw(ctx, org_id, **kwargs).to_dict()
|
98
100
|
except OpenApiException as e:
|
99
101
|
output_if_console(ctx, str(e))
|
100
102
|
return None
|
@@ -71,9 +71,9 @@ agilicus/agilicus_api/api/users_api.py,sha256=vwuYc0b-QQNZE6JZbDC2zihU5nGGo1KgWP
|
|
71
71
|
agilicus/agilicus_api/api/users_api_mock.py,sha256=wA_xiqL3Pz3KjljKlsmf5NveLZS1FpbaKJHBp7QvarY,15411
|
72
72
|
agilicus/agilicus_api/api/whoami_api.py,sha256=09KIhv6Up4Oey3ba2krVs3AhMVdL0GxveVD0UaA4h0M,7941
|
73
73
|
agilicus/agilicus_api/api/whoami_api_mock.py,sha256=rlvZoWnMCqORMZBg7SOv6d3xp52kELdh6wXcCaIZ93w,346
|
74
|
-
agilicus/agilicus_api/api_client.py,sha256=
|
74
|
+
agilicus/agilicus_api/api_client.py,sha256=Dr_xtKf2-2HexpLmzbtKmVkUyZqlnZcFWneyuvrBbRk,38845
|
75
75
|
agilicus/agilicus_api/apis/__init__.py,sha256=aJZD7x-umdSni6ZBr4XxzpH8pwtU9hA5LlCDxcqa1Q8,2224
|
76
|
-
agilicus/agilicus_api/configuration.py,sha256=
|
76
|
+
agilicus/agilicus_api/configuration.py,sha256=7tgGsCJve6ST4bzBDptOLChgHv_DefdO0Dk74984oUY,18447
|
77
77
|
agilicus/agilicus_api/docs/APIKey.md,sha256=4cKuz4_l9HcEDnUrLwYbEnn9C2WoDayrjfrY1Ixgaf4,1747
|
78
78
|
agilicus/agilicus_api/docs/APIKeyIntrospect.md,sha256=nJ-zkuFm3JMbWFDYYN_vYyQk1snGBtBvIxtCQxamhAU,1019
|
79
79
|
agilicus/agilicus_api/docs/APIKeyIntrospectAuthorizationInfo.md,sha256=7RApOOLjvWQs5sw2jb25g7i3Kta1BiEY-s8VRXfppH8,725
|
@@ -2523,7 +2523,7 @@ agilicus/agilicus_api/test/test_x509_root_certificate.py,sha256=iY4-zhhFgVwaH824
|
|
2523
2523
|
agilicus/agilicus_api/test/test_x509_root_certificate_spec.py,sha256=o5mYBlIgT6LadCEV3hmJaSiPWloLJ2dKYOgYZjf5qyc,2832
|
2524
2524
|
agilicus/agilicus_api/test/test_x509_root_certificate_status.py,sha256=taO6qqFdtXTU5wGH9bJjwJcBh26ip-EzWK4N5wNaJV4,2846
|
2525
2525
|
agilicus/agilicus_api/test/test_xss_settings.py,sha256=XMi-QK9roJ5uG-odic_fZOi23fiEDkqXvlBiMKQwGvA,2746
|
2526
|
-
agilicus/agilicus_api_README.md,sha256=
|
2526
|
+
agilicus/agilicus_api_README.md,sha256=hMWXYuf6xWqCxP8l-orHcPxNhebIfvFs0ulb9j_Ddpw,161954
|
2527
2527
|
agilicus/aliases.ini,sha256=MxqiVo2f2xdUDVF1YDkNW36AIqN8hrYjlTVfraEUZXY,455
|
2528
2528
|
agilicus/amq.py,sha256=yxi-YTbJPVl10s78Hlr1dmrQR63iaSIoROGVILzFPmE,1775
|
2529
2529
|
agilicus/apps.py,sha256=uYNUNy5rCYjx90KnR_X_aESof9xzSuLYT5w8myN_VVE,52091
|
@@ -2573,10 +2573,10 @@ agilicus/labels/labels_main.py,sha256=ptJ34mf-iVaf8ezf3RWLcpeP2O0ntezS4tqJ0ks0el
|
|
2573
2573
|
agilicus/launchers.py,sha256=r4nctnVtfP-Ho_HXEfAiMaMqJI0u7pbieHSS3Vd0QBE,11361
|
2574
2574
|
agilicus/logs.py,sha256=tS8c_sdre1Dncrl59GVGQ0L3d2jtwlVjvIMl3SHJraY,766
|
2575
2575
|
agilicus/lookups.py,sha256=MNmNsKpP7Fq_poLAnL9xo_iptFilKM9ziGLyIe8VKaw,669
|
2576
|
-
agilicus/main.py,sha256=
|
2576
|
+
agilicus/main.py,sha256=XXFj77aGsU-heEd_sMerX7K8otdchyRtbPDgiNGipQg,270566
|
2577
2577
|
agilicus/messages.py,sha256=Ydm-VhAsK23UnYdstv_HsOybBODfui5ubKc7F8R_dsw,5187
|
2578
2578
|
agilicus/metrics.py,sha256=v4rwpvqDzeNG5GKNoZ7t34X5qUgly5IW2s-kXlS2vQM,2315
|
2579
|
-
agilicus/orgs.py,sha256=
|
2579
|
+
agilicus/orgs.py,sha256=ac_Y4qzMtUmQ3tx_SxhwQ6AsbsSkeU6MGdqRhssfZw8,14509
|
2580
2580
|
agilicus/output/__init__.py,sha256=UKZbHS4t15vazJuN46FN-3HHqkxMXU0p3df2VcsSLcY,110
|
2581
2581
|
agilicus/output/column_builder.py,sha256=TWo4t8ygaTUv7qjD_moDroD1bKzzyTIao0FmLy5gs4o,4284
|
2582
2582
|
agilicus/output/console.py,sha256=xBURxlA7H1kmQ7zIKuifs_aQJq1cvmCJ5CtQVSo3_Ns,400
|
@@ -2614,8 +2614,8 @@ agilicus/trusted_certs/trusted_certs_main.py,sha256=6dHHWXvNIcUa_nA9ptigL4Vibe4n
|
|
2614
2614
|
agilicus/users.py,sha256=JT7TIiUOtSFXPOdxmIVFm7ygZTH1FjsIkD9j-vjLuMM,38474
|
2615
2615
|
agilicus/version.py,sha256=G9OFdL1v_4dLDfk6I6taDNypM5bbO-JHAwilsu9LYgg,23
|
2616
2616
|
agilicus/whoami.py,sha256=kqghtWMgZOd2rhKmfguDwCTm6A3gNS8Kj-S2IBxBtl0,206
|
2617
|
-
agilicus-1.
|
2618
|
-
agilicus-1.
|
2619
|
-
agilicus-1.
|
2620
|
-
agilicus-1.
|
2621
|
-
agilicus-1.
|
2617
|
+
agilicus-1.265.0.dist-info/LICENSE.txt,sha256=Zq4tqiCroC2CVrBB_PWjapRdvpae23nljdiaSkOzUho,1061
|
2618
|
+
agilicus-1.265.0.dist-info/METADATA,sha256=WvtnF-CgE2k7JdfWXnhWh9YcxVCJOpDCQ7yIynPsXrw,3873
|
2619
|
+
agilicus-1.265.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
2620
|
+
agilicus-1.265.0.dist-info/entry_points.txt,sha256=a66hGozzLkHu0IewFzIMbSAhMTNTddUaA2T3_16Gb_s,51
|
2621
|
+
agilicus-1.265.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|